1 #ifndef GENERICWALK_H_INCLUDED
2 #define GENERICWALK_H_INCLUDED
3 
4 #include "vektor.h"
5 #include "polynomial.h"
6 #include "termorder.h"
7 
8 IntegerVectorList::const_iterator shootGenericRay(IntegerVectorList const &g, const TermOrder &source, const TermOrder &target);
9 PolynomialSet genericWalk(PolynomialSet const &start, const TermOrder &source, const TermOrder &target);
10 PolynomialSet genericWalkPerturbation(PolynomialSet const &start, const TermOrder &source, const TermOrder &target, int sourceDegree, int targetDegree);
11 
12 #endif
13