monomials.h
Go to the documentation of this file.
1 
7 #ifndef SYMENGINE_MONOMIALS_H
8 #define SYMENGINE_MONOMIALS_H
9 
10 #include <symengine/basic.h>
11 
12 namespace SymEngine
13 {
15 void monomial_mul(const vec_int &A, const vec_int &B, vec_int &C);
16 
17 } // namespace SymEngine
18 
19 #endif
The base class for SymEngine.
Main namespace for SymEngine package.
Definition: add.cpp:19
void monomial_mul(const vec_int &A, const vec_int &B, vec_int &C)
Monomial multiplication.
Definition: monomials.cpp:7