3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-11-09 15:47:29 +00:00

Fix typo in internalize_atom function

This commit is contained in:
Nikolaj Bjorner 2025-10-15 13:05:10 +02:00 committed by GitHub
parent a55d7b3a54
commit 9b7967dacf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -41,7 +41,7 @@ namespace smt {
bool theory_finite_set::internalize_atom(app * atom, bool gate_ctx) {
TRACE("finite_set", tout << "internalize_atom: " << mk_pp(atom, m) << "\n";);
itnernalize_term(atom);
internalize_term(atom);
// Track membership atoms (set.in)
expr* elem = nullptr, *set = nullptr;