|
| 1 | +opam-version: "2.0" |
| 2 | + |
| 3 | + |
| 4 | +homepage: "https://github.com/math-comp/algebra-tactics" |
| 5 | +dev-repo: "git+https://github.com/math-comp/algebra-tactics.git" |
| 6 | +bug-reports: "https://github.com/math-comp/algebra-tactics/issues" |
| 7 | +license: "CECILL-B" |
| 8 | + |
| 9 | +synopsis: "Ring, field, lra, nra, and psatz tactics for Mathematical Components" |
| 10 | +description: """ |
| 11 | +This library provides `ring`, `field`, `lra`, `nra`, and `psatz` tactics for |
| 12 | +the Mathematical Components library. These tactics use the algebraic |
| 13 | +structures defined in the MathComp library and their canonical instances for |
| 14 | +the instance resolution, and do not require any special instance declaration, |
| 15 | +like the `Add Ring` and `Add Field` commands. Therefore, each of these tactics |
| 16 | +works with any instance of the respective structure, including concrete |
| 17 | +instances declared through Hierarchy Builder, abstract instances, and mixed |
| 18 | +concrete and abstract instances, e.g., `int * R` where `R` is an abstract |
| 19 | +commutative ring. Another key feature of Algebra Tactics is that they |
| 20 | +automatically push down ring morphisms and additive functions to leaves of |
| 21 | +ring/field expressions before applying the proof procedures.""" |
| 22 | + |
| 23 | +build: [make "-j%{jobs}%"] |
| 24 | +install: [make "install"] |
| 25 | +depends: [ |
| 26 | + "coq" {>= "8.16" & < "9.1~"} |
| 27 | + "coq-mathcomp-ssreflect" {>= "2.0" & < "2.4~"} |
| 28 | + "coq-mathcomp-algebra" |
| 29 | + "coq-mathcomp-zify" {>= "1.5.0"} |
| 30 | + "coq-elpi" {>= "1.15.0" & != "1.17.0"} |
| 31 | +] |
| 32 | + |
| 33 | +tags: [ |
| 34 | + "logpath:mathcomp.algebra_tactics" |
| 35 | +] |
| 36 | +authors: [ |
| 37 | + "Kazuhiko Sakaguchi" |
| 38 | + "Pierre Roux" |
| 39 | +] |
| 40 | +url { |
| 41 | + src: "https://github.com/math-comp/algebra-tactics/archive/refs/tags/1.2.3.tar.gz" |
| 42 | + checksum: "sha256=a556875e9ed8db1f77474de77c6ae56142c4477a9f11438d70e1f346c90001e4" |
| 43 | +} |
0 commit comments