Build:
  1. 0
2026-01-13 04:05.07: New job: test alt-ergo.2.0.0 with dune.3.21.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29216/head (001b427da21d4d746e124eaaffab7b4134813f6d)
                              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/29216/head" && git reset --hard 001b427d
git fetch origin master
git merge --no-edit 1c361fac36225534ee877701522e296785f9a9db
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa
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.21.0 3.21.0
RUN opam reinstall dune.3.21.0; \
    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.21.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall alt-ergo.2.0.0; \
    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" != 'alt-ergo.2.0.0' && 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 alt-ergo.2.0.0) || true
RUN opam reinstall --with-test --verbose alt-ergo.2.0.0; \
    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" != 'alt-ergo.2.0.0' && 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-01-13 04:05.07: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa-dune.3.21.0-alt-ergo.2.0.0-001b427da21d4d746e124eaaffab7b4134813f6d"
2026-01-13 04:05.07: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa)
 (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.21.0 3.21.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.21.0;\
             \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.21.0' && 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 alt-ergo.2.0.0;\
             \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\" != 'alt-ergo.2.0.0' && 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 alt-ergo.2.0.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose alt-ergo.2.0.0;\
             \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\" != 'alt-ergo.2.0.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-01-13 04:05.07: Waiting for resource in pool OCluster
2026-01-13 20:02.02: Waiting for worker…
2026-01-13 20:05.39: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 1c361fac36 Merge pull request #29210 from dinosaure/release-miou-v0.5.1
Merge made by the 'ort' strategy.
 packages/chrome-trace/chrome-trace.3.21.0/opam     | 41 ++++++++++++
 .../dune-action-plugin.3.21.0/opam                 | 54 ++++++++++++++++
 .../dune-build-info/dune-build-info.3.21.0/opam    | 47 ++++++++++++++
 .../dune-configurator.3.21.0/opam                  | 51 +++++++++++++++
 packages/dune-glob/dune-glob.3.21.0/opam           | 44 +++++++++++++
 .../dune-private-libs.3.21.0/opam                  | 52 +++++++++++++++
 packages/dune-rpc-lwt/dune-rpc-lwt.3.21.0/opam     | 43 +++++++++++++
 packages/dune-rpc/dune-rpc.3.21.0/opam             | 46 +++++++++++++
 packages/dune-site/dune-site.3.21.0/opam           | 39 +++++++++++
 packages/dune/dune.3.21.0/opam                     | 75 ++++++++++++++++++++++
 packages/dyn/dyn.3.21.0/opam                       | 42 ++++++++++++
 packages/fs-io/fs-io.3.21.0/opam                   | 41 ++++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.21.0/opam         | 45 +++++++++++++
 packages/ordering/ordering.3.21.0/opam             | 40 ++++++++++++
 packages/stdune/stdune.3.21.0/opam                 | 48 ++++++++++++++
 packages/top-closure/top-closure.3.21.0/opam       | 40 ++++++++++++
 packages/xdg/xdg.3.21.0/opam                       | 41 ++++++++++++
 17 files changed, 789 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.21.0/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.21.0/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.21.0/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.21.0/opam
 create mode 100644 packages/dune-glob/dune-glob.3.21.0/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.21.0/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.21.0/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.21.0/opam
 create mode 100644 packages/dune-site/dune-site.3.21.0/opam
 create mode 100644 packages/dune/dune.3.21.0/opam
 create mode 100644 packages/dyn/dyn.3.21.0/opam
 create mode 100644 packages/fs-io/fs-io.3.21.0/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.21.0/opam
 create mode 100644 packages/ordering/ordering.3.21.0/opam
 create mode 100644 packages/stdune/stdune.3.21.0/opam
 create mode 100644 packages/top-closure/top-closure.3.21.0/opam
 create mode 100644 packages/xdg/xdg.3.21.0/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa)
2026-01-13 20:05.55 ---> using "2ecda48447fc68e8dcd256d2898af0a11126a077e05d747a0dcdff2845100de1" 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-01-13 20:05.55 ---> using "79eb1218297339daa5e94be48ad16ae73f417b872defa106efeff5b5f3323e6e" 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
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-01-13 20:05.55 ---> using "bf81485066c79fc9faf7a51b95869ba9d998fe2bf3de5ff7f59b253fc915122f" 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                 255
# 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-01-13 20:05.55 ---> using "f7c0c02658daf7a6d6c7671a8028e0e553264100bd569724894645b7844f6d7f" 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-01-13 20:05.55 ---> using "9b3e592c65565b9b3dc8b88c605e54ddba818eb105df981d794040a64c2f9916" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-01-13 20:05.56 ---> using "09c39d7126e88ed573ca8f78acbffb48c0088baecebf7a9155a91c3290ace20b" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-13 20:05.56 ---> using "1f9ebb837e22c3f42b1c3f6e7178a2aa2fcb8206685e62bba70fde550083c584" from cache

