4
4
5
5
#include < util/invariant.h>
6
6
7
- static void validate_bit_vector_predicate_arguments (
7
+ static void validate_bit_vector_operator_arguments (
8
8
const smt_termt &left,
9
9
const smt_termt &right)
10
10
{
@@ -23,7 +23,7 @@ static void validate_bit_vector_predicate_arguments(
23
23
void smt_bit_vector_theoryt::the_name##t::validate( \
24
24
const smt_termt &left, const smt_termt &right) \
25
25
{ \
26
- validate_bit_vector_predicate_arguments (left, right); \
26
+ validate_bit_vector_operator_arguments (left, right); \
27
27
} \
28
28
\
29
29
smt_sortt smt_bit_vector_theoryt::the_name##t::return_sort( \
@@ -59,7 +59,7 @@ void smt_bit_vector_theoryt::addt::validate(
59
59
const smt_termt &lhs,
60
60
const smt_termt &rhs)
61
61
{
62
- validate_bit_vector_predicate_arguments (lhs, rhs);
62
+ validate_bit_vector_operator_arguments (lhs, rhs);
63
63
}
64
64
65
65
const smt_function_application_termt::factoryt<smt_bit_vector_theoryt::addt>
@@ -81,7 +81,7 @@ void smt_bit_vector_theoryt::subtractt::validate(
81
81
const smt_termt &lhs,
82
82
const smt_termt &rhs)
83
83
{
84
- validate_bit_vector_predicate_arguments (lhs, rhs);
84
+ validate_bit_vector_operator_arguments (lhs, rhs);
85
85
}
86
86
87
87
const smt_function_application_termt::factoryt<
@@ -104,7 +104,7 @@ void smt_bit_vector_theoryt::multiplyt::validate(
104
104
const smt_termt &lhs,
105
105
const smt_termt &rhs)
106
106
{
107
- validate_bit_vector_predicate_arguments (lhs, rhs);
107
+ validate_bit_vector_operator_arguments (lhs, rhs);
108
108
}
109
109
110
110
const smt_function_application_termt::factoryt<
@@ -127,7 +127,7 @@ void smt_bit_vector_theoryt::unsigned_dividet::validate(
127
127
const smt_termt &lhs,
128
128
const smt_termt &rhs)
129
129
{
130
- validate_bit_vector_predicate_arguments (lhs, rhs);
130
+ validate_bit_vector_operator_arguments (lhs, rhs);
131
131
}
132
132
133
133
const smt_function_application_termt::factoryt<
@@ -150,7 +150,7 @@ void smt_bit_vector_theoryt::signed_dividet::validate(
150
150
const smt_termt &lhs,
151
151
const smt_termt &rhs)
152
152
{
153
- validate_bit_vector_predicate_arguments (lhs, rhs);
153
+ validate_bit_vector_operator_arguments (lhs, rhs);
154
154
}
155
155
156
156
const smt_function_application_termt::factoryt<
@@ -173,7 +173,7 @@ void smt_bit_vector_theoryt::unsigned_remaindert::validate(
173
173
const smt_termt &lhs,
174
174
const smt_termt &rhs)
175
175
{
176
- validate_bit_vector_predicate_arguments (lhs, rhs);
176
+ validate_bit_vector_operator_arguments (lhs, rhs);
177
177
}
178
178
179
179
const smt_function_application_termt::factoryt<
@@ -196,7 +196,7 @@ void smt_bit_vector_theoryt::signed_remaindert::validate(
196
196
const smt_termt &lhs,
197
197
const smt_termt &rhs)
198
198
{
199
- validate_bit_vector_predicate_arguments (lhs, rhs);
199
+ validate_bit_vector_operator_arguments (lhs, rhs);
200
200
}
201
201
202
202
const smt_function_application_termt::factoryt<
0 commit comments