3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-23 19:47:52 +00:00

loop counting

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2013-04-01 09:15:23 -07:00
parent fbb59453c3
commit 2e0c5f5042
2 changed files with 10 additions and 8 deletions

View file

@ -20,11 +20,14 @@ Revision History:
#define _DL_MK_LOOP_COUNTER_H_
#include"dl_rule_transformer.h"
#include"arith_decl_plugin.h"
namespace datalog {
class mk_loop_counter : public rule_transformer::plugin {
app_ref add_arg(ast_manager& m, app* fn, unsigned idx);
ast_manager& m;
arith_util a;
app_ref add_arg(app* fn, unsigned idx);
public:
mk_loop_counter(context & ctx, unsigned priority = 33000);
~mk_loop_counter();