Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gmalecha/coq-ltac-iter
Access hint databases from tactics.
https://github.com/gmalecha/coq-ltac-iter
Last synced: about 2 months ago
JSON representation
Access hint databases from tactics.
- Host: GitHub
- URL: https://github.com/gmalecha/coq-ltac-iter
- Owner: gmalecha
- License: mit
- Created: 2015-01-20T01:10:01.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2020-04-22T13:06:04.000Z (over 4 years ago)
- Last Synced: 2023-04-30T20:32:50.487Z (over 1 year ago)
- Language: Coq
- Homepage:
- Size: 23.4 KB
- Stars: 12
- Watchers: 4
- Forks: 3
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
coq-ltac-iter
=============A Coq plugin that provides a tactic that iterates over various collections of terms. For example,
```
Create HintDb my_lemmas.Hint Resolve lem1 lem2 : my_lemmas.
Ltac the_tactic :=
let k lem := idtac lem in
foreach [ db:my_lemmas ] k.
(* OUTPUT:
lem1
lem2
*)
```There are three versions of the iterator
- ```foreach [ .. ] k``` combines the invocations of ```k``` using ```;```
- ```first_of [ .. ] k``` combines the invocations of ```k``` in the same way a ```first```
- ```plus_of [ .. ] k``` combines the invocations of ```k``` using ```+```And there are several types of collections:
- ```*|-``` iterates premises bottom-to-top by default
- ```rev c``` reverses the iteration of ```c```
- ```db:h``` iterates the hints inside the hint database ```h```Bugs & Feature Requests
-----------------------
Please submit bugs and feature requests to the [github issue tracker](https://github.com/gmalecha/coq-ltac-iter/issues).Pull requests are also welcome.
Install from OPAM
-----------------
Make sure you added the [Coq repository](coq.io/opam/):opam repo add coq-released https://coq.inria.fr/opam/released
and run:
opam install coq-ltac-iter
Install Manually
----------------
You can run:make install
to install this ltac-iter.