2021-10-16 22:17:56 +00:00
__author__ : str = " Jeremy Saklad "
2021-09-22 22:06:44 +00:00
2021-10-16 22:17:56 +00:00
from collections . abc import Iterable
2021-10-16 18:04:31 +00:00
from functools import cache , partialmethod , reduce , singledispatch , singledispatchmethod
2021-10-16 22:17:56 +00:00
from numbers import Integral , Number
from typing import Final
2021-09-22 22:06:44 +00:00
from ortools . sat . python import cp_model
class BoneMarketModel ( cp_model . CpModel ) :
""" A CpModel with additional functions for common constraints and enhanced enforcement literal support. """
2021-10-16 22:17:56 +00:00
__slots__ : tuple [ ( ) ] = ( )
2021-09-22 22:06:44 +00:00
2021-10-16 22:17:56 +00:00
def AddAllowedAssignments ( self , variables : Iterable [ Iterable ] , tuples_list : Iterable [ Iterable ] ) - > tuple :
2022-01-02 23:57:53 +00:00
intermediate_variables , constraints = ( lambda invocation : zip ( * ( self . NewIntermediateIntVar ( variable , f ' { invocation } : { variable } ' ) for variable in variables ) ) ) ( repr ( ( variables , tuples_list ) ) )
2021-09-22 22:06:44 +00:00
super ( ) . AddAllowedAssignments ( intermediate_variables , tuples_list )
return constraints
2021-10-16 22:17:56 +00:00
def AddApproximateExponentiationEquality ( self , target , var , exp : Number , upto : Integral ) - > tuple :
2021-09-22 22:06:44 +00:00
""" Add an approximate exponentiation equality using a lookup table.
Set ` upto ` to a value that is unlikely to come into play .
Each parameter is interpreted as a BoundedLinearExpression , and a layer of indirection is applied such that each Constraint in the returned tuple can accept an enforcement literal . """
return self . AddAllowedAssignments ( ( target , var ) , ( ( int ( base * * exp ) , base ) for base in range ( upto + 1 ) ) )
2021-10-16 22:17:56 +00:00
def AddDivisionEquality ( self , target , num , denom ) - > tuple :
2021-09-28 21:34:50 +00:00
""" Adds `target == num // denom` (integer division rounded towards 0).
Each parameter is interpreted as a BoundedLinearExpression , and a layer of indirection is applied such that each Constraint in the returned tuple can accept an enforcement literal . """
2021-10-16 22:17:56 +00:00
# Used for variable names
invocation : Final [ str ] = f ' { repr ( target ) } == { repr ( num ) } // { repr ( denom ) } '
intermediate_target , target_constraint = self . NewIntermediateIntVar ( target , f ' { invocation } : target ' )
intermediate_num , num_constraint = self . NewIntermediateIntVar ( num , f ' { invocation } : num ' , lb = 0 )
intermediate_denom , denom_constraint = self . NewIntermediateIntVar ( denom , f ' { invocation } : denom ' , lb = 1 )
2021-09-28 21:34:50 +00:00
super ( ) . AddDivisionEquality ( intermediate_target , intermediate_num , intermediate_denom )
return ( target_constraint , num_constraint , denom_constraint )
2021-10-16 22:17:56 +00:00
def AddIf ( self , variable , * constraints : tuple ) - > frozenset :
2021-09-27 18:09:00 +00:00
""" Add constraints to the model, only enforced if the specified variable is true.
Each item in ` constraints ` must be either a BoundedLinearExpression , a Constraint compatible with OnlyEnforceIf , a 0 - arity partial method of CpModel returning a valid item , or an iterable containing valid items . """
@singledispatch
2021-10-16 22:17:56 +00:00
def Add ( constraint : Iterable ) - > frozenset :
return frozenset ( ( Add ( element ) for element in constraint ) )
2021-09-27 18:09:00 +00:00
@Add.register
2021-10-16 22:17:56 +00:00
def _ ( constraint : cp_model . Constraint ) - > cp_model . Constraint :
2021-09-27 18:09:00 +00:00
return constraint . OnlyEnforceIf ( variable )
@Add.register
2021-10-16 22:17:56 +00:00
def _ ( constraint : cp_model . BoundedLinearExpression ) - > cp_model . Constraint :
2021-09-27 18:09:00 +00:00
return Add ( self . Add ( constraint ) )
@Add.register
def _ ( constraint : partialmethod ) :
return Add ( constraint . __get__ ( self ) ( ) )
return frozenset ( ( Add ( constraint ) for constraint in constraints ) )
2021-10-16 22:17:56 +00:00
def AddMultiplicationEquality ( self , target , variables : Iterable ) - > tuple :
2021-09-22 22:06:44 +00:00
""" Adds `target == variables[0] * .. * variables[n]`.
Each parameter is interpreted as a BoundedLinearExpression , and a layer of indirection is applied such that each Constraint in the returned tuple can accept an enforcement literal . """
2021-10-16 22:17:56 +00:00
superclass : Final = super ( )
2021-09-22 22:06:44 +00:00
2021-10-16 22:17:56 +00:00
def Multiply ( end , stack : list ) - > tuple :
2021-09-22 22:06:44 +00:00
intermediate_variable , variable_constraint = self . NewIntermediateIntVar ( stack . pop ( ) , f ' { repr ( end ) } == { " * " . join ( ( repr ( variable ) for variable in stack ) ) } : last variable ' )
2021-10-16 22:17:56 +00:00
partial_target : Final [ cp_model . IntVar ] = self . NewIntVar ( f ' { repr ( end ) } == { " * " . join ( ( repr ( variable ) for variable in stack ) ) } : partial target ' )
recursive_constraints : Final [ tuple ] = self . AddMultiplicationEquality ( partial_target , stack ) if len ( stack ) > 1 else ( self . Add ( partial_target == stack . pop ( ) ) , )
2021-09-22 22:06:44 +00:00
intermediate_target , target_constraint = self . NewIntermediateIntVar ( end , f ' { repr ( end ) } == { " * " . join ( ( repr ( variable ) for variable in stack ) ) } : target ' )
superclass . AddMultiplicationEquality ( intermediate_target , ( partial_target , intermediate_variable ) )
return ( variable_constraint , * recursive_constraints , target_constraint )
# Avoid mutating parameter directly
return Multiply ( target , variables . copy ( ) if isinstance ( variables , list ) else list ( variables ) )
2021-09-25 03:04:54 +00:00
@cache
2021-10-16 22:17:56 +00:00
def BoolExpression ( self , bounded_linear_exp : cp_model . BoundedLinearExpression ) - > cp_model . IntVar :
2021-09-22 22:06:44 +00:00
""" Add a fully-reified implication using an intermediate Boolean variable. """
2021-10-16 22:17:56 +00:00
intermediate : Final [ cp_model . IntVar ] = self . NewBoolVar ( str ( bounded_linear_exp ) )
linear_exp : Final [ cp_model . LinearExp ] = bounded_linear_exp . Expression ( )
domain : Final [ cp_model . Domain ] = cp_model . Domain ( * bounded_linear_exp . Bounds ( ) )
2021-09-22 22:06:44 +00:00
self . AddLinearExpressionInDomain ( linear_exp , domain ) . OnlyEnforceIf ( intermediate )
self . AddLinearExpressionInDomain ( linear_exp , domain . Complement ( ) ) . OnlyEnforceIf ( intermediate . Not ( ) )
return intermediate
2021-10-16 18:04:31 +00:00
@singledispatchmethod
2022-01-02 23:28:58 +00:00
def NewIntermediateIntVar ( self , expression : cp_model . LinearExpr , name : str , * , lb : Integral = cp_model . INT32_MIN , ub : Integral = cp_model . INT32_MAX ) - > tuple :
""" Creates an integer variable equivalent to the given expression and returns a tuple consisting of the variable and constraints for use with enforcement literals.
2021-09-22 22:06:44 +00:00
2021-10-16 18:04:31 +00:00
` equality ` must be either a LinearExp or a unary partialmethod that accepts a target integer variable and returns Constraints . """
2022-02-15 15:51:25 +00:00
# If expression is an integer constant, just pass it through
if isinstance ( expression , cp_model . IntVar ) and ( lambda domain : domain [ 0 ] == domain [ 1 ] ) ( cp_model . IntVar . Proto ( expression ) . domain ) :
2022-01-02 23:28:58 +00:00
return ( expression , ( ) )
else :
2022-01-02 23:57:53 +00:00
return ( lambda intermediate : ( intermediate , self . Add ( intermediate == expression ) ) ) ( super ( ) . NewIntVar ( lb , ub , name ) )
2021-10-16 18:04:31 +00:00
@NewIntermediateIntVar.register
2021-10-16 22:17:56 +00:00
def _ ( self , expression : partialmethod , name : str , * , lb : Integral = cp_model . INT32_MIN , ub : Integral = cp_model . INT32_MAX ) - > tuple :
2022-01-02 23:57:53 +00:00
return ( lambda intermediate : ( intermediate , expression . __get__ ( self ) ( intermediate ) ) ) ( super ( ) . NewIntVar ( lb , ub , name ) )
2021-09-22 22:06:44 +00:00
2022-01-02 23:28:58 +00:00
@NewIntermediateIntVar.register
def _ ( self , expression : Integral , * args , * * kwargs ) - > tuple :
return ( self . NewConstant ( expression ) , ( ) )
2021-10-16 22:17:56 +00:00
def NewIntVar ( self , name : str , * , lb : Integral = cp_model . INT32_MIN , ub : Integral = cp_model . INT32_MAX ) - > cp_model . IntVar :
2021-09-22 22:06:44 +00:00
return super ( ) . NewIntVar ( lb , ub , name )