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

◆ rawFreeModuleSelectByDegrees()

M2_arrayintOrNull rawFreeModuleSelectByDegrees ( const FreeModule * F,
M2_arrayint lo,
M2_arrayint hi )

Definition at line 179 of file freemodule.cpp.

182{
183 try
184 {
185 return F->select_by_degrees(lo, hi);
186 } catch (const exc::engine_error& e)
187 {
188 ERROR(e.what());
189 return nullptr;
190 }
191}
M2_arrayintOrNull select_by_degrees(M2_arrayintOrNull lo, M2_arrayintOrNull hi) const
Definition freemod.cpp:415
const int ERROR
Definition m2-mem.cpp:55

References ERROR, and FreeModule::select_by_degrees().