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

◆ IM2_Matrix_remake1()

const Matrix * IM2_Matrix_remake1 ( const FreeModule * target,
const Matrix * M,
int preference )

Definition at line 242 of file matrix.cpp.

250{
251 (void) preference;
252 try
253 {
254#ifdef DEVELOPMENT
255#warning prefer_dense not yet used
256#endif
257 return M->remake(target);
258 } catch (const exc::engine_error& e)
259 {
260 ERROR(e.what());
261 return nullptr;
262 }
263}
const Matrix * remake(const FreeModule *target, const FreeModule *source, M2_arrayint deg) const
Definition matrix.cpp:228
const int ERROR
Definition m2-mem.cpp:55

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