MultiAgentDecisionProcess  Release 0.2.1
PartialJointPolicyDiscretePure.cpp
Go to the documentation of this file.
1 
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...
39 
40  return *this;
41 }