00001 /************************************************************ 00002 *File: Parser.cc 00003 *Date: 19/03/2006 00004 *Brief: for parsing pomdp files into pomdp objects and 00005 * converting resulting alpha plane structures into 00006 * policy files 00007 *************************************************************/ 00008 00009 #include "Parser.h" 00010 00011 using namespace std; 00012 using namespace momdp; 00013 00014 namespace momdp{ 00015 //constructor 00016 Parser::Parser(void) 00017 { 00018 } 00019 00020 //methods 00021 POMDP* Parser::parse(string probName, bool useFastParser) 00022 { 00023 return new POMDP(probName, useFastParser); 00024 }//end parse 00025 };