mombi2-weights.weight.inverse.awk Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmetal-core Show documentation
Show all versions of jmetal-core Show documentation
jMetal core classes (Algorithm, Solution, Problem, Operator, QualityIndicator) and basic utils
{
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