mirror of
https://github.com/Z3Prover/z3
synced 2025-04-07 18:05:21 +00:00
40 lines
729 B
C++
40 lines
729 B
C++
/*++
|
|
Copyright (c) 2006 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
cost_parser.h
|
|
|
|
Abstract:
|
|
|
|
<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_ */
|
|
|