Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multi-Objective Optimization #124

Open
jason-linthwaite opened this issue Jan 13, 2023 · 0 comments
Open

Multi-Objective Optimization #124

jason-linthwaite opened this issue Jan 13, 2023 · 0 comments

Comments

@jason-linthwaite
Copy link

jason-linthwaite commented Jan 13, 2023

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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant