(not at the head of any monitored branch or PR)
2026-03-16 19:17.27: New job: test why3-coq.1.5.1 with dune.3.22.0~alpha2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29547/head (19c70fd6a788b154ec5e9fe26bca1d12fb2519be)
                              on debian-13-ocaml-4.14/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29547/head" && git reset --hard 19c70fd6
git fetch origin master
git merge --no-edit 4f056bfedf536e66065c3783e694e6aa0b38261a
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn dune.3.22.0~alpha2 3.22.0~alpha2
RUN opam reinstall dune.3.22.0~alpha2; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'dune.3.22.0~alpha2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall why3-coq.1.5.1; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'why3-coq.1.5.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test why3-coq.1.5.1) || true
RUN opam reinstall --with-test --verbose why3-coq.1.5.1; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'why3-coq.1.5.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2026-03-16 19:17.27: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e-dune.3.22.0~alpha2-why3-coq.1.5.1-19c70fd6a788b154ec5e9fe26bca1d12fb2519be"
2026-03-16 19:17.27: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn dune.3.22.0~alpha2 3.22.0~alpha2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.22.0~alpha2;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'dune.3.22.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall why3-coq.1.5.1;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'why3-coq.1.5.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test why3-coq.1.5.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose why3-coq.1.5.1;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'why3-coq.1.5.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-03-16 19:17.27: Waiting for resource in pool OCluster
2026-03-17 03:42.19: Waiting for worker…
2026-03-17 03:44.40: Got resource from pool OCluster
Building on phoebe
All commits already cached
HEAD is now at 4f056bfedf Merge pull request #29543 from Zaneham/add-olint-0.1.0
Updating 4f056bfedf..19c70fd6a7
Fast-forward
 .../chrome-trace/chrome-trace.3.22.0~alpha2/opam   | 39 +++++++++++
 .../dune-action-plugin.3.22.0~alpha2/opam          | 52 +++++++++++++++
 .../dune-action-trace.3.22.0~alpha2/opam           | 39 +++++++++++
 .../dune-build-info.3.22.0~alpha2/opam             | 45 +++++++++++++
 .../dune-configurator.3.22.0~alpha2/opam           | 49 ++++++++++++++
 packages/dune-glob/dune-glob.3.22.0~alpha2/opam    | 42 ++++++++++++
 .../dune-private-libs.3.22.0~alpha2/opam           | 50 +++++++++++++++
 .../dune-rpc-lwt/dune-rpc-lwt.3.22.0~alpha2/opam   | 41 ++++++++++++
 packages/dune-rpc/dune-rpc.3.22.0~alpha2/opam      | 44 +++++++++++++
 packages/dune-site/dune-site.3.22.0~alpha2/opam    | 37 +++++++++++
 packages/dune/dune.3.22.0~alpha2/opam              | 75 ++++++++++++++++++++++
 packages/dyn/dyn.3.22.0~alpha2/opam                | 40 ++++++++++++
 packages/fs-io/fs-io.3.22.0~alpha2/opam            | 39 +++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.22.0~alpha2/opam  | 43 +++++++++++++
 packages/ordering/ordering.3.22.0~alpha2/opam      | 38 +++++++++++
 packages/stdune/stdune.3.22.0~alpha2/opam          | 46 +++++++++++++
 .../top-closure/top-closure.3.22.0~alpha2/opam     | 38 +++++++++++
 packages/xdg/xdg.3.22.0~alpha2/opam                | 39 +++++++++++
 18 files changed, 796 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.22.0~alpha2/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.0~alpha2/opam
 create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.0~alpha2/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.22.0~alpha2/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.22.0~alpha2/opam
 create mode 100644 packages/dune-glob/dune-glob.3.22.0~alpha2/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.0~alpha2/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.0~alpha2/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.22.0~alpha2/opam
 create mode 100644 packages/dune-site/dune-site.3.22.0~alpha2/opam
 create mode 100644 packages/dune/dune.3.22.0~alpha2/opam
 create mode 100644 packages/dyn/dyn.3.22.0~alpha2/opam
 create mode 100644 packages/fs-io/fs-io.3.22.0~alpha2/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.0~alpha2/opam
 create mode 100644 packages/ordering/ordering.3.22.0~alpha2/opam
 create mode 100644 packages/stdune/stdune.3.22.0~alpha2/opam
 create mode 100644 packages/top-closure/top-closure.3.22.0~alpha2/opam
 create mode 100644 packages/xdg/xdg.3.22.0~alpha2/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e' locally
docker.io/ocaml/opam@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e: Pulling from ocaml/opam
866771c43bf5: Already exists
1e49bea09367: Already exists
e793768537e6: Already exists
ed323d3d481a: Already exists
7df34a5cd5f1: Already exists
fd712d3eb935: Already exists
4b9fb8c99118: Already exists
9d9a01948b94: Already exists
0f1514f90b32: Already exists
e1ec5a753447: Already exists
03cc323e2f71: Already exists
c09c08ea9749: Already exists
b36b619f8e6b: Already exists
195344ca5274: Already exists
228ee78582a6: Already exists
504bde1c25b3: Already exists
9d8b1356c89f: Already exists
9d8b1356c89f: Already exists
568fb6dda155: Already exists
c499c9198aea: Already exists
048e5e358118: Already exists
871ca48eb45d: Already exists
4f4fb700ef54: Already exists
a5a2568b9df9: Already exists
068cf3106ac8: Already exists
559f54ec9b29: Already exists
798ffd96fde5: Already exists
e9a891bf80d7: Already exists
d720cfe12674: Already exists
c81c932f4a91: Already exists
79f24fa3bb11: Already exists
8c1debcd8c20: Already exists
1bb2cfea7250: Already exists
2b3d3ca75e4c: Already exists
557cacaf263c: Already exists
d10483022eef: Already exists
7b62a90d8223: Already exists
28ce8ea66e72: Already exists
d975909ea717: Already exists
5c215c69c247: Already exists
e7c082452a54: Already exists
d1a4c61b613c: Already exists
0195a6679dc6: Already exists
410dfa46d7be: Already exists
b7b221f39cbe: Already exists
Digest: sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
Status: Downloaded newer image for ocaml/opam@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
2026-03-17 03:44.43 ---> using "32cd5b5baf995c02200cf270da597dbb25becd220af2c200c00b8b241a742195" from cache

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-17 03:44.43 ---> using "f3ed7bdbef828c9c0b079b10505c5f05c3c9adcca11ce5bf2dac2a4183e099d8" from cache

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
  - you won't be able to use mercurial repositories unless you install the hg command on your system.
  - you won't be able to use darcs repositories unless you install the darcs command on your system.

This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-17 03:44.43 ---> using "5bf6adb7b45bb7e0c215b8f509c71a8dae73a9a2060efcc27df9d4ef6c6d3350" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2026-03-17 03:44.43 ---> using "0546f18fa5979677ee22eb9f2fcf19ab371564e845d317c2c70e41dd97dc22dd" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-17 03:44.43 ---> using "0a7188cbe95f4fe0ff26694977eb8794c975bdb534078da98a06d6c7373289b4" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-17 03:44.44 ---> using "bac94271bd2933048ab9ec083de7359406ae7b709f9e625d1aacde394e5b6b85" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-17 03:44.50 ---> saved as "1963dd823dac22306d550e5e9c9f971346ae5d465407ab924aff86b04a5120b3"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [111 kB]
- Fetched 10.0 MB in 1s (7249 kB/s)
- Reading package lists...
- 
2026-03-17 03:44.54 ---> saved as "2bbae9754f2da55382df5a713573b4f2579b518f80eaef97920d7868fdc429fa"

