MultiAgentDecisionProcess  Release 0.2.1
PartialJointPolicyDiscretePure.h
Go to the documentation of this file.
1 
28 /* Only include this header file once. */
29 #ifndef _PARTIALJOINTPOLICYDISCRETEPURE_H_
30 #define _PARTIALJOINTPOLICYDISCRETEPURE_H_ 1
31 
32 /* the include directives */
33 #include "Globals.h"
35 #include "PartialJointPolicy.h"
36 
40  //virtual <- this leads to pain in the ass...
42  , public PartialJointPolicy
43 {
44  private:
45 
46  protected:
47 
48  public:
49  // Constructor, destructor and copy assignment.
52  {};
56  double pastReward = 0.0
57  )
58  : JointPolicyDiscretePure(pu, idc)
59  ,PartialJointPolicy(pastReward)
60  {};
63  :
66  {};
68  //~PartialJointPolicyDiscretePure();
70  virtual PartialJointPolicyDiscretePure& operator=
72  //operators:
73 
74  //data manipulation (set) functions:
75 
76  //get (data) functions:
77 };
78 
79 
80 #endif /* !_PARTIALJOINTPOLICYDISCRETEPURE_H_ */
81 
82 // Local Variables: ***
83 // mode:c++ ***
84 // End: ***