@@ -236,7 +236,7 @@ function test_set_coefficient(args...)
236236 @test JuMP. dual (α) == 0.0
237237 @test parametrized_dual_objective_value (model) ≈ 0 α
238238
239- set_coefficient (cref, α, 1.0 )
239+ JuMP . set_normalized_coefficient (cref, α, 1.0 )
240240 JuMP. optimize! (model)
241241 @test JuMP. value (x) == - 1.0
242242 @test JuMP. dual (cref) == - 1.0
@@ -257,7 +257,7 @@ function test_change_coefficient(args...)
257257 @test JuMP. dual (α) == 1.0
258258 @test parametrized_dual_objective_value (model) ≈ 1 α
259259
260- ParameterJuMP. set_coefficient (cref, α, - 2.0 )
260+ ParameterJuMP. set_normalized_coefficient (cref, α, - 2.0 )
261261 JuMP. optimize! (model)
262262 @test JuMP. value (x) == - 2.0
263263 @test JuMP. dual (cref) == 1.0
@@ -278,7 +278,7 @@ function test_set_coefficient_lazy(args...)
278278 @test JuMP. dual (α) == 0.0
279279 @test parametrized_dual_objective_value (model) ≈ 0 α
280280
281- set_coefficient (cref, α, 1.0 )
281+ set_normalized_coefficient (cref, α, 1.0 )
282282 JuMP. optimize! (model)
283283 @test JuMP. value (x) == - 1.0
284284 @test JuMP. dual (cref) == - 1.0
@@ -301,7 +301,7 @@ function test_set_coefficient_lazy2(args...)
301301 @test JuMP. dual (b) == - 1.0
302302 @test parametrized_dual_objective_value (model) ≈ - b
303303
304- set_coefficient (cref, α, 1.0 )
304+ set_normalized_coefficient (cref, α, 1.0 )
305305 JuMP. optimize! (model)
306306 @test JuMP. value (x) == - 1.0
307307 @test JuMP. dual (cref) == - 1.0
0 commit comments