/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.0~alpha2 3.22.0~alpha2"))
dune is now pinned to version 3.22.0~alpha2
2026-03-17 03:44.55 ---> saved as "3b312e1ba2e2d3ce6c50234ba2e62c6d827f15439acf5c47c65286f0b2bce15a"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune.3.22.0~alpha2;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'dune.3.22.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dune.3.22.0~alpha2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install dune 3.22.0~alpha2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.0~alpha2  (cached)
-> installed dune.3.22.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 03:45.29 ---> saved as "79a7862cc80cedc04a487927a5645f883e0c17c692a64a036ab827a7afe98a62"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall why3-coq.1.5.1;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'why3-coq.1.5.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
why3-coq.1.5.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 15 packages
  - install conf-autoconf   0.2      [required by why3]
  - install conf-findutils  1        [required by coq]
  - install conf-gmp        5        [required by zarith]
  - install conf-pkg-config 4        [required by zarith]
  - install coq             8.16.1   [required by why3-coq]
  - install menhir          20260209 [required by why3]
  - install menhirCST       20260209 [required by menhir]
  - install menhirGLR       20260209 [required by menhir]
  - install menhirLib       20260209 [required by menhir]
  - install menhirSdk       20260209 [required by menhir]
  - install num             1.6      [required by why3]
  - install ocamlfind       1.9.8    [required by why3-coq]
  - install why3            1.5.1    [required by why3-coq]
  - install why3-coq        1.5.1
  - install zarith          1.14     [required by coq, why3]

The following system packages will first need to be installed:
    autoconf libgmp-dev pkg-config

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "autoconf" "libgmp-dev" "pkg-config"
- Selecting previously unselected package m4.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20623 files and directories currently installed.)
- Preparing to unpack .../0-m4_1.4.19-8_amd64.deb ...
- Unpacking m4 (1.4.19-8) ...
- Selecting previously unselected package autoconf.
- Preparing to unpack .../1-autoconf_2.72-3.1_all.deb ...
- Unpacking autoconf (2.72-3.1) ...
- Selecting previously unselected package autotools-dev.
- Preparing to unpack .../2-autotools-dev_20240727.1_all.deb ...
- Unpacking autotools-dev (20240727.1) ...
- Selecting previously unselected package automake.
- Preparing to unpack .../3-automake_1%3a1.17-4_all.deb ...
- Unpacking automake (1:1.17-4) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../4-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../5-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../6-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../7-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../8-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../9-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up m4 (1.4.19-8) ...
- Setting up autotools-dev (20240727.1) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up autoconf (2.72-3.1) ...
- Setting up automake (1:1.17-4) ...
- update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved conf-gmp.5  (cached)
-> retrieved coq.8.16.1  (cached)
-> installed conf-autoconf.0.2
-> installed conf-findutils.1
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209  (cached)
-> retrieved num.1.6  (cached)
-> installed menhirCST.20260209
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved why3.1.5.1, why3-coq.1.5.1  (cached)
-> installed menhirGLR.20260209
-> installed menhirLib.20260209
-> installed menhirSdk.20260209
-> installed num.1.6
-> retrieved zarith.1.14  (cached)
-> installed ocamlfind.1.9.8
-> installed zarith.1.14
-> installed menhir.20260209
-> installed why3.1.5.1
-> installed coq.8.16.1
-> installed why3-coq.1.5.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 03:57.20 ---> saved as "8a240e18d8cd0d74c663c5809aebd3c264fd76aca0dc2ea0e8963f50ae8e468a"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test why3-coq.1.5.1) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile why3-coq 1.5.1

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved why3-coq.1.5.1  (https://opam.ocaml.org/cache)
-> removed   why3-coq.1.5.1
-> installed why3-coq.1.5.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 03:58.11 ---> saved as "ea587d9a94c4634553a379c6ab6101786fa7f08cbbbeefe6f76b1143e66cebef"

/home/opam: (run (shell  "opam reinstall --with-test --verbose why3-coq.1.5.1;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'why3-coq.1.5.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile why3-coq 1.5.1

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [why3-coq.1.5.1: extract]
-> retrieved why3-coq.1.5.1  (cached)
Processing  2/4: [why3-coq: ./configure]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "./configure" "--prefix" "/home/opam/.opam/4.14" "--disable-why3-lib" "--disable-frama-c" "--disable-ide" "--disable-js-of-ocaml" (CWD=/home/opam/.opam/4.14/.opam-switch/build/why3-coq.1.5.1)
- checking executable suffix... <none>
- checking for gcc... gcc
- checking whether the C compiler works... yes
- checking for C compiler default output file name... a.out
- checking for suffix of executables... 
- checking whether we are cross compiling... no
- checking for suffix of object files... o
- checking whether we are using the GNU C compiler... yes
- checking whether gcc accepts -g... yes
- checking for gcc option to accept ISO C89... none needed
- checking for gcc option to accept ISO C99... 
- none needed
- checking for gcc option to accept ISO Standard C... (cached) none needed
- checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
- checking for a BSD-compatible install... /usr/bin/install -c
- checking for ocamlc... ocamlc
- ocaml version is 4.14.2
- ocaml library path is /home/opam/.opam/4.14/lib/ocaml
- checking for ocamlopt... ocamlopt
- checking ocamlopt version... ok
- checking for ocamlc.opt... ocamlc.opt
- checking ocamlc.opt version... ok
- checking for ocamlopt.opt... ocamlopt.opt
- checking ocamlc.opt version... ok
- checking for ocamldep... ocamldep
- checking for ocamldep.opt... ocamldep.opt
- checking for ocamllex... ocamllex
- checking for ocamllex.opt... ocamllex.opt
- checking for ocamlyacc... ocamlyacc
- checking for ocamldoc... ocamldoc
- checking for ocamldoc.opt... ocamldoc.opt
- checking for menhir... menhir
- checking for ocamlfind... ocamlfind
- checking For Why3... /home/opam/.opam/4.14/lib/why3
- ocamlfind found compiler-libs in /home/opam/.opam/4.14/lib/ocaml/compiler-libs
- checking for sphinx-build... no
- configure: WARNING: Cannot find sphinx-build, Documentation disabled.
- checking for emacs... no
- configure: WARNING: Cannot find emacs, compilation of why3.elc disabled.
- ocamlfind found num in /home/opam/.opam/4.14/lib/num
- checking for /home/opam/.opam/4.14/lib/num/nums.cma... yes
- checking for /home/opam/.opam/4.14/lib/num/num.cmi... yes
- ocamlfind found zarith in /home/opam/.opam/4.14/lib/zarith
- checking for /home/opam/.opam/4.14/lib/zarith/z.cmi... yes
- ocamlfind: Package `zip' not found
- checking for /home/opam/.opam/4.14/lib/ocaml/zip/zip.cma... no
- checking for /home/opam/.opam/4.14/lib/ocaml/zip/zip.cmi... no
- configure: WARNING: Lib camlzip not found, sessions files will not be compressed.
- ocamlfind found menhirLib in /home/opam/.opam/4.14/lib/menhirLib
- checking for /home/opam/.opam/4.14/lib/menhirLib/menhirLib.cmi... yes
- ocamlfind: Package `seq' not found
- checking for /home/opam/.opam/4.14/lib/ocaml/stdlib__seq.cmi... no
- checking for /home/opam/.opam/4.14/lib/ocaml/stdlib__Seq.cmi... yes
- ocamlfind: Package `re' not found
- checking for /home/opam/.opam/4.14/lib/ocaml/re/re.cmx... no
- checking for /home/opam/.opam/4.14/lib/ocaml/re/re.cmi... no
- configure: WARNING: Library re not found.
- ocamlfind: Package `ocamlgraph' not found
- checking for /home/opam/.opam/4.14/lib/ocaml/ocamlgraph/graph.cma... no
- checking for /home/opam/.opam/4.14/lib/ocaml/ocamlgraph/graph.cmi... no
- configure: WARNING: Lib ocamlgraph not found, hypothesis selection disabled.
- ocamlfind: Package `ocamlgraph' not found
- checking for /home/opam/.opam/4.14/lib/ocaml/ocamlgraph/graph.cma... (cached) no
- checking for /home/opam/.opam/4.14/lib/ocaml/ocamlgraph/graph.cmi... (cached) no
- configure: WARNING: Lib ocamlgraph not found, stackify disabled.
- ocamlfind: Package `mlmpfr' not found
- ocamlfind: Package `ppx_sexp_conv' not found
- checking for coqc... coqc
- checking Coq version... 8.16.1
- checking for coqdep... coqdep
- checking for Flocq... File "./conftest.v", line 1, characters 0-36:
- Error: Cannot find a physical path bound to logical path Flocq.Version.
- 
- no
- configure: WARNING: Cannot find Flocq.
- checking for pvs... no
- configure: WARNING: Cannot find pvs.
- checking for isabelle... no
- configure: WARNING: Cannot find isabelle.
- configure: creating ./config.status
- config.status: creating Makefile
- config.status: creating src/config.sh
- config.status: creating lib/why3/META
- config.status: creating .merlin
- config.status: creating src/jessie/Makefile
- config.status: creating src/jessie/.merlin
- config.status: creating lib/coq/version
- config.status: creating lib/pvs/version
- config.status: executing chmod commands
- 
-                  Summary
- -----------------------------------------
- Verbose make                : no
- OCaml compiler              : yes
-     Version                 : 4.14.2
-     Library path            : /home/opam/.opam/4.14/lib/ocaml
-     Ocamlfind               : yes
-     Native compilation      : yes
-     Profiling               : no
-     Memory profiling        : no (disabled by default)
-     PPX                     : yes
-     S-expr for why3pp       : no (requires ppx_sexp_conv)
-     Javascript support      : no (disabled by user)
-     MPFR support            : no (mlmpfr not found)
-     Re support              : no
- Components
-     Why3 library            : no
-     GTK IDE                 : no (disabled by user)
-     Web IDE                 : no (Javascript support not available)
-     GMP arithmetic          : yes
-     Compressed sessions     : no (camlzip not found)
-     Hypothesis selection    : no (ocamlgraph not found)
-     Stackify                : no (ocamlgraph not found)
-     Invariant inference(exp): no (disabled by default)
-     Frama-C support         : no
- Documentation               : no (sphinx-build not found)
- Support for interactive proof assistants
-     Coq                     : yes
-         Version             : 8.16.1
-         Library path        : /home/opam/.opam/4.14/lib/coq
-         Realization support : yes
-             FP arithmetic   : no (Flocq >= 3.4 not found)
-     PVS                     : no (pvs not found)
-     Isabelle                : no (isabelle not found)
- Installable                 : yes
-     Binary path             : ${exec_prefix}/bin
-     Library path            : ${exec_prefix}/lib/why3
-     Data path               : ${prefix}/share/why3
-     OCaml library path      : /home/opam/.opam/4.14/lib/why3
-     Relocatable             : no
Processing  2/4: [why3-coq: make coq]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "-j71" "coq" (CWD=/home/opam/.opam/4.14/.opam-switch/build/why3-coq.1.5.1)
- cmp -s src/util/mysexplib-dummy.ml src/util/mysexplib.ml || cp src/util/mysexplib-dummy.ml src/util/mysexplib.ml
- Generate src/util/config.ml
- Ocamllex src/util/rc.mll
- Ocamllex src/util/lexlib.mll
- 39 states, 600 transitions, table size 2634 bytes
- 1338 additional bytes used for bindings
- Menhir src/util/json_parser.mly
- cmp -s src/util/mlmpfr_dummy.ml src/util/mlmpfr_wrapper.ml || cp src/util/mlmpfr_dummy.ml src/util/mlmpfr_wrapper.ml
- Ocamllex src/util/json_lexer.mll
- 48 states, 1889 transitions, table size 7844 bytes
- 3073 additional bytes used for bindings
- cmp -s src/util/dynlink_new.ml src/util/dynlink_wrapper.ml || cp src/util/dynlink_new.ml src/util/dynlink_wrapper.ml
- Ocamllex src/parser/lexer.mll
- 52 states, 495 transitions, table size 2292 bytes
- Menhir src/parser/parser_common.mly
- Menhir src/parser/parser_common.mly src/parser/parser.mly
- Menhir src/driver/driver_parser.mly
- Ocamllex src/driver/driver_lexer.mll
- cmp -s src/session/compress_none.ml src/session/compress.ml || cp src/session/compress_none.ml src/session/compress.ml
- Ocamllex src/driver/sexp.mll
- 34 states, 1366 transitions, table size 5668 bytes
- 158 states, 4359 transitions, table size 18384 bytes
- 7555 additional bytes used for bindings
- 27 states, 306 transitions, table size 1386 bytes
- Ocamllex src/session/xml.mll
- Ocamllex src/session/strategy_parser.mll
- cmp -s src/util/recompat.ml src/util/re.ml || cp src/util/recompat.ml src/util/re.ml
- 47 states, 678 transitions, table size 2994 bytes
- 2153 additional bytes used for bindings
- 117 states, 1396 transitions, table size 6286 bytes
- 3556 additional bytes used for bindings
- Ocamllex plugins/tptp/tptp_lexer.mll
- Menhir plugins/tptp/tptp_parser.mly
- Ocamllex plugins/python/py_lexer.mll
- Menhir plugins/python/py_parser.mly
- 101 states, 1563 transitions, table size 6858 bytes
- 3126 additional bytes used for bindings
- Ocamllex plugins/microc/mc_lexer.mll
- 69 states, 1256 transitions, table size 5438 bytes
- 1453 additional bytes used for bindings
- Ocamllex plugins/cfg/cfg_lexer.mll
- Menhir src/parser/parser_common.mly plugins/cfg/cfg_parser.mly
- Menhir plugins/microc/mc_parser.mly
- 77 states, 473 transitions, table size 2354 bytes
- 1504 additional bytes used for bindings
- Ocamllex plugins/parser/dimacs.mll
- Ocamllex src/tools/why3wc.mll
- Ocamldep src/ide/wserver.ml
- Ocamldep src/ide/why3web.ml
- 34 states, 434 transitions, table size 1940 bytes
- 1293 additional bytes used for bindings
- Ocamldep src/why3session/why3session_lib.ml
- Ocamldep src/why3session/why3session_info.ml
- Ocamldep src/why3session/why3session_html.ml
- Ocamldep src/why3session/why3session_latex.ml
- Ocamldep src/why3session/why3session_update.ml
- Ocamldep src/tools/why3shell.ml
- Coqdep   lib/coq/BuiltIn.v
- Coqdep   lib/coq/HighOrd.v
- 155 states, 4342 transitions, table size 18298 bytes
- 7537 additional bytes used for bindings
- Ocamldep src/why3session/why3session_main.ml
- Coqdep   lib/coq/int/Exponentiation.v
- Coqdep   lib/coq/int/Abs.v
- Coqdep   lib/coq/int/ComputerDivision.v
- Coqdep   lib/coq/int/Div2.v
- Coqdep   lib/coq/int/EuclideanDivision.v
- Coqdep   lib/coq/int/Int.v
- Coqdep   lib/coq/int/MinMax.v
- Coqdep   lib/coq/int/Power.v
- 307 states, 15627 transitions, table size 64350 bytes
- Coqdep   lib/coq/int/NumOf.v
- Coqdep   lib/coq/bool/Bool.v
- Coqdep   lib/coq/real/Abs.v
- Coqdep   lib/coq/real/ExpLog.v
- Coqdep   lib/coq/real/FromInt.v
- Coqdep   lib/coq/real/MinMax.v
- Coqdep   lib/coq/real/PowerInt.v
- Coqdep   lib/coq/real/PowerReal.v
- Coqdep   lib/coq/real/Real.v
- Coqdep   lib/coq/real/RealInfix.v
- Coqdep   lib/coq/real/Square.v
- Coqdep   lib/coq/real/Trigonometry.v
- Coqdep   lib/coq/number/Divisibility.v
- Coqdep   lib/coq/number/Gcd.v
- Coqdep   lib/coq/number/Parity.v
- Coqdep   lib/coq/number/Prime.v
- Coqdep   lib/coq/number/Coprime.v
- Coqdep   lib/coq/set/Set.v
- Coqdep   lib/coq/set/Cardinal.v
- Coqdep   lib/coq/set/Fset.v
- Coqdep   lib/coq/set/FsetInduction.v
- Coqdep   lib/coq/set/FsetInt.v
- Coqdep   lib/coq/set/FsetSum.v
- Coqdep   lib/coq/set/SetApp.v
- Coqdep   lib/coq/set/SetAppInt.v
- Coqdep   lib/coq/set/SetImp.v
- Coqdep   lib/coq/set/SetImpInt.v
- Coqdep   lib/coq/map/Map.v
- Coqdep   lib/coq/map/Const.v
- Coqdep   lib/coq/map/Occ.v
- Coqdep   lib/coq/map/MapPermut.v
- Coqdep   lib/coq/map/MapInjection.v
- Coqdep   lib/coq/list/List.v
- Coqdep   lib/coq/list/Length.v
- Coqdep   lib/coq/list/Mem.v
- Coqdep   lib/coq/list/Nth.v
- Coqdep   lib/coq/list/NthLength.v
- Coqdep   lib/coq/list/HdTl.v
- Coqdep   lib/coq/list/NthHdTl.v
- Coqdep   lib/coq/list/Append.v
- Coqdep   lib/coq/list/NthLengthAppend.v
- Coqdep   lib/coq/list/Reverse.v
- Coqdep   lib/coq/list/HdTlNoOpt.v
- Coqdep   lib/coq/list/NthNoOpt.v
- Coqdep   lib/coq/list/RevAppend.v
- Coqdep   lib/coq/list/Combine.v
- Coqdep   lib/coq/list/Distinct.v
- Coqdep   lib/coq/list/NumOcc.v
- Coqdep   lib/coq/list/Permut.v
- Coqdep   lib/coq/option/Option.v
- Coqdep   lib/coq/bv/Pow2int.v
- Coqdep   lib/coq/bv/BV_Gen.v
- Coqdep   lib/coq/for_drivers/ComputerOfEuclideanDivision.v
- Ocamldep src/isabelle-client/isabelle_client_main.ml
- cmp -s src/tools/why3pp_sexp-dummy.ml src/tools/why3pp_sexp.ml || cp src/tools/why3pp_sexp-dummy.ml src/tools/why3pp_sexp.ml
- Ocamllex src/why3doc/doc_lexer.mll
- cp src/util/json_base.ml src/trywhy3/json_base.ml
- cp src/util/json_base.mli src/trywhy3/json_base.mli
- cp src/util/json_parser.ml src/trywhy3/json_parser.ml
- 120 states, 685 transitions, table size 3460 bytes
- 1763 additional bytes used for bindings
- cp src/util/json_lexer.ml src/trywhy3/json_lexer.ml
- cp src/util/json_parser.mli src/trywhy3/json_parser.mli
- cp src/util/json_lexer.mli src/trywhy3/json_lexer.mli
- Ocamldep src/tools/main.ml
- Ocamldep src/tools/why3config.ml
- Ocamldep src/tools/why3execute.ml
- Ocamldep src/tools/why3extract.ml
- Ocamldep src/tools/why3prove.ml
- Ocamldep src/tools/why3realize.ml
- Ocamldep src/tools/why3replay.ml
- Ocamldep src/tools/why3show.ml
- Ocamldep src/tools/why3wc.ml
- Read 3 sample input sentences and 3 error messages.
- menhir --explain --strict src/parser/parser_common.mly src/parser/parser.mly --base src/parser/parser --compile-errors \
- 	src/parser/handcrafted.messages > src/parser/parser_messages.ml
- Read 3 sample input sentences and 3 error messages.
- Ocamldep src/tools/why3pp_sexp.ml
- Ocamldep src/tools/why3pp.ml
- Ocamldep src/why3doc/doc_html.ml
- Ocamldep src/why3doc/doc_def.ml
- Ocamldep src/why3doc/doc_lexer.ml
- Ocamldep src/why3doc/doc_main.ml
- Ocamldep src/trywhy3/json_base.ml
- Ocamldep src/trywhy3/json_parser.ml
- Ocamldep src/trywhy3/json_lexer.ml
- Ocamldep src/trywhy3/bindings.ml
- Ocamldep src/trywhy3/shortener.ml
- Ocamldep src/trywhy3/trywhy3.ml
- Ocamldep src/trywhy3/why3_worker.ml
- Ocamldep src/trywhy3/worker_proto.ml
- Ocamldep src/util/mysexplib.ml
- Ocamldep src/util/config.ml
- Ocamldep src/util/bigInt.ml
- Ocamldep src/util/util.ml
- Ocamldep src/util/opt.ml
- Ocamldep src/util/mlmpfr_wrapper.ml
- Ocamldep src/util/lists.ml
- Ocamldep src/util/strings.ml
- Ocamldep src/util/pp.ml
- Ocamldep src/util/extmap.ml
- Ocamldep src/util/extset.ml
- Ocamldep src/util/exthtbl.ml
- Ocamldep src/util/weakhtbl.ml
- Ocamldep src/util/diffmap.ml
- Ocamldep src/util/hashcons.ml
- Ocamldep src/util/wstdlib.ml
- Ocamldep src/util/exn_printer.ml
- Ocamldep src/util/getopt.ml
- Ocamldep src/util/json_parser.ml
- Ocamldep src/util/json_base.ml
- Ocamldep src/util/json_lexer.ml
- Ocamldep src/util/debug.ml
- Ocamldep src/util/loc.ml
- Ocamldep src/util/lexlib.ml
- Ocamldep src/util/print_tree.ml
- Ocamldep src/util/dynlink_wrapper.ml
- Ocamldep src/util/cmdline.ml
- Ocamldep src/util/warning.ml
- Ocamldep src/util/sysutil.ml
- Ocamldep src/util/rc.ml
- Ocamldep src/util/plugin.ml
- Ocamldep src/util/number.ml
- Ocamldep src/util/constant.ml
- Ocamldep src/util/vector.ml
- Ocamldep src/util/pqueue.ml
- Ocamldep src/util/re.ml
- Ocamldep src/core/ident.ml
- Ocamldep src/core/ty.ml
- Ocamldep src/core/term.ml
- Ocamldep src/core/pattern.ml
- Ocamldep src/core/decl.ml
- Ocamldep src/core/coercion.ml
- Ocamldep src/core/theory.ml
- Ocamldep src/core/parser_tokens.ml
- Ocamldep src/core/keywords.ml
- Ocamldep src/core/pretty.ml
- Ocamldep src/core/task.ml
- Ocamldep src/core/dterm.ml
- Ocamldep src/core/env.ml
- Ocamldep src/core/trans.ml
- Ocamldep src/core/model_parser.ml
- Ocamldep src/core/printer.ml
- Ocamldep src/driver/prove_client.ml
- Ocamldep src/driver/call_provers.ml
- Ocamldep src/driver/driver_parser.ml
- Ocamldep src/driver/driver_lexer.ml
- Ocamldep src/driver/whyconf.ml
- Ocamldep src/driver/driver.ml
- Ocamldep src/driver/autodetection.ml
- Ocamldep src/driver/smtv2_model_defs.ml
- Ocamldep src/driver/collect_data_model.ml
- Ocamldep src/driver/sexp.ml
- Ocamldep src/driver/smtv2_model_parser.ml
- Ocamldep src/mlw/ity.ml
- Ocamldep src/mlw/pdecl.ml
- Ocamldep src/mlw/expr.ml
- Ocamldep src/mlw/eval_match.ml
- Ocamldep src/mlw/typeinv.ml
- Ocamldep src/mlw/vc.ml
- Ocamldep src/mlw/pmodule.ml
- Ocamldep src/mlw/dexpr.ml
- Ocamldep src/mlw/big_real.ml
- Ocamldep src/mlw/pinterp_core.ml
- Ocamldep src/mlw/rac.ml
- Ocamldep src/mlw/pinterp.ml
- Ocamldep src/mlw/check_ce.ml
- Ocamldep src/extract/mltree.ml
- Ocamldep src/extract/compile.ml
- Ocamldep src/extract/mlinterp.ml
- Ocamldep src/extract/pdriver.ml
- Ocamldep src/extract/ml_printer.ml
- Ocamldep src/extract/c.ml
- Ocamldep src/extract/ocaml.ml
- Ocamldep src/extract/cakeml.ml
- Ocamldep src/parser/ptree.ml
- Ocamldep src/parser/ptree_helpers.ml
- Ocamldep src/parser/glob.ml
- Ocamldep src/parser/typing.ml
- Ocamldep src/parser/parser_messages.ml
- Ocamldep src/parser/parser.ml
- Ocamldep src/parser/report.ml
- Ocamldep src/transform/simplify_formula.ml
- Ocamldep src/parser/lexer.ml
- Ocamldep src/parser/mlw_printer.ml
- Ocamldep src/transform/inlining.ml
- Ocamldep src/transform/split_goal.ml
- Ocamldep src/transform/args_wrapper.ml
- Ocamldep src/transform/detect_polymorphism.ml
- Ocamldep src/transform/reduction_engine.ml
- Ocamldep src/transform/compute.ml
- Ocamldep src/transform/eliminate_definition.ml
- Ocamldep src/transform/eliminate_algebraic.ml
- Ocamldep src/transform/abstract_quantifiers.ml
- Ocamldep src/transform/eliminate_unknown_types.ml
- Ocamldep src/transform/eliminate_unknown_lsymbols.ml
- Ocamldep src/transform/eliminate_symbol.ml
- Ocamldep src/transform/eliminate_inductive.ml
- Ocamldep src/transform/eliminate_let.ml
- Ocamldep src/transform/eliminate_if.ml
- Ocamldep src/transform/libencoding.ml
- Ocamldep src/transform/discriminate.ml
- Ocamldep src/transform/encoding.ml
- Ocamldep src/transform/encoding_select.ml
- Ocamldep src/transform/encoding_guards_full.ml
- Ocamldep src/transform/encoding_tags_full.ml
- Ocamldep src/transform/encoding_guards.ml
- Ocamldep src/transform/encoding_tags.ml
- Ocamldep src/transform/encoding_twin.ml
- Ocamldep src/transform/simplify_array.ml
- Ocamldep src/transform/filter_trigger.ml
- Ocamldep src/transform/encoding_sort.ml
- Ocamldep src/transform/abstraction.ml
- Ocamldep src/transform/close_epsilon.ml
- Ocamldep src/transform/lift_epsilon.ml
- Ocamldep src/transform/eliminate_epsilon.ml
- Ocamldep src/transform/intro_projections_counterexmp.ml
- Ocamldep src/transform/instantiate_predicate.ml
- Ocamldep src/transform/smoke_detector.ml
- Ocamldep src/transform/prop_curry.ml
- Ocamldep src/transform/eliminate_literal.ml
- Ocamldep src/transform/generic_arg_trans_utils.ml
- Ocamldep src/transform/case.ml
- Ocamldep src/transform/subst.ml
- Ocamldep src/transform/introduction.ml
- Ocamldep src/transform/apply.ml
- Ocamldep src/transform/ind_itp.ml
- Ocamldep src/transform/destruct.ml
- Ocamldep src/transform/cut.ml
- Ocamldep src/transform/congruence.ml
- Ocamldep src/transform/intro_vc_vars_counterexmp.ml
- Ocamldep src/transform/prepare_for_counterexmp.ml
- Ocamldep src/transform/induction.ml
- Ocamldep src/transform/induction_pr.ml
- Ocamldep src/transform/reflection.ml
- Ocamldep src/printer/cntexmp_printer.ml
- Ocamldep src/printer/alt_ergo.ml
- Ocamldep src/printer/why3printer.ml
- Ocamldep src/printer/smtv1.ml
- Ocamldep src/printer/smtv2.ml
- Ocamldep src/printer/coq.ml
- Ocamldep src/printer/pvs.ml
- Ocamldep src/printer/isabelle.ml
- Ocamldep src/printer/simplify.ml
- Ocamldep src/printer/gappa.ml
- Ocamldep src/printer/cvc3.ml
- Ocamldep src/printer/yices.ml
- Ocamldep src/printer/mathematica.ml
- Ocamldep src/session/compress.ml
- Ocamldep src/session/xml.ml
- Ocamldep src/session/termcode.ml
- Ocamldep src/session/session_itp.ml
- Ocamldep src/session/strategy.ml
- Ocamldep src/session/controller_itp.ml
- Ocamldep src/session/server_utils.ml
- Ocamldep src/session/itp_communication.ml
- Ocamldep src/session/strategy_parser.ml
- Ocamldep src/session/itp_server.ml
- Ocamldep src/session/json_util.ml
- Ocamldep src/driver/driver_ast.mli
- Ocamldep src/session/unix_scheduler.ml
- Ocamldep plugins/parser/genequlin.ml
- Ocamldep plugins/parser/dimacs.ml
- Ocamldep plugins/tptp/tptp_parser.ml
- Ocamldep plugins/tptp/tptp_lexer.ml
- Ocamldep plugins/python/py_parser.ml
- Ocamldep plugins/tptp/tptp_printer.ml
- Ocamldep plugins/tptp/tptp_typing.ml
- Ocamldep plugins/python/py_lexer.ml
- Ocamldep plugins/python/py_main.ml
- Ocamldep plugins/microc/mc_parser.ml
- Ocamldep plugins/microc/mc_lexer.ml
- Ocamldep plugins/microc/mc_printer.ml
- Ocamldep plugins/microc/mc_main.ml
- Ocamldep plugins/cfg/cfg_parser.ml
- Ocamldep plugins/cfg/cfg_lexer.ml
- Ocamldep plugins/cfg/cfg_paths.ml
- Ocamldep plugins/cfg/cfg_main.ml
- Ocamldep plugins/tptp/tptp_ast.mli
- Ocamldep plugins/python/py_ast.mli
- Ocamldep plugins/microc/mc_ast.mli
- Ocamldep plugins/cfg/cfg_ast.mli
- Coqc     lib/coq/BuiltIn.v
- Generate drivers/coq-realizations.aux
- Coqc     lib/coq/HighOrd.v
- Coqc     lib/coq/int/Int.v
- Coqc     lib/coq/bool/Bool.v
- Coqc     lib/coq/real/Real.v
- Coqc     lib/coq/list/List.v
- Coqc     lib/coq/option/Option.v
- Coqc     lib/coq/map/Map.v
- Coqc     lib/coq/int/Exponentiation.v
- Coqc     lib/coq/int/Abs.v
- Coqc     lib/coq/int/MinMax.v
- Coqc     lib/coq/int/NumOf.v
- Coqc     lib/coq/bv/Pow2int.v
- Coqc     lib/coq/list/Length.v
- Coqc     lib/coq/list/Mem.v
- Coqc     lib/coq/list/HdTlNoOpt.v
- Coqc     lib/coq/list/NthNoOpt.v
- Coqc     lib/coq/list/Combine.v
- Coqc     lib/coq/list/Nth.v
- Coqc     lib/coq/list/HdTl.v
- File "./lib/coq/real/Real.v", line 208, characters 12-27:
- Warning: Notation Rinv_mult_distr is deprecated since 8.16. Use Rinv_mult.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/real/Real.v", line 208, characters 12-27:
- Warning: Notation Rinv_mult_distr is deprecated since 8.16. Use Rinv_mult.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/real/Real.v", line 208, characters 12-27:
- Warning: Notation Rinv_mult_distr is deprecated since 8.16. Use Rinv_mult.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/real/Real.v", line 208, characters 12-27:
- Warning: Notation Rinv_mult_distr is deprecated since 8.16. Use Rinv_mult.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/real/Real.v", line 208, characters 12-27:
- Warning: Notation Rinv_mult_distr is deprecated since 8.16. Use Rinv_mult.
- [deprecated-syntactic-definition,deprecated]
- Coqc     lib/coq/real/Abs.v
- Coqc     lib/coq/real/ExpLog.v
- Coqc     lib/coq/real/MinMax.v
- Coqc     lib/coq/real/FromInt.v
- Coqc     lib/coq/real/RealInfix.v
- Coqc     lib/coq/real/Square.v
- Coqc     lib/coq/map/Const.v
- Coqc     lib/coq/map/Occ.v
- File "./lib/coq/int/NumOf.v", line 54, characters 10-16:
- Warning: Notation S_pred is deprecated since 8.16.
- The Arith.Lt file is obsolete. Use Nat.lt_succ_pred (with symmetry of equality) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/int/NumOf.v", line 54, characters 10-16:
- Warning: Notation S_pred is deprecated since 8.16.
- The Arith.Lt file is obsolete. Use Nat.lt_succ_pred (with symmetry of equality) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/int/NumOf.v", line 54, characters 10-16:
- Warning: Notation S_pred is deprecated since 8.16.
- The Arith.Lt file is obsolete. Use Nat.lt_succ_pred (with symmetry of equality) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/int/NumOf.v", line 54, characters 10-16:
- Warning: Notation S_pred is deprecated since 8.16.
- The Arith.Lt file is obsolete. Use Nat.lt_succ_pred (with symmetry of equality) instead.
- [deprecated-syntactic-definition,deprecated]
- Coqc     lib/coq/list/NthHdTl.v
- Coqc     lib/coq/int/ComputerDivision.v
- Coqc     lib/coq/int/EuclideanDivision.v
- Coqc     lib/coq/list/NthLength.v
- Coqc     lib/coq/list/Append.v
- File "./lib/coq/map/Occ.v", line 51, characters 9-15:
- Warning: Notation S_pred is deprecated since 8.16.
- The Arith.Lt file is obsolete. Use Nat.lt_succ_pred (with symmetry of equality) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/map/Occ.v", line 51, characters 9-15:
- Warning: Notation S_pred is deprecated since 8.16.
- The Arith.Lt file is obsolete. Use Nat.lt_succ_pred (with symmetry of equality) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/map/Occ.v", line 54, characters 15-24:
- Warning: Notation minus_n_O is deprecated since 8.16.
- The Arith.Minus file is obsolete. Use Nat.sub_0_r (and symmetry of equality) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/map/Occ.v", line 54, characters 15-24:
- Warning: Notation minus_n_O is deprecated since 8.16.
- The Arith.Minus file is obsolete. Use Nat.sub_0_r (and symmetry of equality) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/map/Occ.v", line 54, characters 15-24:
- Warning: Notation minus_n_O is deprecated since 8.16.
- The Arith.Minus file is obsolete. Use Nat.sub_0_r (and symmetry of equality) instead.
- [deprecated-syntactic-definition,deprecated]
- Coqc     lib/coq/int/Power.v
- Coqc     lib/coq/real/PowerInt.v
- Coqc     lib/coq/set/Set.v
- Coqc     lib/coq/real/Trigonometry.v
- Coqc     lib/coq/number/Parity.v
- Coqc     lib/coq/list/NthLengthAppend.v
- Coqc     lib/coq/list/Reverse.v
- Coqc     lib/coq/list/Distinct.v
- Coqc     lib/coq/real/PowerReal.v
- File "./lib/coq/set/Set.v", line 44, characters 0-16:
- Warning: Adding and removing hints in the core database implicitly is
- deprecated. Please specify a hint database.
- [implicit-core-hint-db,deprecated]
- File "./lib/coq/set/Set.v", line 44, characters 0-16:
- Warning: The default value for hint locality is currently "local" in a
- section and "global" otherwise, but is scheduled to change in a future
- release. For the time being, adding hints outside of sections without
- specifying an explicit locality attribute is therefore deprecated. It is
- recommended to use "export" whenever possible. Use the attributes #[local],
- #[global] and #[export] depending on your choice. For example: "#[export]
- Hint Unfold foo : bar." [deprecated-hint-without-locality,deprecated]
- Coqc     lib/coq/map/MapPermut.v
- Coqc     lib/coq/map/MapInjection.v
- Coqc     lib/coq/bv/BV_Gen.v
- Coqc     lib/coq/int/Div2.v
- Coqc     lib/coq/for_drivers/ComputerOfEuclideanDivision.v
- Coqc     lib/coq/number/Divisibility.v
- Coqc     lib/coq/list/RevAppend.v
- Coqc     lib/coq/list/NumOcc.v
- Coqc     lib/coq/number/Gcd.v
- Coqc     lib/coq/number/Prime.v
- File "./lib/coq/bv/BV_Gen.v", line 616, characters 63-72:
- Warning: Notation Div2.div2 is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.div2 instead.
- [deprecated-syntactic-definition,deprecated]
- Coqc     lib/coq/list/Permut.v
- File "./lib/coq/bv/BV_Gen.v", line 718, characters 10-19:
- Warning: Notation mult_comm is deprecated since 8.16.
- The Arith.Mult file is obsolete. Use Nat.mul_comm instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 718, characters 10-19:
- Warning: Notation mult_comm is deprecated since 8.16.
- The Arith.Mult file is obsolete. Use Nat.mul_comm instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 718, characters 10-19:
- Warning: Notation mult_comm is deprecated since 8.16.
- The Arith.Mult file is obsolete. Use Nat.mul_comm instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 797, characters 35-43:
- Warning: Notation Even.odd is deprecated since 8.16.
- The Arith.Even file is obsolete. Use Nat.Even or Nat.Even_alt instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 799, characters 38-52:
- Warning: Notation Even.odd_equiv is deprecated since 8.16.
- The Arith.Even file is obsolete. Use Nat.Odd_alt_Odd instead
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 799, characters 38-52:
- Warning: Notation Even.odd_equiv is deprecated since 8.16.
- The Arith.Even file is obsolete. Use Nat.Odd_alt_Odd instead
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 799, characters 38-52:
- Warning: Notation Even.odd_equiv is deprecated since 8.16.
- The Arith.Even file is obsolete. Use Nat.Odd_alt_Odd instead
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 807, characters 37-46:
- Warning: Notation Even.even is deprecated since 8.16.
- The Arith.Even file is obsolete. Use Nat.Even or Nat.Even_alt instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 807, characters 58-66:
- Warning: Notation Even.odd is deprecated since 8.16.
- The Arith.Even file is obsolete. Use Nat.Even or Nat.Even_alt instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 809, characters 15-36:
- Warning: Notation Even.not_even_and_odd is deprecated since 8.16.
- The Arith.Even file is obsolete. Use Nat.Even_Odd_False (together with Nat.Even_alt_Even and Nat.Odd_alt_Odd) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 809, characters 15-36:
- Warning: Notation Even.not_even_and_odd is deprecated since 8.16.
- The Arith.Even file is obsolete. Use Nat.Even_Odd_False (together with Nat.Even_alt_Even and Nat.Odd_alt_Odd) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 810, characters 8-24:
- Warning: Notation Even.even_or_odd is deprecated since 8.16.
- The Arith.Even file is obsolete. Use Nat.Even_or_Odd (together with Nat.Even_alt_Even and Nat.Odd_alt_Odd) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 810, characters 8-24:
- Warning: Notation Even.even_or_odd is deprecated since 8.16.
- The Arith.Even file is obsolete. Use Nat.Even_or_Odd (together with Nat.Even_alt_Even and Nat.Odd_alt_Odd) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 813, characters 37-46:
- Warning: Notation Even.even is deprecated since 8.16.
- The Arith.Even file is obsolete. Use Nat.Even or Nat.Even_alt instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 858, characters 10-19:
- Warning: Notation Even.even is deprecated since 8.16.
- The Arith.Even file is obsolete. Use Nat.Even or Nat.Even_alt instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 858, characters 10-19:
- Warning: Notation Even.even is deprecated since 8.16.
- The Arith.Even file is obsolete. Use Nat.Even or Nat.Even_alt instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 864, characters 44-53:
- Warning: Notation Div2.div2 is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.div2 instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 864, characters 44-53:
- Warning: Notation Div2.div2 is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.div2 instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 866, characters 13-27:
- Warning: Notation Div2.even_div2 is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.Even_div2 (together with Nat.Even_alt_Even) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 866, characters 53-69:
- Warning: Notation Div2.even_double is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.Even_double (together with Nat.Even_alt_Even) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 866, characters 13-27:
- Warning: Notation Div2.even_div2 is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.Even_div2 (together with Nat.Even_alt_Even) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 866, characters 13-27:
- Warning: Notation Div2.even_div2 is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.Even_div2 (together with Nat.Even_alt_Even) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 866, characters 53-69:
- Warning: Notation Div2.even_double is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.Even_double (together with Nat.Even_alt_Even) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 866, characters 53-69:
- Warning: Notation Div2.even_double is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.Even_double (together with Nat.Even_alt_Even) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 870, characters 13-27:
- Warning: Notation Div2.even_div2 is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.Even_div2 (together with Nat.Even_alt_Even) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 870, characters 84-100:
- Warning: Notation Div2.even_double is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.Even_double (together with Nat.Even_alt_Even) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 870, characters 13-27:
- Warning: Notation Div2.even_div2 is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.Even_div2 (together with Nat.Even_alt_Even) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 870, characters 13-27:
- Warning: Notation Div2.even_div2 is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.Even_div2 (together with Nat.Even_alt_Even) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 870, characters 84-100:
- Warning: Notation Div2.even_double is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.Even_double (together with Nat.Even_alt_Even) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 870, characters 84-100:
- Warning: Notation Div2.even_double is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.Even_double (together with Nat.Even_alt_Even) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 874, characters 44-53:
- Warning: Notation Div2.div2 is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.div2 instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 874, characters 44-53:
- Warning: Notation Div2.div2 is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.div2 instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 876, characters 35-51:
- Warning: Notation Div2.even_double is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.Even_double (together with Nat.Even_alt_Even) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 876, characters 35-51:
- Warning: Notation Div2.even_double is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.Even_double (together with Nat.Even_alt_Even) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 876, characters 35-51:
- Warning: Notation Div2.even_double is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.Even_double (together with Nat.Even_alt_Even) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 876, characters 35-51:
- Warning: Notation Div2.even_double is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.Even_double (together with Nat.Even_alt_Even) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 880, characters 66-82:
- Warning: Notation Div2.even_double is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.Even_double (together with Nat.Even_alt_Even) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 880, characters 66-82:
- Warning: Notation Div2.even_double is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.Even_double (together with Nat.Even_alt_Even) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 880, characters 66-82:
- Warning: Notation Div2.even_double is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.Even_double (together with Nat.Even_alt_Even) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 880, characters 66-82:
- Warning: Notation Div2.even_double is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.Even_double (together with Nat.Even_alt_Even) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 900, characters 11-20:
- Warning: Notation Div2.div2 is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.div2 instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 900, characters 11-20:
- Warning: Notation Div2.div2 is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.div2 instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 902, characters 10-23:
- Warning: Notation Div2.odd_div2 is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.Odd_div2 (together with Nat.Odd_alt_Odd) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 902, characters 10-23:
- Warning: Notation Div2.odd_div2 is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.Odd_div2 (together with Nat.Odd_alt_Odd) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 902, characters 10-23:
- Warning: Notation Div2.odd_div2 is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.Odd_div2 (together with Nat.Odd_alt_Odd) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 902, characters 10-23:
- Warning: Notation Div2.odd_div2 is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.Odd_div2 (together with Nat.Odd_alt_Odd) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 906, characters 25-41:
- Warning: Notation Div2.div2_double is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.div2_double instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 906, characters 25-41:
- Warning: Notation Div2.div2_double is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.div2_double instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 906, characters 25-41:
- Warning: Notation Div2.div2_double is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.div2_double instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 989, characters 37-49:
- Warning: Notation Z_div_mod_eq is deprecated since 8.14.
- Use Z_div_mod_eq_full instead [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 989, characters 37-49:
- Warning: Notation Z_div_mod_eq is deprecated since 8.14.
- Use Z_div_mod_eq_full instead [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 989, characters 37-49:
- Warning: Notation Z_div_mod_eq is deprecated since 8.14.
- Use Z_div_mod_eq_full instead [deprecated-syntactic-definition,deprecated]
- Coqc     lib/coq/set/Cardinal.v
- Coqc     lib/coq/number/Coprime.v
- File "./lib/coq/bv/BV_Gen.v", line 1924, characters 27-36:
- Warning: Notation Div2.div2 is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.div2 instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 1924, characters 27-36:
- Warning: Notation Div2.div2 is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.div2 instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 1935, characters 17-31:
- Warning: Notation Div2.even_div2 is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.Even_div2 (together with Nat.Even_alt_Even) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 1935, characters 39-55:
- Warning: Notation Div2.div2_double is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.div2_double instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 1935, characters 17-31:
- Warning: Notation Div2.even_div2 is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.Even_div2 (together with Nat.Even_alt_Even) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 1935, characters 17-31:
- Warning: Notation Div2.even_div2 is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.Even_div2 (together with Nat.Even_alt_Even) instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 1935, characters 39-55:
- Warning: Notation Div2.div2_double is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.div2_double instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 1935, characters 39-55:
- Warning: Notation Div2.div2_double is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.div2_double instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 2030, characters 57-66:
- Warning: Notation Div2.div2 is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.div2 instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 2030, characters 57-66:
- Warning: Notation Div2.div2 is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.div2 instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 2033, characters 12-21:
- Warning: Notation Div2.div2 is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.div2 instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 2033, characters 12-21:
- Warning: Notation Div2.div2 is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.div2 instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 2038, characters 57-66:
- Warning: Notation Div2.div2 is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.div2 instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/bv/BV_Gen.v", line 2038, characters 57-66:
- Warning: Notation Div2.div2 is deprecated since 8.16.
- The Arith.Div2 file is obsolete. Use Nat.div2 instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/set/Cardinal.v", line 811, characters 9-17:
- Warning: Notation le_trans is deprecated since 8.16.
- The Arith.Le file is obsolete. Use Nat.le_trans instead.
- [deprecated-syntactic-definition,deprecated]
- File "./lib/coq/set/Cardinal.v", line 811, characters 9-17:
- Warning: Notation le_trans is deprecated since 8.16.
- The Arith.Le file is obsolete. Use Nat.le_trans instead.
- [deprecated-syntactic-definition,deprecated]
- Coqc     lib/coq/set/Fset.v
- Coqc     lib/coq/set/FsetInduction.v
- Coqc     lib/coq/set/FsetInt.v
- Coqc     lib/coq/set/FsetSum.v
- Coqc     lib/coq/set/SetApp.v
- Coqc     lib/coq/set/SetImp.v
- Coqc     lib/coq/set/SetAppInt.v
- Coqc     lib/coq/set/SetImpInt.v
-> compiled  why3-coq.1.5.1
-> removed   why3-coq.1.5.1
Processing  4/4: [why3-coq: make install-coq]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "make" "install-coq" (CWD=/home/opam/.opam/4.14/.opam-switch/build/why3-coq.1.5.1)
- /usr/bin/mkdir -p /home/opam/.opam/4.14/lib/why3/coq
- /usr/bin/install -c -m 644 lib/coq/version /home/opam/.opam/4.14/lib/why3/coq/
- /usr/bin/install -c -m 644 lib/coq/BuiltIn.vo lib/coq/HighOrd.vo /home/opam/.opam/4.14/lib/why3/coq/
- /usr/bin/mkdir -p /home/opam/.opam/4.14/lib/why3/coq/int
- /usr/bin/install -c -m 644 lib/coq/int/Exponentiation.vo lib/coq/int/Abs.vo lib/coq/int/ComputerDivision.vo lib/coq/int/Div2.vo lib/coq/int/EuclideanDivision.vo lib/coq/int/Int.vo lib/coq/int/MinMax.vo lib/coq/int/Power.vo lib/coq/int/NumOf.vo /home/opam/.opam/4.14/lib/why3/coq/int/
- /usr/bin/mkdir -p /home/opam/.opam/4.14/lib/why3/coq/bool
- /usr/bin/install -c -m 644 lib/coq/bool/Bool.vo /home/opam/.opam/4.14/lib/why3/coq/bool/
- /usr/bin/mkdir -p /home/opam/.opam/4.14/lib/why3/coq/real
- /usr/bin/install -c -m 644 lib/coq/real/Abs.vo lib/coq/real/ExpLog.vo lib/coq/real/FromInt.vo lib/coq/real/MinMax.vo lib/coq/real/PowerInt.vo lib/coq/real/PowerReal.vo lib/coq/real/Real.vo lib/coq/real/RealInfix.vo lib/coq/real/Square.vo lib/coq/real/Trigonometry.vo /home/opam/.opam/4.14/lib/why3/coq/real/
- /usr/bin/mkdir -p /home/opam/.opam/4.14/lib/why3/coq/number
- /usr/bin/install -c -m 644 lib/coq/number/Divisibility.vo lib/coq/number/Gcd.vo lib/coq/number/Parity.vo lib/coq/number/Prime.vo lib/coq/number/Coprime.vo /home/opam/.opam/4.14/lib/why3/coq/number/
- /usr/bin/mkdir -p /home/opam/.opam/4.14/lib/why3/coq/set
- /usr/bin/install -c -m 644 lib/coq/set/Set.vo lib/coq/set/Cardinal.vo lib/coq/set/Fset.vo lib/coq/set/FsetInduction.vo lib/coq/set/FsetInt.vo lib/coq/set/FsetSum.vo lib/coq/set/SetApp.vo lib/coq/set/SetAppInt.vo lib/coq/set/SetImp.vo lib/coq/set/SetImpInt.vo /home/opam/.opam/4.14/lib/why3/coq/set/
- /usr/bin/mkdir -p /home/opam/.opam/4.14/lib/why3/coq/map
- /usr/bin/install -c -m 644 lib/coq/map/Map.vo lib/coq/map/Const.vo lib/coq/map/Occ.vo lib/coq/map/MapPermut.vo lib/coq/map/MapInjection.vo /home/opam/.opam/4.14/lib/why3/coq/map/
- /usr/bin/mkdir -p /home/opam/.opam/4.14/lib/why3/coq/list
- /usr/bin/install -c -m 644 lib/coq/list/List.vo lib/coq/list/Length.vo lib/coq/list/Mem.vo lib/coq/list/Nth.vo lib/coq/list/NthLength.vo lib/coq/list/HdTl.vo lib/coq/list/NthHdTl.vo lib/coq/list/Append.vo lib/coq/list/NthLengthAppend.vo lib/coq/list/Reverse.vo lib/coq/list/HdTlNoOpt.vo lib/coq/list/NthNoOpt.vo lib/coq/list/RevAppend.vo lib/coq/list/Combine.vo lib/coq/list/Distinct.vo lib/coq/list/NumOcc.vo lib/coq/list/Permut.vo /home/opam/.opam/4.14/lib/why3/coq/list/
- /usr/bin/mkdir -p /home/opam/.opam/4.14/lib/why3/coq/option
- /usr/bin/install -c -m 644 lib/coq/option/Option.vo /home/opam/.opam/4.14/lib/why3/coq/option/
- /usr/bin/mkdir -p /home/opam/.opam/4.14/lib/why3/coq/bv
- /usr/bin/install -c -m 644 lib/coq/bv/Pow2int.vo lib/coq/bv/BV_Gen.vo /home/opam/.opam/4.14/lib/why3/coq/bv/
- /usr/bin/mkdir -p /home/opam/.opam/4.14/lib/why3/coq/for_drivers
- /usr/bin/install -c -m 644 lib/coq/for_drivers/ComputerOfEuclideanDivision.vo /home/opam/.opam/4.14/lib/why3/coq/for_drivers/
- /usr/bin/mkdir -p /home/opam/.opam/4.14/share/why3/drivers
- /usr/bin/install -c -m 644 drivers/coq-realizations.aux /home/opam/.opam/4.14/share/why3/drivers/
-> installed why3-coq.1.5.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-17 03:59.03 ---> saved as "827733e0d1dd9b2f0cf6607b5b0a4e030eafee8ca2d267903ce477c326ef9385"
Job succeeded
2026-03-17 04:00.17: Job succeeded