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

◆ rawModuleTensor()

const Matrix * rawModuleTensor ( const Matrix * M,
const Matrix * N )

Definition at line 413 of file matrix.cpp.

414{
415 try
416 {
417 return M->module_tensor(N);
418 } catch (const exc::engine_error& e)
419 {
420 ERROR(e.what());
421 return nullptr;
422 }
423}
Matrix * module_tensor(const Matrix *m) const
Definition matrix.cpp:686
const int ERROR
Definition m2-mem.cpp:55

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