@@ -19,7 +19,7 @@ F1 = MOI.SingleVariable
19
19
S1 = typeof (set1)
20
20
v1, c1 = MOIB. Variable. add_key_for_bridge (map, b1, set1)
21
21
@test v1. value == c1. value == - 1
22
- @test Variable. constraint (map, v1) == c1
22
+ @test MOIB . Variable. constraint (map, v1) == c1
23
23
@test haskey (map, v1)
24
24
@test map[v1] == b1
25
25
@test MOIB. Variable. constrained_set (map, v1) == S1
@@ -49,7 +49,7 @@ v2, c2 = MOIB.Variable.add_keys_for_bridge(map, b2, set2)
49
49
@test MOIB. Variable. has_keys (map, v2)
50
50
@test ! MOIB. Variable. has_keys (map, v2[4 : - 1 : 1 ])
51
51
for i in 1 : 4
52
- @test Variable. constraint (map, v2[i]) == c2
52
+ @test MOIB . Variable. constraint (map, v2[i]) == c2
53
53
@test haskey (map, v2[i])
54
54
@test map[v2[i]] == b2
55
55
@test MOIB. Variable. constrained_set (map, v2[i]) == S2
@@ -129,7 +129,7 @@ elements = sort(collect(map), by = el -> el.second.id)
129
129
@test ! MOIB. Variable. has_keys (map, v2)
130
130
@test MOIB. Variable. has_keys (map, v2[left])
131
131
for (j, i) in enumerate (left)
132
- @test Variable. constraint (map, v2[i]) == c2
132
+ @test MOIB . Variable. constraint (map, v2[i]) == c2
133
133
@test haskey (map, v2[i])
134
134
@test map[v2[i]] == b2
135
135
@test MOIB. Variable. constrained_set (map, v2[i]) == S2
@@ -162,7 +162,7 @@ elements = sort(collect(map), by = el -> el.second.id)
162
162
@test ! MOIB. Variable. has_keys (map, v2[[1 , 2 , 4 ]])
163
163
@test MOIB. Variable. has_keys (map, v2[left])
164
164
for (j, i) in enumerate (left)
165
- @test Variable. constraint (map, v2[i]) == c2
165
+ @test MOIB . Variable. constraint (map, v2[i]) == c2
166
166
@test haskey (map, v2[i])
167
167
@test map[v2[i]] == b2
168
168
@test MOIB. Variable. constrained_set (map, v2[i]) == S2
0 commit comments