/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 [9670 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [95.5 kB]
- Fetched 9997 kB in 1s (9884 kB/s)
- Reading package lists...
2026-01-13 20:05.56 ---> using "bc5a313c83583d746179a868806b410c236b5a3d4895b7d8bc464eed6cfe706e" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.21.0 3.21.0"))
dune is now pinned to version 3.21.0
2026-01-13 20:05.56 ---> using "448b2b0e77526967dc1d84c9cd1fd4fdf010f08d862d127b94c63a52bbc324d1" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune.3.21.0;\
                        \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.21.0' && 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.21.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install dune 3.21.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.21.0  (cached)
-> installed dune.3.21.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-13 20:05.56 ---> using "5acb627376dc8b6ecaceedd8635589b9dfb44ea06abcf3fc03092c3e94ea4126" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall alt-ergo.2.0.0;\
                        \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\" != 'alt-ergo.2.0.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
alt-ergo.2.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 12 packages
  - install alt-ergo        2.0.0
  - install camlzip         1.07     [required by alt-ergo]
  - install conf-autoconf   0.2      [required by alt-ergo]
  - install conf-gmp        5        [required by zarith]
  - install conf-pkg-config 4        [required by zarith]
  - install menhir          20211128 [required by alt-ergo]
  - install menhirLib       20211128 [required by menhir]
  - install menhirSdk       20211128 [required by menhir]
  - install num             1.6      [required by alt-ergo]
  - install ocamlfind       1.9.8    [required by ocplib-simplex, camlzip, zarith]
  - install ocplib-simplex  0.4.1    [required by alt-ergo]
  - install zarith          1.14     [required by alt-ergo]

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

<><> 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" "zlib1g-dev"
- 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 ... 20622 files and directories currently installed.)
- Preparing to unpack .../00-m4_1.4.19-8_amd64.deb ...
- Unpacking m4 (1.4.19-8) ...
- Selecting previously unselected package autoconf.
- Preparing to unpack .../01-autoconf_2.72-3.1_all.deb ...
- Unpacking autoconf (2.72-3.1) ...
- Selecting previously unselected package autotools-dev.
- Preparing to unpack .../02-autotools-dev_20240727.1_all.deb ...
- Unpacking autotools-dev (20240727.1) ...
- Selecting previously unselected package automake.
- Preparing to unpack .../03-automake_1%3a1.17-4_all.deb ...
- Unpacking automake (1:1.17-4) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../04-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 .../05-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 .../06-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../07-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../08-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../09-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../10-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- 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 zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- 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) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alt-ergo.2.0.0  (https://opam.ocaml.org/cache)
-> retrieved camlzip.1.07  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved menhir.20211128, menhirLib.20211128, menhirSdk.20211128  (cached)
-> installed conf-autoconf.0.2
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved num.1.6  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-simplex.0.4.1  (cached)
-> retrieved zarith.1.14  (cached)
-> installed menhirSdk.20211128
-> installed menhirLib.20211128
-> installed num.1.6
-> installed ocamlfind.1.9.8
-> installed camlzip.1.07
-> installed ocplib-simplex.0.4.1
-> installed zarith.1.14
-> installed menhir.20211128
-> installed alt-ergo.2.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-13 20:06.41 ---> saved as "68b85bcafe8c49a3e3fc47457c754dccfd84cd8bbfc85e0d32bf66d0a23c5699"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alt-ergo.2.0.0  (https://opam.ocaml.org/cache)
-> removed   alt-ergo.2.0.0
-> installed alt-ergo.2.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-13 20:07.09 ---> saved as "868f20cf1bc725022ee9eb7fd535dfa9191af0cb93c541a1353554549686e3de"

/home/opam: (run (shell  "opam reinstall --with-test --verbose alt-ergo.2.0.0;\
                        \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\" != 'alt-ergo.2.0.0' && 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 alt-ergo 2.0.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [alt-ergo.2.0.0: extract]
-> retrieved alt-ergo.2.0.0  (cached)
[alt-ergo: patch] applying makefile.user_replace_echo_by_printf.patch
[alt-ergo: patch] applying patch_for_changes_in_num_library.patch
Processing  2/4: [alt-ergo: autoconf]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "autoconf" (CWD=/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0)
- configure.in:315: warning: AC_OUTPUT should be used without arguments.
- configure.in:315: You should run autoupdate.
Processing  2/4: [alt-ergo: ./configure]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "./configure" "-prefix" "/home/opam/.opam/4.14" (CWD=/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0)
- checking for ocp-ocamlc... no
- checking for ocamlc... ocamlc
- ocaml version is 4.14.2
- ocaml library path is /home/opam/.opam/4.14/lib/ocaml
- checking for ocamlfind... yes
- ocamlfind found zarith in -I /home/opam/.opam/4.14/lib/zarith
- ocamlfind found num in -I /home/opam/.opam/4.14/lib/num
- ocamlfind found camlzip in -I /home/opam/.opam/4.14/lib/camlzip/../zip
- ocamlfind found ocplib-simplex in -I /home/opam/.opam/4.14/lib/ocplib-simplex
- checking for ocp-ocamlopt... no
- checking for ocamlopt... ocamlopt
- checking ocamlopt version... ok
- checking for ocp-ocamlc.opt... no
- checking for ocamlc.opt... ocamlc.opt
- checking ocamlc.opt version... ok
- checking for ocp-ocamlopt.opt... no
- checking for ocamlopt.opt... ocamlopt.opt
- checking ocamlc.opt version... ok
- checking for ocamldep... ocamldep
- checking for ocamllex... ocamllex
- checking for ocamllex.opt... ocamllex.opt
- checking for menhir... menhir
- ocamlfind: Package `lablgtk2.sourceview2' not found
- checking for /home/opam/.opam/4.14/lib/ocaml/lablgtk2/lablgtksourceview2.cma... no
- Will not be able to compile GUI. Please install the *liblablgtksourceview2-ocaml-dev* Debian package - or use the GODI caml package system *http://godi.ocaml-programming.de/* - or compile from sources *http://wwwfun.kurims.kyoto-u.ac.jp/soft/lsl/lablgtk.html*
- checking for ocamlweb... true
- checking platform... configure: creating ./config.status
- config.status: creating Makefile.configurable
- config.status: WARNING:  'Makefile.configurable.in' seems to ignore the --datarootdir setting
Processing  2/4: [alt-ergo: make]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" (CWD=/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0)
- menhir -v parsers/why/why_parser.mly 
- ocamllex.opt parsers/why/why_lexer.mll > /dev/null
- ocamldep -slash -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/util/*.ml* lib/structures/*.ml* lib/reasoners/*.ml* lib/frontend/*.ml* tools/text/*.ml* \
-         tools/gui/*.ml* parsers/why/*.ml* plugins/common/*ml* plugins/satML/*ml* plugins/fm-simplex/*ml* > .depend
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/util/config.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/util/version.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/util/version.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/util/emap.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/util/emap.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/util/myUnix.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/util/myUnix.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/util/myUnix.ml", line 19, characters 7-22:
- 19 |     if Pervasives.(<>) timelimit 0. then
-             ^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/util/myDynlink.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/util/myDynlink.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/util/myZip.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/util/myZip.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/util/util.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/util/util.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/util/lists.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/util/lists.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/util/numbersInterface.mli
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/util/numsNumbers.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/util/numsNumbers.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/util/zarithNumbers.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/util/zarithNumbers.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/util/zarithNumbers.ml", line 156, characters 16-30:
- 156 |     let abs_n = Pervasives.abs n in
-                       ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/util/numbers.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/util/numbers.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/util/numbers.ml", line 50, characters 13-27:
- 50 |           if Pervasives.(<) v min_float then min_float
-                   ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/util/numbers.ml", line 51, characters 18-32:
- 51 |           else if Pervasives.(>) v max_float then max_float
-                        ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/util/options.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/util/options.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/util/options.ml", line 30, characters 20-70:
- 30 |   [@ocaml.ppwarning "Options: should not parse args here in 'lib mod'"]
-                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: Options: should not parse args here in 'lib mod'
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/util/options.ml", line 568, characters 33-51:
- 568 | let compare  (a: int) (b: int) = Pervasives.compare a b
-                                        ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/util/cmdline_parser.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/util/timers.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/util/timers.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/util/gc_debug.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/util/gc_debug.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/util/loc.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/util/loc.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/util/hconsing.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/util/hconsing.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/util/hstring.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/util/hstring.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/structures/ty.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/structures/ty.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/structures/ty.ml", line 206, characters 33-51:
- 206 |     | Tvar{v=v1} , Tvar{v=v2} -> Pervasives.compare v1 v2
-                                        ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/structures/ty.ml", line 229, characters 17-35:
- 229 |     | t1 , t2 -> Pervasives.compare t1 t2
-                        ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/structures/ty.ml", line 272, characters 52-70:
- 272 | module M = Map.Make(struct type t=int let compare = Pervasives.compare end)
-                                                           ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/structures/ty.ml", line 341, characters 30-48:
- 341 | let compare_subst = M.compare Pervasives.compare
-                                     ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/structures/ty.ml", line 343, characters 26-40:
- 343 | let equal_subst = M.equal Pervasives.(=)
-                                 ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/structures/ty.ml", line 384, characters 45-63:
- 384 |   Set.Make(struct type t = int let compare = Pervasives.compare end)
-                                                    ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/structures/symbols.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/structures/symbols.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/structures/symbols.ml", line 118, characters 10-28:
- 118 |   | _  -> Pervasives.compare s1 s2
-                 ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/structures/term.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/structures/term.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/structures/term.ml", line 273, characters 4-18:
- 273 |     Pervasives.(=) (String.sub (Sy.to_string v.f) 0 4) "_sko"
-           ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/structures/term.ml", line 341, characters 6-20:
- 341 |   try Pervasives.(=) (String.sub (Hstring.view h) 0 6) "model:"
-             ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/structures/literal.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/structures/literal.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/structures/literal.ml", line 98, characters 22-40:
- 98 |   let compare a1 a2 = Pervasives.compare a1.tpos a2.tpos
-                            ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/structures/formula.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/structures/formula.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/structures/formula.ml", line 112, characters 10-28:
- 112 |   let c = Pervasives.compare (size f1) (size f2) in
-                 ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/structures/formula.ml", line 113, characters 14-32:
- 113 |   if c=0 then Pervasives.compare v1.tag v2.tag else c
-                     ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/structures/formula.ml", line 772, characters 6-20:
- 772 |   try Pervasives.(=) (String.sub (Hstring.view h) 0 6) "model:"
-             ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/structures/explanation.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/structures/explanation.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/structures/exception.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/structures/exception.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/structures/parsed.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/structures/parsed.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/structures/errors.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/structures/errors.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/structures/typed.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/structures/typed.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/structures/fpa_rounding.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/structures/fpa_rounding.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/structures/commands.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/structures/commands.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/structures/profiling.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/structures/profiling.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/structures/profiling.ml", line 89, characters 7-21:
- 89 |     if Pervasives.(>) v 0. then v else -. v
-             ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/structures/profiling.ml", line 636, characters 5-19:
- 636 |   if Pervasives.(=) v 0. then fprintf fmt "--     "
-            ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/structures/profiling.ml", line 637, characters 10-24:
- 637 |   else if Pervasives.(<) v 10. then fprintf fmt "%0.5f" v
-                 ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/structures/profiling.ml", line 638, characters 10-24:
- 638 |   else if Pervasives.(<) v 100. then fprintf fmt "%0.4f" v
-                 ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/reasoners/matching_types.mli
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/reasoners/sig.mli
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/reasoners/matching.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/reasoners/matching.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/reasoners/use.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/reasoners/use.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/reasoners/ac.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/reasoners/ac.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/reasoners/uf.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/reasoners/uf.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/reasoners/sum.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/reasoners/sum.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/reasoners/records.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/reasoners/records.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/reasoners/polynome.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/reasoners/polynome.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/reasoners/bitv.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/reasoners/bitv.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/reasoners/arrays.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/reasoners/arrays.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/reasoners/intervals.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/reasoners/intervals.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/reasoners/intervals.ml", line 981, characters 19-32:
- 981 |   let zero_inf_r = new_borne_inf Ex.empty Q.zero true (undefined Ty.Treal) in
-                          ^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label is_le was omitted in the application of this function.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/reasoners/intervals.ml", line 982, characters 19-32:
- 982 |   let zero_inf_i = new_borne_inf Ex.empty Q.zero true (undefined Ty.Tint) in
-                          ^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label is_le was omitted in the application of this function.
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/reasoners/inequalities.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/reasoners/inequalities.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/reasoners/intervalCalculus.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/reasoners/intervalCalculus.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/reasoners/intervalCalculus.ml", line 895, characters 3-18:
- 895 | 	  I.new_borne_sup expl b is_le uints
-       	  ^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label is_le was omitted in the application of this function.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/reasoners/intervalCalculus.ml", line 897, characters 3-18:
- 897 | 	  I.new_borne_inf expl b is_le uints in
-       	  ^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label is_le was omitted in the application of this function.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/reasoners/intervalCalculus.ml", line 915, characters 12-27:
- 915 |             I.new_borne_inf expl c is_le (I.undefined ty)
-                   ^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label is_le was omitted in the application of this function.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/reasoners/intervalCalculus.ml", line 917, characters 5-20:
- 917 | 	    I.new_borne_sup expl c is_le (I.undefined ty) in
-       	    ^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label is_le was omitted in the application of this function.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/reasoners/intervalCalculus.ml", line 1148, characters 12-16:
- 1148 |             func (Explanation.union ineq_ex ex_b) b is_le ix
-                    ^^^^
- Warning 6 [labels-omitted]: label is_le was omitted in the application of this function.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/reasoners/intervalCalculus.ml", line 1181, characters 12-16:
- 1181 |             func (Explanation.union ineq_ex ex_b) b is_le ip
-                    ^^^^
- Warning 6 [labels-omitted]: label is_le was omitted in the application of this function.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/reasoners/intervalCalculus.ml", line 1854, characters 16-34:
- 1854 |       let res = default_case_split env uf for_model in
-                        ^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label for_model was omitted in the application of this function.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/reasoners/intervalCalculus.ml", line 1892, characters 32-77:
- 1892 |               [@ocaml.ppwarning "TODO: find an example triggering this case!"]
-                                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: TODO: find an example triggering this case!
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/reasoners/arith.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/reasoners/arith.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/reasoners/combine.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/reasoners/combine.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/reasoners/combine.ml", lines 484-485, characters 30-55:
- 484 | .............................."TODO: a simple way of handling equalities \
- 485 | with void and unit is to add this case is the solver !".
- Warning 22 [preprocessor]: TODO: a simple way of handling equalities with void and unit is to add this case is the solver !
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/reasoners/combine.ml", line 774, characters 15-30:
- 774 |     let seq1 = Rel1.case_split env.r1 uf for_model in
-                      ^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label for_model was omitted in the application of this function.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/reasoners/combine.ml", line 775, characters 15-30:
- 775 |     let seq2 = Rel2.case_split env.r2 uf for_model in
-                      ^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label for_model was omitted in the application of this function.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/reasoners/combine.ml", line 776, characters 15-30:
- 776 |     let seq3 = Rel3.case_split env.r3 uf for_model in
-                      ^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label for_model was omitted in the application of this function.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/reasoners/combine.ml", line 777, characters 15-30:
- 777 |     let seq4 = Rel4.case_split env.r4 uf for_model in
-                      ^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label for_model was omitted in the application of this function.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/reasoners/combine.ml", line 778, characters 15-30:
- 778 |     let seq5 = Rel5.case_split env.r5 uf for_model in
-                      ^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label for_model was omitted in the application of this function.
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/reasoners/ccx.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/reasoners/ccx.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/reasoners/ccx.ml", line 615, characters 10-24:
- 615 |     match Rel.case_split env.relation env.uf for_model with
-                 ^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label for_model was omitted in the application of this function.
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/reasoners/theory.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/reasoners/theory.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/reasoners/theory.ml", line 323, characters 30-45:
- 323 |             let l, base_env = CC_X.case_split base_env for_model in
-                                     ^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label for_model was omitted in the application of this function.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/reasoners/theory.ml", line 408, characters 25-37:
- 408 | 	if t.choices == [] then look_for_sat [] t t.gamma [] for_model
-       	                        ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label for_model was omitted in the application of this function.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/reasoners/theory.ml", line 412, characters 5-17:
- 412 | 	    look_for_sat ch t env [] for_model
-       	    ^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label for_model was omitted in the application of this function.
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/reasoners/instances.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/reasoners/instances.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/reasoners/sat_solver_sig.mli
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/reasoners/fun_sat.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/reasoners/fun_sat.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/reasoners/fun_sat.ml", line 73, characters 31-46:
- 73 |           stable := !stable && Pervasives.(<=) w 1e100;
-                                     ^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/reasoners/fun_sat.ml", line 99, characters 18-36:
- 99 |           let c = Pervasives.compare b2 b1 in
-                        ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/reasoners/fun_sat.ml", line 101, characters 15-33:
- 101 |           else Pervasives.compare x2 x1
-                      ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/reasoners/fun_sat.ml", line 967, characters 4-19:
- 967 |     Pervasives.(<>) (Options.interpretation_timelimit ()) 0. then
-           ^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/reasoners/fun_sat.ml", line 1422, characters 13-24:
- 1422 |   let tbox = Th.add_term tbox Term.vrai true in
-                     ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label add_in_cs was omitted in the application of this function.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/reasoners/fun_sat.ml", line 1423, characters 13-24:
- 1423 |   let tbox = Th.add_term tbox Term.faux true in
-                     ^^^^^^^^^^^
- Warning 6 [labels-omitted]: label add_in_cs was omitted in the application of this function.
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/reasoners/sat_solver.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/reasoners/sat_solver.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/frontend/triggers.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/frontend/triggers.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/frontend/triggers.ml", line 37, characters 54-72:
- 37 | module Vtype = Set.Make(struct type t=int let compare=Pervasives.compare end)
-                                                            ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/frontend/triggers.ml", line 54, characters 17-35:
- 54 |       | x , y -> Pervasives.compare x y
-                       ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/frontend/triggers.ml", line 59, characters 9-27:
- 59 | 	let c = Pervasives.compare x y in if c=0 then compare_list l1 l2 else c
-      	        ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/frontend/triggers.ml", line 79, characters 11-29:
- 79 |     | _ -> Pervasives.compare c1 c2
-                 ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/frontend/triggers.ml", line 155, characters 28-46:
- 155 |       if c <> 0 then c else Pervasives.compare (a1, b1, c1, d1) (a2, b2, c2, d2)
-                                   ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/frontend/triggers.ml", line 193, characters 14-32:
- 193 |       let c = Pervasives.compare a1 a2 in
-                     ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/frontend/typechecker.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/frontend/typechecker.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/frontend/typechecker.ml", line 39, characters 48-66:
- 39 |   Map.Make(struct type t = string let compare = Pervasives.compare end)
-                                                      ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/frontend/typechecker.ml", line 81, characters 30-44:
- 81 |          | PPTvarid (y, _) -> Pervasives.(=) x y
-                                    ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/frontend/typechecker.ml", line 100, characters 35-49:
- 100 |     | PPTexternal (l, s, loc) when Pervasives.(=) s "farray" ->
-                                          ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/frontend/typechecker.ml", line 111, characters 28-42:
- 111 | 	| Some (id, vars, ty) when Pervasives.(=) s id &&
-       	                           ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/frontend/typechecker.ml", line 739, characters 7-21:
- 739 | 		  if Pervasives.(=) p "<=" || Pervasives.(=) p "<" then
-       		     ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/frontend/typechecker.ml", line 739, characters 32-46:
- 739 | 		  if Pervasives.(=) p "<=" || Pervasives.(=) p "<" then
-       		                              ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/frontend/typechecker.ml", line 1726, characters 6-20:
- 1726 |   try Pervasives.(=) (String.sub s 0 2) "@L" with Invalid_argument _ -> false
-              ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/frontend/typechecker.ml", line 1729, characters 6-20:
- 1729 |   try Pervasives.(=) (String.sub s 0 2) "@H" with Invalid_argument _ -> false
-              ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/frontend/cnf.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/frontend/cnf.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/frontend/cnf.ml", lines 42-43, characters 20-65:
- 42 | ...................."TODO: Change Symbols.Float to store FP numeral \
- 43 |    constants (eg, <24, -149> for single) instead of having terms".
- Warning 22 [preprocessor]: TODO: Change Symbols.Float to store FP numeral constants (eg, <24, -149> for single) instead of having terms
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/frontend/parsed_interface.mli
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/frontend/parsed_interface.mli", line 17, characters 20-77:
- 17 |   [@ocaml.ppwarning "TODO: add documentation for every function in this file"]
-                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: TODO: add documentation for every function in this file
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/frontend/parsed_interface.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/frontend/frontend.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/frontend/frontend.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/frontend/parsers.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo lib/frontend/parsers.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/frontend/parsers.ml", line 39, characters 20-70:
- 39 |   [@ocaml.ppwarning "TODO: add the ability to add parsers dynamically"]
-                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: TODO: add the ability to add parsers dynamically
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/lib/frontend/parsers.ml", line 104, characters 9-24:
- 104 |       if Pervasives.(<>) file "" then
-                ^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex parsers/why/why_parser.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo parsers/why/why_parser.ml
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo parsers/why/why_lexer.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex tools/text/main_text.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo tools/text/main_text.ml
- ocamlopt.opt -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo -o alt-ergo.opt zarith.cmxa nums.cmxa unix.cmxa dynlink.cmxa str.cmxa zip.cmxa ocplibSimplex.cmxa lib/util/config.cmx lib/util/version.cmx lib/util/emap.cmx lib/util/myUnix.cmx lib/util/myDynlink.cmx lib/util/myZip.cmx lib/util/util.cmx lib/util/lists.cmx lib/util/numsNumbers.cmx lib/util/zarithNumbers.cmx lib/util/numbers.cmx lib/util/options.cmx lib/util/cmdline_parser.cmx lib/util/timers.cmx lib/util/gc_debug.cmx lib/util/loc.cmx lib/util/hconsing.cmx lib/util/hstring.cmx lib/structures/exception.cmx lib/structures/symbols.cmx lib/structures/ty.cmx lib/structures/parsed.cmx lib/structures/errors.cmx lib/structures/typed.cmx lib/structures/term.cmx lib/structures/fpa_rounding.cmx lib/structures/literal.cmx lib/structures/formula.cmx lib/structures/explanation.cmx lib/structures/commands.cmx lib/structures/profiling.cmx lib/reasoners/matching.cmx lib/reasoners/instances.cmx lib/reasoners/polynome.cmx lib/reasoners/ac.cmx lib/reasoners/uf.cmx lib/reasoners/use.cmx lib/reasoners/intervals.cmx lib/reasoners/inequalities.cmx lib/reasoners/intervalCalculus.cmx lib/reasoners/arith.cmx lib/reasoners/records.cmx lib/reasoners/bitv.cmx lib/reasoners/arrays.cmx lib/reasoners/sum.cmx lib/reasoners/combine.cmx lib/reasoners/ccx.cmx lib/reasoners/theory.cmx lib/reasoners/fun_sat.cmx lib/reasoners/sat_solver.cmx lib/frontend/triggers.cmx lib/frontend/typechecker.cmx lib/frontend/cnf.cmx lib/frontend/parsed_interface.cmx lib/frontend/frontend.cmx lib/frontend/parsers.cmx parsers/why/why_parser.cmx parsers/why/why_lexer.cmx tools/text/main_text.cmx
- gui compilation skipped (lablgtksourceview not detected)
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex plugins/common/vec.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo plugins/common/vec.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex plugins/satML/satml.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo plugins/satML/satml.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/plugins/satML/satml.ml", line 1264, characters 4-18:
- 1264 |     Pervasives.(<) (Vec.get env.vars j).weight (Vec.get env.vars i).weight
-            ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/plugins/satML/satml.ml", line 1278, characters 7-21:
- 1278 |     if Pervasives.(>) v.weight 1e100 then begin
-               ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/plugins/satML/satml.ml", line 1290, characters 7-21:
- 1290 |     if Pervasives.(>) c.activity 1e20 then begin
-               ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/plugins/satML/satml.ml", line 1597, characters 12-30:
- 1597 |     let c = Pervasives.compare c1.activity c2.activity in
-                    ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex plugins/satML/satml_frontend.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo plugins/satML/satml_frontend.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/plugins/satML/satml_frontend.ml", line 308, characters 26-79:
- 308 |         [@ocaml.ppwarning "TODO: modifications made in tbox are lost! improve?"]
-                                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 22 [preprocessor]: TODO: modifications made in tbox are lost! improve?
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/plugins/satML/satml_frontend.ml", line 306, characters 6-27:
- 306 |       Th.theories_instances
-             ^^^^^^^^^^^^^^^^^^^^^
- Warning 6 [labels-omitted]: label do_syntactic_matching was omitted in the application of this function.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0/plugins/satML/satml_frontend.ml", line 480, characters 16-34:
- 480 |       let res = Pervasives.compare w2 w1 in
-                       ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
- 
- If you need to stay compatible with OCaml < 4.07, you can use the 
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlopt.opt -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex  -shared -o satML-plugin.cmxs plugins/common/vec.cmx plugins/satML/satml.cmx plugins/satML/satml_frontend.cmx
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo plugins/fm-simplex/simplex.ml
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo plugins/fm-simplex/simplex_cache.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex plugins/fm-simplex/fmSimplexIneqs.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex -for-pack AltErgo plugins/fm-simplex/fmSimplexIneqs.ml
- ocamlopt.opt -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith   -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex  -shared -o fm-simplex-plugin.cmxs plugins/common/vec.cmx plugins/fm-simplex/simplex_cache.cmx plugins/fm-simplex/simplex.cmx plugins/fm-simplex/fmSimplexIneqs.cmx
-> compiled  alt-ergo.2.0.0
[alt-ergo: patch] applying makefile.user_replace_echo_by_printf.patch
[alt-ergo: patch] applying patch_for_changes_in_num_library.patch
Processing  3/4: [alt-ergo: autoconf]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "autoconf" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/alt-ergo.2.0.0)
- configure.in:315: warning: AC_OUTPUT should be used without arguments.
- configure.in:315: You should run autoupdate.
Processing  3/4: [alt-ergo: ./configure]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "./configure" "-prefix" "/home/opam/.opam/4.14" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/alt-ergo.2.0.0)
- checking for ocp-ocamlc... no
- checking for ocamlc... ocamlc
- ocaml version is 4.14.2
- ocaml library path is /home/opam/.opam/4.14/lib/ocaml
- checking for ocamlfind... yes
- ocamlfind found zarith in -I /home/opam/.opam/4.14/lib/zarith
- ocamlfind found num in -I /home/opam/.opam/4.14/lib/num
- ocamlfind found camlzip in -I /home/opam/.opam/4.14/lib/camlzip/../zip
- ocamlfind found ocplib-simplex in -I /home/opam/.opam/4.14/lib/ocplib-simplex
- checking for ocp-ocamlopt... no
- checking for ocamlopt... ocamlopt
- checking ocamlopt version... ok
- checking for ocp-ocamlc.opt... no
- checking for ocamlc.opt... ocamlc.opt
- checking ocamlc.opt version... ok
- checking for ocp-ocamlopt.opt... no
- checking for ocamlopt.opt... ocamlopt.opt
- checking ocamlc.opt version... ok
- checking for ocamldep... ocamldep
- checking for ocamllex... ocamllex
- checking for ocamllex.opt... ocamllex.opt
- checking for menhir... menhir
- ocamlfind: Package `lablgtk2.sourceview2' not found
- checking for /home/opam/.opam/4.14/lib/ocaml/lablgtk2/lablgtksourceview2.cma... no
- Will not be able to compile GUI. Please install the *liblablgtksourceview2-ocaml-dev* Debian package - or use the GODI caml package system *http://godi.ocaml-programming.de/* - or compile from sources *http://wwwfun.kurims.kyoto-u.ac.jp/soft/lsl/lablgtk.html*
- checking for ocamlweb... true
- checking platform... configure: creating ./config.status
- config.status: creating Makefile.configurable
- config.status: WARNING:  'Makefile.configurable.in' seems to ignore the --datarootdir setting
Processing  3/4: [alt-ergo: make uninstall]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "make" "uninstall" "MANDIR=/home/opam/.opam/4.14/man" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/alt-ergo.2.0.0)
- menhir -v parsers/why/why_parser.mly 
- ocamllex.opt parsers/why/why_lexer.mll > /dev/null
- ocamldep -slash -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I plugins/common -I plugins/satML -I plugins/fm-simplex lib/util/*.ml* lib/structures/*.ml* lib/reasoners/*.ml* lib/frontend/*.ml* tools/text/*.ml* \
-         tools/gui/*.ml* parsers/why/*.ml* plugins/common/*ml* plugins/satML/*ml* plugins/fm-simplex/*ml* > .depend
- rm: cannot remove '/home/opam/.opam/4.14/bin/altgr-ergo': No such file or directory
- make: [Makefile.users:251: uninstall] Error 1 (ignored)
- rm: cannot remove '/home/opam/.opam/4.14/share/alt-ergo/gtksourceview-2.0/language-specs/alt-ergo.lang': No such file or directory
- make: [Makefile.users:252: uninstall] Error 1 (ignored)
-> removed   alt-ergo.2.0.0
Processing  4/4: [alt-ergo: make install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "make" "install" "MANDIR=/home/opam/.opam/4.14/man" (CWD=/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.2.0.0)
- mkdir -p /home/opam/.opam/4.14/man/man1
- cp -f doc/alt-ergo.1 /home/opam/.opam/4.14/man/man1
- mkdir -p /home/opam/.opam/4.14/lib/alt-ergo/preludes
- cp -f preludes/fpa-theory-2017-01-04-16h00.why /home/opam/.opam/4.14/lib/alt-ergo/preludes/
- mkdir -p /home/opam/.opam/4.14/bin
- cp -f alt-ergo.opt /home/opam/.opam/4.14/bin/alt-ergo
- mkdir -p /home/opam/.opam/4.14/lib/alt-ergo/plugins
- cp -f fm-simplex-plugin.cmxs /home/opam/.opam/4.14/lib/alt-ergo/plugins
- mkdir -p /home/opam/.opam/4.14/lib/alt-ergo/plugins
- cp -f satML-plugin.cmxs /home/opam/.opam/4.14/lib/alt-ergo/plugins
-> installed alt-ergo.2.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-13 20:07.37 ---> saved as "6b20191db92d68c66abe39a6e01d8d59231004dcfe2e55c68b3bb54117e44a49"
Job succeeded
2026-01-13 20:07.51: Job succeeded