MultiAgentDecisionProcess  Release 0.2.1
JESPtype.cpp
Go to the documentation of this file.
1 
29 using namespace std;
30 
31 #include "JESPtype.h"
32 #include "E.h"
33 
34 std::string JESPtype::SoftPrint(JESP_t type)
35 {
36  switch(type)
37  {
38  case JESPExhaustive:
39  return("JESPExh");
40  break;
41  case JESPDP:
42  return("JESPDP");
43  break;
44  }
45 
46  throw(E("JESPtype::SoftPrint invalid type"));
47 
48  return("INVALID_JESP_TYPE");
49 }