Basic Polynomial Algebra Subprograms (BPAS)  v. 1.791
BPASRationalFunction.hpp
1 
2 #ifndef _BPAS_RATFUNC_H_
3 #define _BPAS_RATFUNC_H_
4 
5 #include "../Ring/BPASFieldOfFractions.hpp"
6 
7 
8 /**
9  * An abstract class defining the interface of a rational function. Domain
10  * should be BPASGCDDomain.
11  */
12 template <class Domain, class Derived>
13 class BPASRationalFunction : public virtual BPASFieldOfFractions<Domain, Derived> {
14 
15 };
16 
17 
18 #endif
An abstract class defining the interface of a field of fractions.
Definition: BPASFieldOfFractions.hpp:16
An abstract class defining the interface of a rational function.
Definition: BPASRationalFunction.hpp:13