]> www.ginac.de Git - ginac.git/blob - ginac/polynomial/chinrem_gcd.h
6c58a9fd4a6f286934c4e7303749feef84e4e10d
[ginac.git] / ginac / polynomial / chinrem_gcd.h
1 #ifndef GINAC_CHINREM_GCD_H
2 #define GINAC_CHINREM_GCD_H
3 #include "ex.h"
4
5 namespace GiNaC
6 {
7
8 extern ex chinrem_gcd(const ex& A_, const ex& B_, const exvector& vars);
9 extern ex chinrem_gcd(const ex& A, const ex& B);
10
11 struct chinrem_gcd_failed
12 {
13         virtual ~chinrem_gcd_failed() { }
14 };
15
16 }
17
18 #endif /* GINAC_CHINREM_GCD_H */
19