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

◆ negate_vec_to()

void Ring::negate_vec_to ( vec & v) const

Definition at line 534 of file ring-vecs.cpp.

535{
536 vec w = v;
537 while (w != nullptr)
538 {
539 negate_to(w->coeff);
540 w = w->next;
541 }
542}
void negate_to(ring_elem &f) const
Definition ring.cpp:210

References negate_to().

Referenced by subtract_vec_to().