All Downloads are FREE. Search and download functionalities are using the official Maven repository.

z3-z3-4.13.0.src.smt.smt_model_finder.h Maven / Gradle / Ivy

The newest version!
/*++
Copyright (c) 2006 Microsoft Corporation

Module Name:

    smt_model_finder.h

Abstract:

    Model finding goodies for universally quantified formulas.
    
    During the search, the finder store information about the quantifiers
    that are internalized. In an ideal world, quantifiers are only internalized
    at base level.

    Given a satisfiable ground formula, Z3 will restrict the interpretation
    of uninterpreted functions in a finite subset of its domain.
    The model finder tries to produce a complete interpretation that will
    also satisfy all universally quantified formulas.

    During model construction, the model finder will complete the interpretation
    of uninterpreted functions by propagating basic constraints induced by the
    body of universally quantified formulas.
    
    More information can be found in the following papers:

    - Complete instantiation for quantified SMT formulas, Yeting Ge
      and Leonardo de Moura, Conference on Computer Aided Verification
      (CAV 2009), Grenoble, France, 2009.

    - Efficiently Solving Quantified Bit-Vector Formula, Christoph
      Wintersteiger, Youssef Hamadi and Leonardo de Moura, FMCAD,
      Lugano, Switzerland, 2010.

    - Bugs, Moles and Skeletons: Symbolic Reasoning for Software
      Development, Leonardo de Moura, Nikolaj Bjorner, IJCAR,
      Edinburgh, Scotland, 2010.

Author:

    Leonardo de Moura (leonardo) 2010-12-17.

Revision History:

--*/
#pragma once

#include "ast/ast.h"
#include "ast/func_decl_dependencies.h"
#include "model/model_macro_solver.h"
#include "smt/proto_model/proto_model.h"
#include "tactic/tactic_exception.h"

class model_instantiation_set;

namespace smt {
    class context;
    
    namespace mf {
        class quantifier_info;
        class quantifier_analyzer;
        class auf_solver;
        class simple_macro_solver;
        class hint_solver;
        class non_auf_macro_solver;  
        class instantiation_set;
    };
        
    class model_finder : public quantifier2macro_infos {
        typedef mf::quantifier_analyzer        quantifier_analyzer;
        typedef mf::quantifier_info            quantifier_info;
        typedef mf::auf_solver                 auf_solver;
        typedef mf::instantiation_set          instantiation_set;

        ast_manager &                          m;
        context *                              m_context;
        scoped_ptr        m_analyzer;
        scoped_ptr                 m_auf_solver;
        obj_map m_q2info;
        ptr_vector                 m_quantifiers;
        func_decl_dependencies                 m_dependencies;
        
        struct scope {
            unsigned                           m_quantifiers_lim;
        };
        
        svector                         m_scopes;
        
        expr_ref_vector                        m_new_constraints; // new constraints for fresh constants created by the model finder

        void restore_quantifiers(unsigned old_size);
        quantifier_info * get_quantifier_info(quantifier * q);
        void collect_relevant_quantifiers(ptr_vector & qs) const;
        void cleanup_quantifier_infos(ptr_vector const & qs);
        void process_simple_macros(ptr_vector & qs, ptr_vector & residue, proto_model * m);
        void process_hint_macros(ptr_vector & qs, ptr_vector & residue, proto_model * m);
        void process_non_auf_macros(ptr_vector & qs, ptr_vector & residue, proto_model * m);
        void process_auf(ptr_vector const & qs, proto_model * m);
        instantiation_set const * get_uvar_inst_set(quantifier * q, unsigned i);
        void checkpoint();


    public:
        model_finder(ast_manager & m);
        ~model_finder() override;
        void set_context(context * ctx);
        
        void register_quantifier(quantifier * q);
        void push_scope();
        void pop_scope(unsigned num_scopes);
        void reset();
        void init_search_eh();
        void fix_model(proto_model * m);

        quantifier * get_flat_quantifier(quantifier * q);
        expr * get_inv(quantifier * q, unsigned i, expr * val, unsigned & generation);
        bool restrict_sks_to_inst_set(context * aux_ctx, quantifier * q, expr_ref_vector const & sks);

        void restart_eh();

        void checkpoint(char const* component);

        quantifier_macro_info* operator()(quantifier* q) override;

    };
};





© 2015 - 2024 Weber Informatics LLC | Privacy Policy