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

◆ ~GaussElimComputation()

GaussElimComputation::~GaussElimComputation ( )

Definition at line 114 of file gauss.cpp.

115{
116 for (int i = 0; i < gens->n_rows(); i++)
117 {
118 // remove the gm_elem list
119 gm_elem *p = reduce_list[i];
120 while (p != nullptr)
121 {
122 gm_elem *tmp = p;
123 p = p->next;
124 remove_gm_elem(tmp);
125 }
127 }
128}
void remove_gm_elem(gm_elem *&p)
Definition gauss.cpp:103
gm_elem ** reduce_list
Definition gauss.hpp:62
gm_elem ** gb_list
Definition gauss.hpp:63
const Matrix * gens
Definition gauss.hpp:67
int p

References gb_list, gens, p, reduce_list, and remove_gm_elem().