Skip to content

Multi-Objective Optimization #124

@jason-linthwaite

Description

@jason-linthwaite

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions