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

◆ rawWedgeProduct()

const Matrix * rawWedgeProduct ( int p,
int q,
const FreeModule * F )

Definition at line 464 of file matrix.cpp.

468{
469 try
470 {
471 return Matrix::wedge_product(p, q, F);
472 } catch (const exc::engine_error& e)
473 {
474 ERROR(e.what());
475 return nullptr;
476 }
477}
static Matrix * wedge_product(int p, int q, const FreeModule *F)
Definition matrix.cpp:1272
int p
const int ERROR
Definition m2-mem.cpp:55

References ERROR, Matrix, and p.