-
Notifications
You must be signed in to change notification settings - Fork 69
Open
Description
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?
Metadata
Metadata
Assignees
Labels
No labels