Versions Compared

Key

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

Criteria are important as they represent the customer customer’s end goal regarding the in optimization. Choosing the right types and prioritizing them according to the customer's needs is one of the keys to success.

On In this pagesection:

Table of Contents

Caution with Maximization

A maximization criterion applies to one variable and pushes it as far as possible towards (positive) infinity. It is very dangerous to set any other priority than low for maximization criteria: as they are never satisfied, they risk taking precedence over every other criteria all the time, preventing the system to reach a good overall solution.

...

Perform Minimization

There are two cases:

  • you You actually want the variable to be as close to zero as possible.

    • simply Simply set a target criterion to zero.

  • you You want the variable to go as far towards negative infinity as possible:

    • you You need an extra step: multiply this variable by -1 and set a maximization criterion on the result.

Set Boundaries to

...

Variable

There are two different ways to define that set boundaries to for a variable.

  • Thresholds criteria make the variable stay above or below a given value. The criteria may be unreached in case of conflictual constraints.

  • Minimum and maximum values hard-constrain the search space of Value Finders. This is easier and more efficient than applying criteria to them, but also more restrictive: the Value Finder is unable to go further beyond the boundaries.

It is also not the same modeling: applying criteria is modeling the problem, while setting boundaries is restricting the solution.

Be careful: In case of an "I want the variable to be between 10 and 20 but it's even better if it's at 15" type of need, the recommendation is to use a target at 15 with an acceptable delta of 5 instead of two high priority thresholds plus a low priority target. It takes fewer agents and results in a way smoother and faster convergence in most cases. The only drawback is a small loss of explainability. You cannot differentiate the impacts and induced movements on the Value Finders as it is only one criterion instead of three.

...

Composite criteria are expressed as one criterion over several variables in the description file but are actually instantiated as several variables, computations, and criteria. They are instantiated as a set of substractions, differences, and either a threshold (for Alignment criteria) or target to zero criteria (EqualTo criteria).

  • When to use a composite criterion? When the criterion encompasses several variables.

  • When to use an EqualTo composite criterion instead of a Target basic criterion? When the target value is dynamic, or when the target value is used elsewhere in the problem (hence it makes sense to have it explicitly as a variable in the problem).

Prioritize Criteria

Customers often differentiate their requirements with respect to their relative importance. There are two ways to translate it.:

  1. The first way is to set the priority level of the criteria (low, medium, or high): lower priority neighbors are not looked at by the majority of Value Finders as long there are unsatisfied higher priority criteria (well, sort of, see Optimization Engine Advanced Knowledge).

...

  1.  

  2. The second way is to set an acceptable delta to targets or thresholds. When the difference between the current value and the target is less than the acceptable delta, the priority of the criteria becomes low.

Priorities only affect value finders when a conflict between criteria arises. Having high and low priorities does not mean the low priorities will be totally ignored.