From dc75b4d1570f5b44baf13abf7ac178eeb17321c3 Mon Sep 17 00:00:00 2001 From: Jeremy Saklad Date: Tue, 6 Jul 2021 11:42:20 -0500 Subject: [PATCH] Fix missing variable name --- Bone Market Solver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bone Market Solver.py b/Bone Market Solver.py index 95b0f62..8089c2d 100644 --- a/Bone Market Solver.py +++ b/Bone Market Solver.py @@ -2161,7 +2161,7 @@ def Solve(shadowy_level, bone_market_fluctuations, zoological_mania, occasional_ non_negative_antiquity = model.NewIntVar(cp_model.INT32_MIN, cp_model.INT32_MAX, '{}: {}'.format(Buyer.THE_TRIFLING_DIPLOMAT_FISH.name, 'non-negative antiquity')) model.AddMaxEquality(non_negative_antiquity, [antiquity, 0]) - compromising_documents = model.NewIntVar(0, cp_model.INT32_MAX, '{}: {}'.format(Buyer.THE_TRIFLING_DIPLOMAT_FISH.name, '')) + compromising_documents = model.NewIntVar(0, cp_model.INT32_MAX, '{}: {}'.format(Buyer.THE_TRIFLING_DIPLOMAT_FISH.name, 'compromising documents')) model.AddGeneralMultiplicationEquality(compromising_documents, non_negative_amalgamy, non_negative_menace, non_negative_antiquity) value_remainder = model.NewIntVar(0, 49, '{}: {}'.format(Buyer.THE_TRIFLING_DIPLOMAT_FISH.name, 'value remainder'))