3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 03:45:51 +00:00

Further refactoring ackermannization.

This commit is contained in:
mikolas 2016-02-03 17:26:58 +00:00
parent 2679b74543
commit f3240024e7
20 changed files with 1621 additions and 0 deletions

View file

@ -0,0 +1,29 @@
/*++
Copyright (c) 2016 Microsoft Corporation
Module Name:
ackr_bound_probe.h
Abstract:
A probe to give an upper bound of Ackermann congruence lemmas that a formula might generate.
Author:
Mikolas Janota
Revision History:
--*/
#ifndef ACKR_BOUND_PROBE_H_
#define ACKR_BOUND_PROBE_H_
#include"probe.h"
probe * mk_ackr_bound_probe();
/*
ADD_PROBE("ackr-bound-probe", "A probe to give an upper bound of Ackermann congruence lemmas that a formula might generate.", "mk_ackr_bound_probe()")
*/
#endif /* ACKR_BOUND_PROBE_H_ */