Skip to content

Commit

Permalink
Add failing rref case
Browse files Browse the repository at this point in the history
  • Loading branch information
Aweptimum committed Nov 8, 2023
1 parent da47751 commit 20e94c9
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions tests/LinearAlgebra/Reduction/ReducedRowEchelonFormTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -1045,6 +1045,25 @@ public function dataProviderForRref(): array
[0, 0, 0, 0, 0],
],
],
[
[
[-0.99999966687087, 0, 0, 0, 0, 0],
[0, -0.99999966687087, 0, 0, 0, 0.00061146285160793],
[0, 0, -0.99999966687087, 0, -0.00061146285160793, 0],
[0, 0, 0, -1.0000003738869, 0, 0],
[0, 0, -0.00061146285160793, 0, -3.7388694340557*10**-7, 0],
[0, 0.00061146285160793, 0, 0, 0, -3.7388694340557*10**-7]
],
[
[1, 0, 0, 0, 0, 0],
[0, 1, 0, 0, 0, 0],
[0, 0, 1, 0, 0, 0],
[0, 0, 0, 1, 0, 0],
[0, 0, 0, 0, 1, 0],
[0, 0, 0, 0, 0, 1]
]

]
];
}

Expand Down

0 comments on commit 20e94c9

Please sign in to comment.