Skip to content

Commit 89471bb

Browse files
authored
Replace eigenvalue by its square
1 parent 9bd6ee5 commit 89471bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Utilities/distance_to_set.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ function test_positivesemidefiniteconesquare()
314314
[1.0, 0.0, 0.0, 1.0] => 0.0,
315315
[1.0, -1.0, -1.0, 1.0] => 0.0,
316316
[1.0, -2.0, -2.0, 1.0] => 1.0,
317-
[1.0 1.1; 1.1 -2.3] => 2.6330532015051946;
317+
[1.0, 1.1, 1.1, -2.3] => 6.9329523025;
318318
mismatch = [1.0],
319319
)
320320
return
@@ -326,7 +326,7 @@ function test_positivesemidefiniteconetriangle()
326326
[1.0, 0.0, 1.0] => 0.0,
327327
[1.0, -1.0, 1.0] => 0.0,
328328
[1.0, -2.0, 1.0] => 1.0,
329-
[1.0, 1.1, -2.3] => 2.6330532015051946;
329+
[1.0, 1.1, -2.3] => 6.9329523025;
330330
mismatch = [1.0],
331331
)
332332
return

0 commit comments

Comments
 (0)