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

◆ solveLinear() [5/5]

template<typename Mat>
bool MatrixOps::solveLinear ( const Mat & A,
const Mat & B,
Mat & X )

solve AX=B, return true if the system has a solution.

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

231{
232 (void) A;
233 (void) B;
234 (void) X;
235 throw exc::engine_error(
236 "'solveLinear' not implemented for this kind of matrix over this ring");
237}

Referenced by MutableMat< Mat >::solveLinear(), and HomotopyConcrete< RT, FixedPrecisionHomotopyAlgorithm >::track().