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

◆ rawPruneComplex()

MutableComplex * rawPruneComplex ( MutableComplex * C,
int n,
int f )

Definition at line 273 of file mutablecomplex.cpp.

274{
275 size_t nsteps = static_cast<size_t>(n), flags = static_cast<size_t>(f);
276 C->prune_complex(nsteps, flags);
277 // if (flags & FLAG_TRIM_COMPLEX)
278 // C = C->trim_complex(nsteps, flags);
279 return C;
280}
void prune_complex(const size_t nsteps, const size_t flags)

References MutableComplex::prune_complex().