Coq versions compatibility: 8.10, 8.11, 8.12, 8.13.
- New
sauto
option shorthands:b:
,lb:
,qb:
,lqb:
, etc. - The
best
tactic which tries several variants ofsauto
in parallel. - Several variants of
sauto
tried in parallel as the preliminary tactic inhammer
. - Automatic ATP detection in
hammer
. - Proper handling of implicit arguments with
use:
. - Fixed issue #45.
Coq versions compatibility: 8.10, 8.11, 8.12.
- Proper argument parsing for the automated reasoning tactics. Change of tactic interface.
- Optional boolean reflection in
sauto
. - Hint databases can now be used with
sauto
. - Dependent elimination with
depelim
can now be optionally performed bysauto
(thedep:
option). - Simplifications for sigma-types in
sauto
. - Improvements of the
sauto
proof search procedure. - Better failure messages for the tactics.
- More readable dependency names (without extra qualifiers).
sauto
is now the preliminary tactic forhammer
.- Rudimentary MathComp support. New
make
targets:mathcomp
andinstall-mathcomp
. - Tutorial.
- Actions modulo head reduction.
- Better
sdestruct
behaviour with boolean comparisons. - The
f_equal
action. - A major speedup by removing superfluous rewrite hints.
- Speedup by using proper Coq API functions for term comparisons.
Coq versions compatibility: 8.10, 8.11.
- Fixed the "Anomaly" error upon
hammer
failure.
Coq versions compatibility: 8.10, 8.11.
- New reconstruction backend. The reconstruction tactics are now based on a reasonably general proof search procedure for the Calculus of Inductive Constructions and are more useful independently.
- Bugfixes in the
predict
program: now compiles with recent versions of GCC and works correctly on macOS.
Coq versions compatibility: 8.9, 8.10.
- Separate packaging of the plugin and the reconstruction tactics.
- Quick plugin and tactics tests which do not require ATP provers
installed (
make quicktest
,make test-plugin
,make test-tactics
). - Machine-learning features now take into account the polarity
(positive/negative) of symbol occurrences (
opt_feature_polarity
). - Opaqueness information now taken into account with constant unfolding.
Coq versions compatibility: 8.8, 8.9.
- CVC4 integration.
- Minimization of dependencies.
- Parallel invocation of proof tactics.
- More reliable timeout mechanism based on
fork
andwait
. - Improvements in the reconstruction tactics, more rewrite hints for
sauto
. - Change in reconstruction tactics interface. Tactics no longer need a list of hypotheses, and a different set of tactics is used.
- Improvements in the translation.
- Messages now more user-friendly.
predict
tactic.- Added
opam
support. - More consistent removal of temporary files.
- Debugging commands.
- Tests (
make tests
).
- Hashing of lifted-out terms.
- Type lifting (
opt_type_lifting
): hashing of types and lifting them out, e.g.,
forall f : nat -> nat, g : (nat -> nat) -> nat -> nat, ...
is translated to
forall f, T1(f) -> forall g, T2(g) -> ...
with axioms
forall f, T1(f) <-> forall x, nat(x) -> nat(f x)
forall g, T2(g) <-> forall h, T1(h) -> forall x, nat(x) -> nat(g h x)
instead of translating this to
forall f, (forall x, nat(x) -> nat(f x)) -> forall g, (forall h,
(forall x, nat(x) -> nat(h x))) -> forall x, nat(x) -> nat(g h x)) ->
...
Set
now collapsed toType
Coq versions compatibility: 8.6.
First full CoqHammer version.