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
.gitignore
*~
_build
*.native
*.byte
*.exe
*.pyc
*.pyo
.vagrant
/local
/why3
/_tools
/proofgeneral/_local
setup.data
setup.log
/attic
/attic.ec*
/theories/attic

/system/*.o
/system/callprover
/system/callprover.exe

*.aux
*.bbl
*.blg
*.brf
*.fdb_latexmk
*.fls
*.idx
*.ilg
*.ind
*.log
*.out
*.toc
*.synctex.gz
*.kilepr

/src/ecVersion.ml

/doc/refman/easycrypt.pdf
/doc/userman/easycrypt.pdf

/extraction/Makefile
/extraction/setup.*
/extraction/configure
/extraction/_build/

/sandbox
/attic

/*.ec

/*.smt
/*.why
back to top