scalarize: Scalarize multiple objectives into a single objective
Description
Transforms for combining several Minimize/Maximize objectives
into one objective for multi-objective optimization. Mirrors CVXPY's
cvxpy.transforms.scalarize submodule; access members with $:
Usage
scalarize
Arguments
Format
A named list of four functions.
Details
scalarize$weighted_sum(objectives, weights) -- weighted sum of
objectives.
scalarize$targets_and_priorities(objectives, priorities,
targets, limits = NULL, off_target = 1e-5) -- penalize each objective
within a [target, limit] range; a negative priority flips the
objective sense.
scalarize$max(objectives, weights) -- minimize the largest
weighted objective term.