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

◆ rawMinors()

const Matrix * rawMinors ( int p,
const Matrix * M,
int strategy,
int n_minors_to_compute,
M2_arrayintOrNull first_row_set,
M2_arrayintOrNull first_col_set )

Definition at line 595 of file matrix.cpp.

608{
609 try {
610 return M->minors(
611 p, strategy, n_minors_to_compute,
612 first_row_set, first_col_set);
613 } catch (const exc::engine_error& e)
614 {
615 ERROR(e.what());
616 return nullptr;
617 }
618}
Matrix * minors(int p, int strategy) const
Definition det.cpp:440
int p
const int ERROR
Definition m2-mem.cpp:55

References ERROR, Matrix, Matrix::minors(), and p.