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

◆ rawLU()

Definition at line 653 of file mutable-matrix.cpp.

656{
657 try
658 {
659 return A->LU(L, U);
660 } catch (const exc::engine_error& e)
661 {
662 ERROR(e.what());
663 return nullptr;
664 }
665}
virtual M2_arrayintOrNull LU(MutableMatrix *L, MutableMatrix *U) const =0
const int ERROR
Definition m2-mem.cpp:55

References ERROR, and MutableMatrix::LU().