SelectionProblem
data class SelectionProblem(val constraints: Set<SelectionConstraint>, val cost: SymbolicCost, val costMap: Map<Node, SymbolicCost> = mapOf())
A constrained optimization problem defined by a set of selection constraints and a cost expression to minimize.
Constructors
Link copied to clipboard
fun SelectionProblem(constraints: Set<SelectionConstraint>, cost: SymbolicCost, costMap: Map<Node, SymbolicCost> = mapOf())