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
.travis.yml
sudo: required
dist: trusty
language: ocaml
branches:
  only:
  - 1.0
  - /^deploy-.*$/
services:
- docker
env:
- TARGETS=build
- TARGETS=check
- TARGETS=examples
notifications:
  email:
  - tracker@easycrypt.info
before_install:
- docker pull easycryptpa/ec-build-box
after_failure:
- >-
  [ -f report.log ] && curl -sT report.log http://chunk.io/
script:
- >-
  docker run -v $PWD:/home/ci/easycrypt easycryptpa/ec-build-box
  sh -c "git clone easycrypt easycrypt.dev && cd easycrypt.dev && opam config exec -- make ${TARGETS}"
back to top