@@ -9,15 +9,39 @@ using Test
9
9
function test_readme_example ()
10
10
model = Model ()
11
11
COI. add_all_bridges (model)
12
- @variable (model, x[1 : 2 , 1 : 2 ] in COI. HermitianPSDCone ())
13
- @test num_variables (model) == 4
12
+ @variable (
13
+ model,
14
+ x in COI. ComplexPlane (),
15
+ start = 5 + 6im ,
16
+ lower_bound = 1 + 2im ,
17
+ upper_bound = 3 + 4im
18
+ )
19
+ xr = first (x. terms). first
20
+ xi = collect (x. terms)[2 ]. first
21
+ @test lower_bound (xr) == 1
22
+ @test upper_bound (xr) == 3
23
+ @test start_value (xr) == 5
24
+ @test lower_bound (xi) == 2
25
+ @test upper_bound (xi) == 4
26
+ @test start_value (xi) == 6
27
+ @variable (model, Q[1 : 2 , 1 : 2 ] in COI. HermitianPSDCone ())
28
+ @test num_variables (model) == 6
14
29
v = all_variables (model)
15
- @test x[1 , 1 ] == 1 v[1 ]
16
- @test x[1 , 2 ] == v[2 ] + v[4 ] * im
17
- @test x[2 , 2 ] == 1 v[3 ]
30
+ @test xr == v[1 ]
31
+ @test name (v[1 ]) == " real(x)"
32
+ @test xi == v[2 ]
33
+ @test name (v[2 ]) == " imag(x)"
34
+ @test x == v[1 ] + v[2 ] * im
35
+ @test name (v[3 ]) == " real(Q[1,1])"
36
+ @test Q[1 , 1 ] == 1 v[3 ]
37
+ @test name (v[4 ]) == " real(Q[1,2])"
38
+ @test name (v[6 ]) == " imag(Q[1,2])"
39
+ @test Q[1 , 2 ] == v[4 ] + v[6 ] * im
40
+ @test name (v[5 ]) == " real(Q[2,2])"
41
+ @test Q[2 , 2 ] == 1 v[5 ]
18
42
# FIXME needs https://github.com/jump-dev/JuMP.jl/pull/2899
19
- # @test x [2, 1] == conj(x[1, 2])
20
- @constraint (model, x [1 , 1 ] + x [2 , 2 ] * im == 1 + 2im )
43
+ # @test Q [2, 1] == conj(x[1, 2])
44
+ @constraint (model, Q [1 , 1 ] + Q [2 , 2 ] * im == 1 + 2im )
21
45
end
22
46
23
47
function test_simple_equality ()
0 commit comments