# Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-threads base base-unix base conf-findutils 1 Virtual package relying on findutils conf-gmp 4 Virtual package relying on a GMP lib system installation coq 8.15.1 Formal proof management system dune 3.6.2 Fast, portable, and opinionated build system ocaml 4.14.0 The OCaml compiler (virtual package) ocaml-base-compiler 4.14.0 Official release 4.14.0 ocaml-config 2 OCaml Switch Configuration ocaml-options-vanilla 1 Ensure that OCaml is compiled with no special options enabled ocamlfind 1.9.5 A library manager for OCaml zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers # opam file: opam-version: "2.0" maintainer: "yves.bertot@inria.fr" homepage: "http://www-sop.inria.fr/members/Yves.Bertot/" bug-reports: "yves.bertot@inria.fr" license: "CECILL-B" build: [["coq_makefile" "-f" "_CoqProject" "-o" "Makefile" ] [ make "-j" "%{jobs}%" ]] install: [ make "install" "DEST='%{lib}%/coq/user-contrib/pi_agm'" ] depends: [ "ocaml" "coq" {>= "8.10" & < "8.12~"} "coq-coquelicot" {>= "3" & < "4~"} "coq-interval" {>= "4"} ] dev-repo: "git+https://github.com/ybertot/pi-agm.git" tags: [ "keyword:real analysis" "keyword:pi" "category:Mathematics/Real Calculus and Topology" "logpath:agm" "date:2020-06-23" ] authors: [ "Yves Bertot <yves.bertot@inria.fr>" ] synopsis: "Computing thousands or millions of digits of PI with arithmetic-geometric means" description: """ This is a proof of correctness for two algorithms to compute PI to high precision using arithmetic-geometric means. A first file contains the calculus-based proofs for an abstract view of the algorithm, where all numbers are real numbers. A second file describes how to approximate all computations using large integers. Other files describe the second algorithm which is close to the one used in mpfr, for instance. The whole development can be used to produce mathematically proved and formally verified approximations of PI.""" url { src: "https://github.com/ybertot/pi-agm/archive/v1.2.5.zip" checksum: "sha256=0cb93b44a7198bd157cb16a661b70e0e2ccf858bdbf142815740136b69b52627" }
true
Dry install with the current Coq version:
opam install -y --show-action coq-pi-agm.1.2.5 coq.8.15.1
[NOTE] Package coq is already installed (current version is 8.15.1). The following dependencies couldn't be met: - coq-pi-agm -> coq < 8.12~ -> ocaml < 4.12 base of this switch (use `--unlock-base' to force) No solution found, exiting
Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:
opam remove -y coq; opam install -y --show-action --unlock-base coq-pi-agm.1.2.5
true
true
No files were installed.
true