3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-18 17:22:15 +00:00

remove unused

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-07-22 11:38:27 -07:00
parent 45855fce06
commit 71a32f5bb2
5 changed files with 5 additions and 4 deletions

View file

@ -544,7 +544,6 @@ namespace smt {
sort* elem_sort = nullptr, *seq_sort = nullptr;
VERIFY(u().is_re(r, seq_sort));
VERIFY(u().is_seq(seq_sort, elem_sort));
sort* domain[2] = { m.get_sort(n), a().mk_int() };
return sk().mk("re.first", n, a().mk_int(r->get_id()), elem_sort);
}
}

View file

@ -94,7 +94,9 @@ collect_induction_literals::collect_induction_literals(context& ctx, ast_manager
m(m),
vs(vs),
m_literal_index(0)
{}
{
(void)vs;
}
literal_vector collect_induction_literals::operator()() {
literal_vector candidates = pre_select();

View file

@ -8138,7 +8138,7 @@ namespace smt {
// Returns true if this can be done in a valid way, placing the converted value in the argument.
// Otherwise, returns false, if str is empty or contains non-digit characters.
bool theory_str::string_integer_conversion_valid(zstring str, rational& converted) const {
bool valid = true;
// bool valid = true;
converted = rational::zero();
rational ten(10);
if (str.length() == 0) {