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

◆ IM2_GB_matrix_lift()

M2_bool IM2_GB_matrix_lift ( Computation * C,
const Matrix * m,
const Matrix ** result_remainder,
const Matrix ** result_quotient )

Definition at line 450 of file groebner.cpp.

454{
455 try
456 {
459 if (G != nullptr)
460 return G->matrix_lift(m, result_remainder, result_quotient);
461 else
462 ERROR("computation type unknown or not implemented");
463 } catch (const exc::engine_error& e)
464 {
465 ERROR(e.what());
466 }
467 return false;
468}
virtual GBComputation * cast_to_GBComputation()
Definition comp.hpp:111
base class for Groebner basis computations.
Definition comp-gb.hpp:69
const int ERROR
Definition m2-mem.cpp:55
tbb::flow::graph G
void clear_emit_size()
Definition text-io.cpp:26

References Computation::cast_to_GBComputation(), clear_emit_size(), ERROR, G, and Matrix.