@@ -125,7 +125,7 @@ validate_string_literal(const irept &parse_tree)
125
125
// / \note: Because this kind of response does not start with an identifying
126
126
// / keyword, it will be considered that the response is intended to be a
127
127
// / get-value response if it is composed of a collection of one or more pairs.
128
- static optionalt <response_or_errort<smt_responset>>
128
+ static std::optional <response_or_errort<smt_responset>>
129
129
valid_smt_error_response (const irept &parse_tree)
130
130
{
131
131
// Check if the parse tree looks to be an error response.
@@ -162,7 +162,7 @@ static bool all_subs_are_pairs(const irept &parse_tree)
162
162
163
163
// / Checks for valid bit vector constants of the form `(_ bv(value) (width))`
164
164
// / for example - `(_ bv4 64)`.
165
- static optionalt <smt_termt>
165
+ static std::optional <smt_termt>
166
166
valid_smt_indexed_bit_vector (const irept &parse_tree)
167
167
{
168
168
if (parse_tree.get_sub ().size () != 3 )
@@ -189,7 +189,7 @@ valid_smt_indexed_bit_vector(const irept &parse_tree)
189
189
return smt_bit_vector_constant_termt{value, bit_width};
190
190
}
191
191
192
- static optionalt <smt_termt> valid_smt_bool (const irept &parse_tree)
192
+ static std::optional <smt_termt> valid_smt_bool (const irept &parse_tree)
193
193
{
194
194
if (!parse_tree.get_sub ().empty ())
195
195
return {};
@@ -200,7 +200,7 @@ static optionalt<smt_termt> valid_smt_bool(const irept &parse_tree)
200
200
return {};
201
201
}
202
202
203
- static optionalt <smt_termt> valid_smt_binary (const std::string &text)
203
+ static std::optional <smt_termt> valid_smt_binary (const std::string &text)
204
204
{
205
205
static const std::regex binary_format{" #b[01]+" };
206
206
if (!std::regex_match (text, binary_format))
@@ -211,7 +211,7 @@ static optionalt<smt_termt> valid_smt_binary(const std::string &text)
211
211
return {smt_bit_vector_constant_termt{value, width}};
212
212
}
213
213
214
- static optionalt <smt_termt> valid_smt_hex (const std::string &text)
214
+ static std::optional <smt_termt> valid_smt_hex (const std::string &text)
215
215
{
216
216
static const std::regex hex_format{" #x[0-9A-Za-z]+" };
217
217
if (!std::regex_match (text, hex_format))
@@ -225,7 +225,7 @@ static optionalt<smt_termt> valid_smt_hex(const std::string &text)
225
225
return {smt_bit_vector_constant_termt{value, width}};
226
226
}
227
227
228
- static optionalt <smt_termt>
228
+ static std::optional <smt_termt>
229
229
valid_smt_bit_vector_constant (const irept &parse_tree)
230
230
{
231
231
if (const auto indexed = valid_smt_indexed_bit_vector (parse_tree))
@@ -240,7 +240,7 @@ valid_smt_bit_vector_constant(const irept &parse_tree)
240
240
return {};
241
241
}
242
242
243
- static optionalt <response_or_errort<smt_termt>> try_select_validation (
243
+ static std::optional <response_or_errort<smt_termt>> try_select_validation (
244
244
const irept &parse_tree,
245
245
const std::unordered_map<irep_idt, smt_identifier_termt> &identifier_table)
246
246
{
@@ -321,7 +321,7 @@ validate_valuation_pair(
321
321
// / \note: Because this kind of response does not start with an identifying
322
322
// / keyword, it will be considered that the response is intended to be a
323
323
// / get-value response if it is composed of a collection of one or more pairs.
324
- static optionalt <response_or_errort<smt_responset>>
324
+ static std::optional <response_or_errort<smt_responset>>
325
325
valid_smt_get_value_response (
326
326
const irept &parse_tree,
327
327
const std::unordered_map<irep_idt, smt_identifier_termt> &identifier_table)
0 commit comments