3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-24 12:07:52 +00:00
This commit is contained in:
Nikolaj Bjorner 2022-01-16 19:11:55 -08:00
parent 637ddf9397
commit a15da8f9ba
4 changed files with 13 additions and 0 deletions

View file

@ -95,6 +95,11 @@ namespace euf {
\brief conclude model building
*/
virtual void finalize_model(model& mdl) {}
/**
* \brief does solver have an unhandled function.
*/
virtual bool has_unhandled() const { return false; }
};
class th_solver : public sat::extension, public th_model_builder, public th_decompile, public th_internalizer {