MultiAgentDecisionProcess  Release 0.2.1
PartialJointPolicy.cpp
Go to the documentation of this file.
1 
28 #include "PartialJointPolicy.h"
29 
30 using namespace std;
31 
32 //Copy assignment operator
34 {
35  if (this == &o) return *this; // Gracefully handle self assignment
36  // Put the normal assignment duties here...
37 
38  _m_pastReward = o._m_pastReward;
39  return *this;
40 }