Fix identifier for torso style variable

The previous identifier used an underscore instead of a space to
separate the words.
This commit is contained in:
Jeremy Saklad 2021-06-18 13:49:44 -05:00
parent ebdc1cd803
commit 65fa45eac7
Signed by: Jeremy Saklad
GPG Key ID: 9CA2149583EDBF84
1 changed files with 1 additions and 1 deletions

View File

@ -1238,7 +1238,7 @@ def Solve(bone_market_fluctuations, zoological_mania, occasional_buyer = None, d
# Torso Style calculation
torso_style = model.NewIntVarFromDomain(cp_model.Domain.FromValues([torso.value.torso_style for torso in Torso]), 'torso_style')
torso_style = model.NewIntVarFromDomain(cp_model.Domain.FromValues([torso.value.torso_style for torso in Torso]), 'torso style')
for torso, torso_variable in {key: value for (key, value) in actions.items() if isinstance(key, Torso)}.items():
model.Add(torso_style == torso.value.torso_style).OnlyEnforceIf(torso_variable)