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

◆ add_vec()

vec Ring::add_vec ( vec v,
vec w ) const

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

200{
201 vec f = copy_vec(v);
202 vec g = copy_vec(w);
203 add_vec_to(f, g);
204 return f;
205}
void add_vec_to(vec &v, vec &w) const
vec copy_vec(const vecterm *v) const
Definition ring-vecs.cpp:91

References add_vec_to(), and copy_vec().