MultiAgentDecisionProcess  Release 0.2.1
ProblemType.cpp
Go to the documentation of this file.
1 
28 #include "ProblemType.h"
29 
30 using namespace std;
31 
32 namespace ProblemType
33 {
34  string SoftPrint(Problem_t t)
35  {
36  switch(t)
37  {
38  case(PARSE):return("Parsed problem");
39  case(FF): return("Fire Fighting");
40  case(DT): return("Dec-Tiger");
41  default: return("Unrecognized ProblemType !");
42  }
43 
44 
45  }
46 };
47