All Downloads are FREE. Search and download functionalities are using the official Maven repository.

mombi2-weights.weight.inverse.awk Maven / Gradle / Ivy

Go to download

jMetal core classes (Algorithm, Solution, Problem, Operator, QualityIndicator) and basic utils

There is a newer version: 6.6
Show newest version
{ 
  if($0 ~ /#/)
    print $0
  else {
    for(i=1; i <= NF; i++) {
      if($i == 0) 
        printf "%f ", 10000 
        #printf ""
      else 
        printf "%f ", 1.0/$i
    }
    print ""
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy