3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-10 01:05:47 +00:00

Z3 sources

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2012-10-02 11:35:25 -07:00
parent 3f9edad676
commit e9eab22e5c
1186 changed files with 381859 additions and 0 deletions

45
lib/theory_instgen.h Normal file
View file

@ -0,0 +1,45 @@
/*++
Copyright (c) 2011 Microsoft Corporation
Module Name:
theory_instgen.h
Abstract:
InstGen (iProver) style theory solver.
It provides an instantiation based engine
based on InstGen methods together with
unit propagation.
Author:
Krystof Hoder (t-khoder)
Nikolaj Bjorner (nbjorner) 2011-10-6
Revision History:
--*/
#ifndef _THEORY_INST_GEN_H_
#define _THEORY_INST_GEN_H_
#include "smt_theory.h"
#include "front_end_params.h"
namespace smt {
class theory_instgen : public theory {
public:
theory_instgen(family_id fid) : theory(fid) {}
virtual ~theory_instgen() {}
virtual void internalize_quantifier(quantifier* q) = 0;
virtual char const * get_name() const { return "instgen"; }
};
theory_instgen* mk_theory_instgen(ast_manager& m, front_end_params& p);
};
#endif /* _THEORY_INST_GEN_H_ */