Basic Polynomial Algebra Subprograms (BPAS)  v. 1.791
BPASZeroDimRegularChain.hpp
1 
2 
3 #ifndef _BPAS_ZERODIM_REGCHAIN_H_
4 #define _BPAS_ZERODIM_REGCHAIN_H_
5 
6 #include "BPASRegularChain.hpp"
7 
8 /**
9  * An abstract class defining the interface of a zero-dimensional regular chain.
10  */
11 template <class Field, class RecursiveFieldPoly>
12 class BPASZeroDimensionalRegularChain : public virtual BPASRegularChain<Field,RecursiveFieldPoly>
13 {
14  public:
15 
18 };
19 
20 #endif
An abstract class defining the interface of a zero-dimensional regular chain.
Definition: BPASZeroDimRegularChain.hpp:12
An abstract class defining the interface of a regular chain.
Definition: BPASRegularChain.hpp:11