Closed maxkratz closed 1 year ago
Maybe this was based on a division in the local and the global objective, e.g.:
objective x -> class::xy {
mapping...->sum(...) / 2
}
global objective : min {
x / 3
}
Idea:
objective x -> class::xy {
mapping...->sum(...) / 2
}
objective y -> class::zz {
(self.$value + 3) / 5
}
global objective : min {
(x + y) / 3
}
Idea:
objective x -> class::xy { mapping...->sum(...) / 2 } objective y -> class::zz { (self.$value + 3) / 5 } global objective : min { (x + y) / 3 }
Crashes the transformation, but does not generate a double division ...
-> Can't reproduce for now.