Macaulay2 Engine
Loading...
Searching...
No Matches

◆ solveLinear() [2/5]

bool MatrixOps::solveLinear ( const DMatQQFlint & A,
const DMatQQFlint & B,
DMatQQFlint & X )
inline

Definition at line 1147 of file mat-linalg.hpp.

1150{
1151 // TODO: WRITE ME
1152 // DMatQQFlint& A1 = const_cast<DMatQQFlint&>(A); // needed because
1153 // fmpq_mat_solve doesn't declare params const
1154 // DMatQQFlint& B1 = const_cast<DMatQQFlint&>(B);
1155 // return fmpq_mat_solve(X.fmpq_mat(), B1.fmpq_mat(), A1.fmpq_mat());
1156 (void) A;
1157 (void) B;
1158 (void) X;
1159 return false;
1160}