Skip to content

Commit

Permalink
Some correction.
Browse files Browse the repository at this point in the history
  • Loading branch information
MathieuDutSik committed Aug 5, 2024
1 parent c966b3d commit 204e119
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src_matrix/MAT_MatrixInt.h
Original file line number Diff line number Diff line change
Expand Up @@ -2580,7 +2580,7 @@ MyVector<T> EliminateSuperfluousPrimeDenominators(MyVector<T> const& eVect, MyMa
MyMatrix<T> ListVect4 = NullspaceIntTrMat(ListVect3);
//
MyMatrix<T> TheCompl = SubspaceCompletionInt(ListVect4, dim);
MyMatrix<T> TheBasis = Concatenation(TheCompl, ListVect4);
MyMatrix<T> TheBasis = Concatenate(TheCompl, ListVect4);
MyMatrix<T> TheBasisInv = Inverse(TheBasis);
MyVector<T> eSol = TheBasisInv.transpose() * eVect;
int dimCompl = TheCompl.rows();
Expand Down

0 comments on commit 204e119

Please sign in to comment.