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

◆ IM2_Matrix_sort_columns()

M2_arrayintOrNull IM2_Matrix_sort_columns ( const Matrix * M,
int deg_order,
int mon_order )

Definition at line 567 of file matrix.cpp.

570{
571 try
572 {
573 return M->sort(deg_order, mon_order);
574 } catch (const exc::engine_error& e)
575 {
576 ERROR(e.what());
577 return nullptr;
578 }
579}
M2_arrayint sort(int degorder, int monorder) const
const int ERROR
Definition m2-mem.cpp:55

References ERROR, Matrix, and Matrix::sort().