10 #include "normalize.hh"
11 #include "sigorderrules.hh"
18 * Implements a multiplicative term, a term of type
19 * k*x^n*y^m*... and its arithmetic
24 Tree fCoef; ///< constant part of the term (usually 1 or -1)
25 map<Tree,int> fFactors; ///< non constant terms and their power
28 mterm (); ///< create a 0 mterm
29 mterm (int k); ///< create a simple integer mterm
30 mterm (double k); ///< create a simple float mterm
31 mterm (Tree t); ///< create a mterm from a multiplicative exp
32 mterm (const mterm& m); ///< create a copy of a mterm
34 void cleanup(); ///< remove usued factors
35 bool isNotZero() const; ///< true if mterm doesn't represent number 0
36 bool isNegative() const; ///< true if mterm has a negative coefficient
38 const mterm& operator = (const mterm& m); ///< replace the content with a copy of m
40 const mterm& operator *= (Tree m); ///< multiply in place by a multiplicative exp
41 const mterm& operator /= (Tree m); ///< divide in place by a multiplicative exp
43 const mterm& operator += (const mterm& m); ///< add in place an mterm of same signature
44 const mterm& operator -= (const mterm& m); ///< add in place an mterm of same signature
46 const mterm& operator *= (const mterm& m); ///< multiply in place by a mterm
47 const mterm& operator /= (const mterm& m); ///< divide in place by a mterm
49 mterm operator * (const mterm& m) const; ///< mterms multiplication
50 mterm operator / (const mterm& m) const; ///< mterms division
51 ostream& print(ostream& dst) const; ///< print a mterm k*x1**n1*x2**n2...
53 int complexity() const; ///< return an evaluation of the complexity
54 Tree normalizedTree(bool sign=false,
55 bool neg=false) const; ///< return the normalized tree of the mterm
56 Tree signatureTree() const; ///< return a signature (a normalized tree)
58 bool hasDivisor (const mterm& n) const; ///< return true if this can be divided by n
59 friend mterm gcd (const mterm& m1, const mterm& m2); /// greatest common divisor of two mterms
62 inline ostream& operator << (ostream& s, const mterm& m) { return m.print(s); }