@@ -140,7 +140,7 @@ def test_out_of_bounds_processing(study_id: str, expected_objective: float) -> N
140140# Constraints: 2 components (gen_1, gen_2) × 3 timesteps = 6 potential instances each.
141141#
142142# system_cyclic_with_param_in_shift — no drop mode, all instances present:
143- # is_on_dynamics (lb + ub ): 6 each
143+ # is_on_dynamics (eq ): 6
144144# min_up_duration (ub only): 6
145145# min_down_duration (ub only): 6
146146#
@@ -151,14 +151,12 @@ def test_out_of_bounds_processing(study_id: str, expected_objective: float) -> N
151151# min_down_duration: both have d_min_down=1 → range [0,0] → never dropped → 6
152152_EXPECTED_CONSTRAINT_COUNTS : Dict [str , Dict [str , int ]] = {
153153 "system_cyclic_with_param_in_shift" : {
154- f"{ _GEN_PREFIX } __is_on_dynamics__lb" : 6 ,
155- f"{ _GEN_PREFIX } __is_on_dynamics__ub" : 6 ,
154+ f"{ _GEN_PREFIX } __is_on_dynamics__eq" : 6 ,
156155 f"{ _GEN_PREFIX } __min_up_duration__ub" : 6 ,
157156 f"{ _GEN_PREFIX } __min_down_duration__ub" : 6 ,
158157 },
159158 "system_drop_with_param_in_shift" : {
160- f"{ _GEN_PREFIX } __is_on_dynamics__lb" : 4 ,
161- f"{ _GEN_PREFIX } __is_on_dynamics__ub" : 4 ,
159+ f"{ _GEN_PREFIX } __is_on_dynamics__eq" : 4 ,
162160 f"{ _GEN_PREFIX } __min_up_duration__ub" : 5 ,
163161 f"{ _GEN_PREFIX } __min_down_duration__ub" : 6 ,
164162 },
0 commit comments