MultiAgentDecisionProcess  Release 0.2.1
qheur.cpp
Go to the documentation of this file.
1 
29 using namespace std;
30 
31 #include "qheur.h"
32 #include "E.h"
33 
34 std::string qheur::SoftPrint(Qheur_t Qheur)
35 {
36  switch(Qheur)
37  {
38  case(eQMDP):
39  return("QMDP");
40  case(eQPOMDP):
41  return("QPOMDP");
42  case(eQBG):
43  return("QBG");
44  case(eQMDPc):
45  return("QMDPc");
46  }
47 
48  throw(E("qheur::SoftPrint invalid type"));
49 
50  return("INVALIDQHEUR");
51 }
52