Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/motrellin/dice-partitions
https://github.com/motrellin/dice-partitions
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/motrellin/dice-partitions
- Owner: motrellin
- License: bsd-3-clause
- Created: 2024-08-14T16:45:58.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-14T19:41:21.000Z (5 months ago)
- Last Synced: 2024-08-15T19:10:57.352Z (5 months ago)
- Language: Coq
- Homepage: https://motrellin.github.io/dice-partitions/
- Size: 31.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Dice Partitions
[![Docker CI][docker-action-shield]][docker-action-link]
[![coqdoc][coqdoc-shield]][coqdoc-link][docker-action-shield]: https://github.com/motrellin/dice-partitions/actions/workflows/docker-action.yml/badge.svg?branch=main
[docker-action-link]: https://github.com/motrellin/dice-partitions/actions/workflows/docker-action.yml[coqdoc-shield]: https://img.shields.io/badge/docs-coqdoc-blue.svg
[coqdoc-link]: https://motrellin.github.io/dice-partitions/./docs/toc.htmlA program to find all possibilities, how to roll w dices to get a total sum of s.
## Meta
- Author(s):
+ Max Ole Elliger (initial)
- License: [BSD 3-Clause "New" or "Revised" License](LICENSE)
- Compatible Coq versions: Developed for 8.19
- Additional dependencies:
+ Coq Equations
- Coq namespace: `DicePart`
- Related publication(s): none## Building and installation instructions
The easiest way to install the latest released version of Dice Partitions
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-dice-partitions
```To instead build and install manually, do:
``` shell
git clone --recurse-submodules https://github.com/motrellin/dice-partitions.git
cd dice-partitions
make all # or make -j all
make install
```