Charades
factory.h
1 #ifndef FACTORY_H_
2 #define FACTORY_H_
3 
7 class LPFactory {
8  public:
10  virtual LPBase* create_lp(uint64_t gid) const = 0;
11 };
12 
13 #endif
virtual LPBase * create_lp(uint64_t gid) const =0
Creates the LP associated with global id gid.
Base class which defines the factory interface used during simulation setup.
Definition: factory.h:7
Non-templated base class for LP, so that the simulator can deal with a single LP base type...
Definition: lp.h:265