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

◆ rawResolutionGetMutableMatrixB()

MutableMatrix * rawResolutionGetMutableMatrixB ( Computation * C,
const Ring * R,
int level )

Definition at line 520 of file groebner.cpp.

528{
529 try
530 {
532 F4ResComputation *G = dynamic_cast<F4ResComputation *>(C);
533 if (G != nullptr) return G->get_mutable_matrix(R, level);
534 ERROR("expected fast nonminimal resolution computation type");
535 return nullptr;
536 } catch (const exc::engine_error& e)
537 {
538 ERROR(e.what());
539 return nullptr;
540 }
541}
ResolutionComputation subclass that drives the F4 resolution engine (SchreyerFrame + F4Res) from the ...
const int ERROR
Definition m2-mem.cpp:55
tbb::flow::graph G
void clear_emit_size()
Definition text-io.cpp:26

References clear_emit_size(), ERROR, G, and RingMap::R.