MultiAgentDecisionProcess
Release 0.2.1
Main Page
Namespaces
Classes
Files
File List
File Members
BayesianGameForDecPOMDPStageInterface.cpp
Go to the documentation of this file.
1
28
#include "
BayesianGameForDecPOMDPStageInterface.h
"
29
#include "
PartialJointPolicyDiscretePure.h
"
30
using namespace
std;
31
32
//Default constructor
33
BayesianGameForDecPOMDPStageInterface::BayesianGameForDecPOMDPStageInterface
(
34
const
PartialJointPolicyDiscretePure
* pastJPol)
35
:
36
_m_t( pastJPol->GetDepth() )
37
,_m_pJPol(pastJPol)
38
{
39
}
40
BayesianGameForDecPOMDPStageInterface::BayesianGameForDecPOMDPStageInterface
(
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
src
planning
BayesianGameForDecPOMDPStageInterface.cpp
Generated on Mon Sep 23 2013 14:50:05 for MultiAgentDecisionProcess by
1.8.1.2