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
Hey @JWally. I've tried running this on a multi objective problem but I seem to get the solver running forever in an infinite loop.
If I run a problem with the standard non-multi solver, it runs ok. If I change to multi solver even with just the same original objective, it fails to complete and runs forever:
This runs fine:
let model = {
optimize: "score",
opType: "max",
constraints: { ...constraints },
variables: { ... variables }
};
This however, runs in an infinite loop:
let model = {
optimize: {
score: "max"
},
constraints: { ...constraints },
variables: { ... variables }
};
Any ideas?
The text was updated successfully, but these errors were encountered:
Hey @JWally. I've tried running this on a multi objective problem but I seem to get the solver running forever in an infinite loop.
If I run a problem with the standard non-multi solver, it runs ok. If I change to multi solver even with just the same original objective, it fails to complete and runs forever:
This runs fine:
This however, runs in an infinite loop:
Any ideas?
The text was updated successfully, but these errors were encountered: