(Event+Time).Variant Operators  2.3
Operators for Timed Discrete Event Systems in Dioids
FactoryPoly.h
1 #pragma once
2 #include "factoryT.h"
3 #include "../../etvo/wrapperMMGD/polyWrapper.h"
4 
5 namespace etvo
6 {
7  class FactoryPoly :public Factory<etvo::poly>
8  {
9  private:
10  unsigned int _nbTerms;
11  etvo::gd _offset;
12  bool _fixedOffset;
13  int _range;
14  int _gap;
15  public:
16  FactoryPoly(unsigned int nbTerms,int gap=5,bool fixedOff=true,const etvo::gd & off=gd(0,0),int range=0);
17  ~FactoryPoly();
18 
19  virtual etvo::poly create() const;
20  };
21 
22 }
Definition: etvoException.cpp:5
Definition: factoryT.h:13
Definition: FactoryPoly.h:7
Wrapper class to mmgd::gd from MinMaxGD library.
Definition: gdWrapper.h:36
Wrapper class to mmgd::poly from from MinMaxGD library.
Definition: polyWrapper.h:34