Skip to content

Commit

Permalink
change p*Echelonform API
Browse files Browse the repository at this point in the history
  • Loading branch information
ClementPernet committed Jun 11, 2019
1 parent 2731e92 commit d54106c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test-echelon.C
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ test_colechelon(Field &F, size_t m, size_t n, size_t r, size_t iters, FFPACK::FF
if(!par)
R = FFPACK::ColumnEchelonForm (F, m, n, A, n, P, Q, true, LuTag);
else
R = FFPACK::pColumnEchelonForm (F, m, n, A, n, P, Q, true, LuTag);
R = FFPACK::pColumnEchelonForm (F, m, n, A, n, P, Q, true, 0, LuTag);
if (R != r) {pass = false; break;}

FFPACK::getEchelonTransform (F, FFLAS::FflasLower, FFLAS::FflasUnit, m,n,R,P,Q,A,lda,U,n, LuTag);
Expand Down Expand Up @@ -158,7 +158,7 @@ test_rowechelon(Field &F, size_t m, size_t n, size_t r, size_t iters, FFPACK::FF
if(!par)
R = FFPACK::RowEchelonForm (F, m, n, A, n, P, Q, true, LuTag);
else
R = FFPACK::pRowEchelonForm (F, m, n, A, n, P, Q, true, LuTag);
R = FFPACK::pRowEchelonForm (F, m, n, A, n, P, Q, true, 0, LuTag);

if (R != r) {pass = false; break;}

Expand Down Expand Up @@ -233,7 +233,7 @@ test_redcolechelon(Field &F, size_t m, size_t n, size_t r, size_t iters, FFPACK:
if(!par)
R = FFPACK::ReducedColumnEchelonForm (F, m, n, A, n, P, Q, true, LuTag);
else
R = FFPACK::pReducedColumnEchelonForm (F, m, n, A, n, P, Q, true, LuTag);
R = FFPACK::pReducedColumnEchelonForm (F, m, n, A, n, P, Q, true, 0, LuTag);

if (R != r) {pass = false; break;}

Expand Down Expand Up @@ -307,7 +307,7 @@ test_redrowechelon(Field &F, size_t m, size_t n, size_t r, size_t iters, FFPACK:
if(!par)
R = FFPACK::ReducedRowEchelonForm (F, m, n, A, n, P, Q, true, LuTag);
else
R = FFPACK::pReducedRowEchelonForm (F, m, n, A, n, P, Q, true, LuTag);
R = FFPACK::pReducedRowEchelonForm (F, m, n, A, n, P, Q, true, 0, LuTag);


if (R != r) {pass = false; break;}
Expand Down

0 comments on commit d54106c

Please sign in to comment.