MultiAgentDecisionProcess  Release 0.2.1
BGIP_SolverType.h
Go to the documentation of this file.
1 
28 #ifndef _BG_SOLVER_TYPE_H_
29 #define _BG_SOLVER_TYPE_H_ 1
30 
31 #include <string>
32 
33 namespace BGIP_SolverType {
34 
36  BFS, AM,
38  };
39  const std::string BGIP_SolverNames[] = {
40  "BGIP_Solver-BFS",
41  "BGIP_Solver-AM",
42  "BGIP_Solver-Random",
43  };
44  std::string SoftPrint(BGIP_Solver_t type);
45  const size_t NUMBER_OF_BGIP_SOLVER_TYPES = 4;
46 
47 }
48 
49 #endif /* !_BG_SOLVER_TYPE_H_*/