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

◆ remove()

void MonomialTable::remove ( mon_term *const y)
staticprivate

Definition at line 108 of file montable.cpp.

109{
110 mon_term *const x = y->_prev;
111 mon_term *const z = y->_next;
112 x->_next = z;
113 z->_prev = x;
114}
volatile int x
Doubly-linked-list node of a MonomialTable's per-component monomial list.
Definition montable.hpp:109

References MonomialTable::mon_term::_next, MonomialTable::mon_term::_prev, and x.