3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-15 13:28:47 +00:00
z3/src/smt/theory_array_bapa.h
Nikolaj Bjorner d0e20e44ff booyah
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2020-07-04 15:56:30 -07:00

44 lines
702 B
C++

/*++
Copyright (c) 2019 Microsoft Corporation
Module Name:
theory_array_bapa.h
Abstract:
<abstract>
Author:
Nikolaj Bjorner 2019-04-13
Revision History:
--*/
#pragma once
#include "ast/ast.h"
#include "smt/smt_theory.h"
namespace smt {
class theory_array_full;
class theory_array_bapa {
class imp;
imp* m_imp;
public:
theory_array_bapa(theory_array_full& th);
~theory_array_bapa();
void internalize_term(app* term);
final_check_status final_check();
void init_model();
bool should_research(expr_ref_vector & unsat_core);
void add_theory_assumptions(expr_ref_vector & assumptions);
};
};