mirror of
https://github.com/Z3Prover/z3
synced 2025-05-08 08:15:47 +00:00
working on new parameter framework
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
be5f933201
commit
589f096e6e
36 changed files with 436 additions and 377 deletions
|
@ -55,6 +55,8 @@ namespace smt2 {
|
|||
svector<char> m_cache;
|
||||
svector<char> m_cache_result;
|
||||
|
||||
bool m_smtlib2_compliant;
|
||||
|
||||
char curr() const { return m_curr; }
|
||||
void new_line() { m_line++; m_spos = 0; }
|
||||
void next();
|
||||
|
@ -74,7 +76,7 @@ namespace smt2 {
|
|||
EOF_TOKEN
|
||||
};
|
||||
|
||||
scanner(cmd_context & ctx, std::istream& stream, bool interactive = false);
|
||||
scanner(cmd_context & ctx, std::istream& stream, bool interactive = false, params_ref const & p = params_ref());
|
||||
|
||||
~scanner() {}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue