blob: 704157d9dcd8442a41b6171671e1d11fb1979f08 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
/*****************************************************************************/
/*!
* \file parser_temp.h
*
* Author: Sergey Berezin
*
* Created: Wed Feb 5 17:53:02 2003
*
* <hr>
*
* License to use, copy, modify, sell and/or distribute this software
* and its documentation for any purpose is hereby granted without
* royalty, subject to the terms and conditions defined in the \ref
* LICENSE file provided with this distribution.
*
* <hr>
*
* A class used to communicate with the actual parser. No one else
* should use it.
*/
/*****************************************************************************/
#ifndef _cvc3__parser_temp_h_
#define _cvc3__parser_temp_h_
#include "expr/Parser.h"
#include <sstream>
#include <vector>
namespace CVC3 {
class ParserTemp {
private:
// Counter for uniqueID of bound variables
int d_uid;
// The main prompt when running interactive
std::string prompt1;
// The interactive prompt in the middle of a multi-line command
std::string prompt2;
// The currently used prompt
std::string prompt;
public:
std::istream* is;
// The current input line
int lineNum;
// File name
std::string fileName;
// The last parsed Expr
klee::expr::ExprHandle expr;
// Whether we are done or not
bool done;
// Whether we are running interactive
bool interactive;
// Whether arrays are enabled for smt-lib format
bool arrFlag;
// Whether bit-vectors are enabled for smt-lib format
bool bvFlag;
// Size of bit-vectors for smt-lib format
int bvSize;
// Did we encounter a formula query (smtlib)
bool queryParsed;
// Default constructor
ParserTemp() : d_uid(0), prompt1("CVC> "), prompt2("- "),
prompt("CVC> "), lineNum(1), done(false), arrFlag(false), queryParsed(false) { }
// Parser error handling (implemented in parser.cpp)
int error(const std::string& s);
// Get the next uniqueID as a string
std::string uniqueID() {
std::ostringstream ss;
ss << d_uid++;
return ss.str();
}
// Get the current prompt
std::string getPrompt() { return prompt; }
// Set the prompt to the main one
void setPrompt1() { prompt = prompt1; }
// Set the prompt to the secondary one
void setPrompt2() { prompt = prompt2; }
};
} // end of namespace CVC3
#endif
|