MUQ  0.4.3
WorkGraphEdge.h
Go to the documentation of this file.
1 #ifndef WORKGRAPHEDGE_H_
2 #define WORKGRAPHEDGE_H_
3 
4 namespace muq {
5  namespace Modeling {
7  class WorkGraphEdge {
8  public:
9 
11 
15  WorkGraphEdge(unsigned int const outputDim, unsigned int const inputDim);
16 
18  const unsigned int outputDim;
19 
21  const unsigned int inputDim;
22 
23  private:
24 
25  };
26  } // namespace Modeling
27 } // namespace muq
28 
29 #endif
An edge in a muq::Modeling::WorkGraph.
Definition: WorkGraphEdge.h:7
const unsigned int outputDim
The output dimension.
Definition: WorkGraphEdge.h:18
const unsigned int inputDim
The input dimension.
Definition: WorkGraphEdge.h:21
WorkGraphEdge(unsigned int const outputDim, unsigned int const inputDim)
Create an edge for muq::Modeling::WorkGraph.