Skip to content

Commit 20e94c9

Browse files
committed
Add failing rref case
1 parent da47751 commit 20e94c9

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

tests/LinearAlgebra/Reduction/ReducedRowEchelonFormTest.php

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1045,6 +1045,25 @@ public function dataProviderForRref(): array
10451045
[0, 0, 0, 0, 0],
10461046
],
10471047
],
1048+
[
1049+
[
1050+
[-0.99999966687087, 0, 0, 0, 0, 0],
1051+
[0, -0.99999966687087, 0, 0, 0, 0.00061146285160793],
1052+
[0, 0, -0.99999966687087, 0, -0.00061146285160793, 0],
1053+
[0, 0, 0, -1.0000003738869, 0, 0],
1054+
[0, 0, -0.00061146285160793, 0, -3.7388694340557*10**-7, 0],
1055+
[0, 0.00061146285160793, 0, 0, 0, -3.7388694340557*10**-7]
1056+
],
1057+
[
1058+
[1, 0, 0, 0, 0, 0],
1059+
[0, 1, 0, 0, 0, 0],
1060+
[0, 0, 1, 0, 0, 0],
1061+
[0, 0, 0, 1, 0, 0],
1062+
[0, 0, 0, 0, 1, 0],
1063+
[0, 0, 0, 0, 0, 1]
1064+
]
1065+
1066+
]
10481067
];
10491068
}
10501069

0 commit comments

Comments
 (0)