https://github.com/EasyCrypt/easycrypt
Revision 7bc73a4466ad80d82edfee0399acb2d9436be605 authored by Pierre-Yves Strub on 19 December 2017, 11:17:37 UTC, committed by Pierre-Yves Strub on 19 December 2017, 11:21:58 UTC
`solve` is a resolution tactics. Currently, it tries to (recursively)
close goals with the lemmas in the hint databases (in the same manner
as `done` with the `hint exact` database).

However, `solve` can be given hint databases names with the syntax:

  `solve (db1, db2, ...)`

The maximum depth of the resolution tree is controled by an optional
argument that comes first (`solve 2` for example). By default, the
depth is equal to 1.

Databases can be created using the 'hint solve' command:

    `hint solve $priority $dbname : lemma1 lemma2'.

where the priority is optional --- `solve` tries to solve goals
using lemmas with a lower $priority first.

`hint exact ...` is now an alias for `hint solve 0 ...`
1 parent 19c5eed
Raw File
Tip revision: 7bc73a4466ad80d82edfee0399acb2d9436be605 authored by Pierre-Yves Strub on 19 December 2017, 11:17:37 UTC
New tactic: solve
Tip revision: 7bc73a4
.dir-locals.el
((tuareg-mode .
   ((require-final-newline . t)
    (c-basic-offset . 2)
    (tab-width . 2)
    (indent-tabs-mode . nil)
    (eval . (add-hook 'write-contents-functions 'delete-trailing-whitespace)))))
 (easycrypt-mode .
   ((require-final-newline . t)
    (indent-tabs-mode . nil)))
back to top