Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Existing Optimization Models

LIST OF OPTIMiZATION GOALS  

  • minimize
  • maximize

LIST OF OBJECTIVE FUNCTIONS

...

Minimize an unweighted value

...

Code Block
languagejs
collapsetrue
{
    "minimize": {
        "sum": [
            {
                "product": [
                    100,
                    {
                        "distance_between": [
                            "customer_loc",
                            "vG"
                        ]
                    }
                ]
            },
            {
                "product": [
                    200,
                    {
                        "hpa_score": [
                            "vG"
                        ]
                    }
                ]
            }
        ]
    }
}

New Optimization Model


AttributeRequiredContentValuesDescription
goalYStringminimize, maximizeThe goal of the optimization
objective_functionYObjective function Object
The objective function that has to be optimized

...