MultiAgentDecisionProcess  Release 0.2.1
BayesianGameForDecPOMDPStageInterface.cpp
Go to the documentation of this file.
1 
30 using namespace std;
31 
32 //Default constructor
34  const PartialJointPolicyDiscretePure* pastJPol)
35  :
36  _m_t( pastJPol->GetDepth() )
37  ,_m_pJPol(pastJPol)
38 {
39 }
41  Index t)
42  :
43  _m_t( t )
44  ,_m_pJPol(0)
45 {
46 }
47 /*
48 //Copy constructor.
49 BayesianGameForDecPOMDPStageInterface::BayesianGameForDecPOMDPStageInterface(const BayesianGameForDecPOMDPStageInterface& o)
50 {
51 }
52 //Destructor
53 BayesianGameForDecPOMDPStageInterface::~BayesianGameForDecPOMDPStageInterface()
54 {
55 }
56 //Copy assignment operator
57 BayesianGameForDecPOMDPStageInterface& BayesianGameForDecPOMDPStageInterface::operator= (const BayesianGameForDecPOMDPStageInterface& o)
58 {
59  if (this == &o) return *this; // Gracefully handle self assignment
60  // Put the normal assignment duties here...
61 
62  return *this;
63 }
64 */
65 
66 
67