Implements ResolutionComputation.
Definition at line 1300 of file res-a1.cpp.
1301{
1303 o << "--- The total number of pairs in each level/slanted degree -----"
1307 o << "--- The number of pairs left to compute ------------------------"
1311 o <<
"--- (Lower bounds of) the minimal betti numbers ----------" <<
newline;
1315 {
1316 o << "--- Number of monomials ---------------------------------"
1320 }
1321
1322
1324 for (int lev = 0; lev < resn.size(); lev++)
1325 {
1326 o <<
"---- level " << lev <<
" ----" <<
newline;
1327 for (int i = 0; i < resn[lev]->bin.size(); i++)
1328 {
1329 res_degree *mypairs = resn[lev]->bin[i];
1330 if (mypairs == nullptr) continue;
1331 for (res_pair *
p = mypairs->
first;
p !=
nullptr;
p =
p->next)
1332 {
1334 o << ' ';
1336 }
1337 }
1338 }
1339}
static void betti_display(buffer &o, M2_arrayint a)
M2_arrayint betti_remaining() const
M2_arrayint betti_minimal() const
void text_out(const res_pair *p) const
M2_arrayint betti_nmonoms() const
M2_arrayint betti_skeleton() const
References ResolutionComputation::betti_display(), betti_minimal(), betti_nmonoms(), betti_remaining(), betti_skeleton(), res_degree::first, M2_gbTrace, n_degree, n_level, newline, p, buffer::put(), and text_out().