Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/coq-community/reduction-effects
A Coq plugin to add reduction side effects to some Coq reduction strategies [maintainers=@liyishuai,@JasonGross]
https://github.com/coq-community/reduction-effects
coq coq-ci coq-plugin side-effects
Last synced: 2 months ago
JSON representation
A Coq plugin to add reduction side effects to some Coq reduction strategies [maintainers=@liyishuai,@JasonGross]
- Host: GitHub
- URL: https://github.com/coq-community/reduction-effects
- Owner: coq-community
- License: mpl-2.0
- Created: 2017-06-04T18:15:28.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-10-30T13:24:38.000Z (3 months ago)
- Last Synced: 2024-10-30T14:32:28.691Z (3 months ago)
- Topics: coq, coq-ci, coq-plugin, side-effects
- Language: Makefile
- Homepage:
- Size: 62.5 KB
- Stars: 6
- Watchers: 8
- Forks: 6
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Reduction Effects
[![Docker CI][docker-action-shield]][docker-action-link]
[![Contributing][contributing-shield]][contributing-link]
[![Code of Conduct][conduct-shield]][conduct-link]
[![Zulip][zulip-shield]][zulip-link][docker-action-shield]: https://github.com/coq-community/reduction-effects/actions/workflows/docker-action.yml/badge.svg?branch=master
[docker-action-link]: https://github.com/coq-community/reduction-effects/actions/workflows/docker-action.yml[contributing-shield]: https://img.shields.io/badge/contributions-welcome-%23f7931e.svg
[contributing-link]: https://github.com/coq-community/manifesto/blob/master/CONTRIBUTING.md[conduct-shield]: https://img.shields.io/badge/%E2%9D%A4-code%20of%20conduct-%23f15a24.svg
[conduct-link]: https://github.com/coq-community/manifesto/blob/master/CODE_OF_CONDUCT.md[zulip-shield]: https://img.shields.io/badge/chat-on%20zulip-%23c1272d.svg
[zulip-link]: https://coq.zulipchat.com/#narrow/stream/237663-coq-community-devs.20.26.20users## Meta
- Author(s):
- Hugo Herbelin (initial)
- Coq-community maintainer(s):
- Yishuai Li ([**@liyishuai**](https://github.com/liyishuai))
- Jason Gross ([**@JasonGross**](https://github.com/JasonGross))
- License: [Mozilla Public License 2.0](LICENSE)
- Compatible Coq versions: Coq 8.10 or later
- Additional dependencies:
- [Cppo](https://github.com/ocaml-community/cppo)
- Coq namespace: `ReductionEffect`
- Related publication(s): none## Building and installation instructions
The easiest way to install the latest released version of Reduction Effects
is via [OPAM](https://opam.ocaml.org/doc/Install.html):```shell
opam repo add coq-released https://coq.inria.fr/opam/released
opam install coq-reduction-effects
```To instead build and install manually, do:
``` shell
git clone https://github.com/coq-community/reduction-effects.git
cd reduction-effects
make # or make -j
make install
```