3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-22 05:43:39 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-04-13 16:15:32 -07:00
parent a27f083177
commit 1123b47fb7
13 changed files with 613 additions and 4 deletions

View file

@ -0,0 +1,43 @@
/*++
Copyright (c) 2006 Microsoft Corporation
Module Name:
theory_array_bapa.h
Abstract:
<abstract>
Author:
Nikolaj Bjorner 2019-04-13
Revision History:
--*/
#ifndef THEORY_ARRAY_BAPA_H_
#define THEORY_ARRAY_BAPA_H_
#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_size(app* term);
final_check_status final_check();
void init_model();
};
};
#endif /* THEORY_ARRAY_BAPA_H_ */