1 #ifndef SUBSTITUTE_H_INCLUDED
2 #define SUBSTITUTE_H_INCLUDED
3 
4 #include "polynomial.h"
5 #include "matrix.h"
6 
7 Polynomial multiplicativeChange(Polynomial const &p, IntegerMatrix const &mat);//marking not preserved
8 PolynomialSet multiplicativeChange(PolynomialSet const &g, IntegerMatrix const &mat);//markings not preserved
9 
10 #endif
11