You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The BAB solver returns at most one solution for each cost with decreasing cost values:
std::unique_ptr<BAB<Solver>> e(new BAB<Solver>(this, options));
while (auto s = std::shared_ptr<Solver>(e->next())) {
// ... process solution ...
}
But is it possible to generate more solutions for the best cost?
I am pretty sure that there are more solutions than one, but only one is returned for each cost.
Alternative solutions for the best cost might be more suitable for the final purpose.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
The
BAB
solver returns at most one solution for each cost with decreasing cost values:But is it possible to generate more solutions for the best cost?
I am pretty sure that there are more solutions than one, but only one is returned for each cost.
Alternative solutions for the best cost might be more suitable for the final purpose.
Beta Was this translation helpful? Give feedback.
All reactions