00001 #ifndef MOMDPLite_H 00002 #define MOMDPLite_H 00003 00004 #include <string> 00005 00006 #include "MOMDP.h" 00007 #include "StateTransitionY.h" 00008 using namespace std; 00009 using namespace momdp; 00010 namespace momdp 00011 { 00012 class MOMDPLite : public MOMDP 00013 { 00014 public: 00015 MOMDPLite(void); 00016 virtual ~MOMDPLite(void); 00017 00018 StateTransitionY* YTrans; 00019 00020 static MOMDPLite* LoadProbem(string problemName) 00021 { 00022 return NULL; 00023 } 00024 }; 00025 } 00026 #endif