/*++ Copyright (c) 2006 Microsoft Corporation Module Name: cost_parser.h Abstract: Author: Leonardo de Moura (leonardo) 2008-06-14. Revision History: --*/ #ifndef _COST_PARSER_H_ #define _COST_PARSER_H_ #include"simple_parser.h" #include"arith_decl_plugin.h" class cost_parser : public simple_parser { arith_util m_util; var_ref_vector m_vars; public: cost_parser(ast_manager & m); virtual ~cost_parser() {} virtual expr * parse_int(rational const & r); virtual expr * parse_float(rational const & r); unsigned add_var(symbol name); unsigned add_var(char const * name) { return add_var(symbol(name)); } void reset_vars(); }; #endif /* _COST_PARSER_H_ */