3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

Update smt_context.cpp

This commit is contained in:
Nikolaj Bjorner 2021-10-12 17:10:12 -07:00
parent c15968aa9e
commit 96e117d78c

View file

@ -1546,6 +1546,7 @@ namespace smt {
void context::get_specrels(func_decl_set& rels) const {
family_id fid = m.get_family_id("specrels");
theory* th = get_theory(fid);
if (th)
dynamic_cast<theory_special_relations*>(th)->get_specrels(rels);
}