Build:
- 0
2026-01-13 04:04.58: New job: test lambdapi.2.1.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 lambdapi.2.1.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" != 'lambdapi.2.1.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 lambdapi.2.1.0) || true
RUN opam reinstall --with-test --verbose lambdapi.2.1.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" != 'lambdapi.2.1.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:04.58: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa-dune.3.21.0-lambdapi.2.1.0-001b427da21d4d746e124eaaffab7b4134813f6d"
2026-01-13 04:04.58: 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 lambdapi.2.1.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\" != 'lambdapi.2.1.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 lambdapi.2.1.0) || true"))
(run (shell "opam reinstall --with-test --verbose lambdapi.2.1.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\" != 'lambdapi.2.1.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:04.58: Waiting for resource in pool OCluster
2026-01-13 18:09.36: Waiting for worker…
2026-01-13 18:12.43: Got resource from pool OCluster
Building on eumache
All commits already cached
Updating files: 94% (18144/19211)
Updating files: 95% (18251/19211)
Updating files: 96% (18443/19211)
Updating files: 97% (18635/19211)
Updating files: 98% (18827/19211)
Updating files: 99% (19019/19211)
Updating files: 100% (19211/19211)
Updating files: 100% (19211/19211), done.
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 18:12.39 ---> 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 18:12.39 ---> 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.
Continue? [Y/n] y
Format upgrade done.
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.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-01-13 18:12.39 ---> 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 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2026-01-13 18:12.39 ---> 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 18:12.39 ---> using "9b3e592c65565b9b3dc8b88c605e54ddba818eb105df981d794040a64c2f9916" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-01-13 18:12.40 ---> using "09c39d7126e88ed573ca8f78acbffb48c0088baecebf7a9155a91c3290ace20b" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-13 18:12.40 ---> 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 (7296 kB/s)
- Reading package lists...
-
2026-01-13 18:12.40 ---> 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 18:12.40 ---> 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 18:12.40 ---> using "5acb627376dc8b6ecaceedd8635589b9dfb44ea06abcf3fc03092c3e94ea4126" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall lambdapi.2.1.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\" != 'lambdapi.2.1.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
lambdapi.2.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 24 packages
- install bindlib 5.0.1 [required by lambdapi]
- install camlp-streams 5.0.1 [required by pratter]
- install cmdliner 1.0.4 [required by lambdapi]
- install conf-autoconf 0.2 [required by why3]
- install gen 1.1 [required by sedlex]
- install lambdapi 2.1.0
- install menhir 20250912 [required by lambdapi]
- install menhirCST 20250912 [required by menhir]
- install menhirLib 20250912 [required by menhir]
- install menhirSdk 20250912 [required by menhir]
- install num 1.6 [required by why3]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocamlbuild 0.16.1 [required by bindlib]
- install ocamlfind 1.9.8 [required by bindlib, why3]
- install ppx_derivers 1.2.1 [required by ppxlib]
- install ppxlib 0.37.0 [required by sedlex]
- install pratter 1.2.1 [required by lambdapi]
- install sedlex 3.7 [required by lambdapi]
- install seq base [required by gen]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by lambdapi]
- install timed 1.1 [required by lambdapi]
- install why3 1.4.1 [required by lambdapi]
- install yojson 3.0.0 [required by lambdapi]
The following system packages will first need to be installed:
autoconf
<><> 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"
- 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 .../archives/m4_1.4.19-8_amd64.deb ...
- Unpacking m4 (1.4.19-8) ...
- Selecting previously unselected package autoconf.
- Preparing to unpack .../autoconf_2.72-3.1_all.deb ...
- Unpacking autoconf (2.72-3.1) ...
- Selecting previously unselected package autotools-dev.
- Preparing to unpack .../autotools-dev_20240727.1_all.deb ...
- Unpacking autotools-dev (20240727.1) ...
- Selecting previously unselected package automake.
- Preparing to unpack .../automake_1%3a1.17-4_all.deb ...
- Unpacking automake (1:1.17-4) ...
- Setting up m4 (1.4.19-8) ...
- Setting up autotools-dev (20240727.1) ...
- Setting up autoconf (2.72-3.1) ...
- Setting up automake (1:1.17-4) ...
- update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bindlib.5.0.1 (cached)
-> retrieved camlp-streams.5.0.1 (cached)
-> retrieved cmdliner.1.0.4 (cached)
-> retrieved gen.1.1 (cached)
-> installed conf-autoconf.0.2
-> retrieved lambdapi.2.1.0 (https://opam.ocaml.org/cache)
-> installed camlp-streams.5.0.1
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912 (cached)
-> retrieved num.1.6 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> installed menhirCST.20250912
-> installed ppx_derivers.1.2.1
-> retrieved ppxlib.0.37.0 (cached)
-> installed menhirSdk.20250912
-> retrieved pratter.1.2.1 (cached)
-> retrieved sedlex.3.7 (cached)
-> retrieved seq.base (cached)
-> installed seq.base
-> retrieved sexplib0.v0.17.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved timed.1.1 (cached)
-> installed menhirLib.20250912
-> installed pratter.1.2.1
-> retrieved why3.1.4.1 (cached)
-> installed ocaml-compiler-libs.v0.12.4
-> installed sexplib0.v0.17.0
-> installed gen.1.1
-> installed stdlib-shims.0.3.0
-> installed timed.1.1
-> retrieved yojson.3.0.0 (cached)
-> installed cmdliner.1.0.4
-> installed num.1.6
-> installed yojson.3.0.0
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed bindlib.5.0.1
-> installed menhir.20250912
-> installed ppxlib.0.37.0
-> installed sedlex.3.7
-> installed why3.1.4.1
-> installed lambdapi.2.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-13 18:14.27 ---> saved as "f2e6c35ef68ba6d79e14596ee974373013aac9350ac7a70006edfdbf0dc23f40"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test lambdapi.2.1.0) || true"))
The following actions will be performed:
=== recompile 2 packages
- recompile lambdapi 2.1.0
- recompile why3 1.4.1 [uses re]
=== install 13 packages
- install alcotest 1.5.0 [required by lambdapi]
- install alt-ergo 1.30 [required by lambdapi]
- install astring 0.8.5 [required by alcotest]
- install camlzip 1.07 [required by alt-ergo]
- install conf-gmp 5 [required by zarith]
- install conf-pkg-config 4 [required by zarith]
- install fmt 0.9.0 [required by alcotest]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install ocplib-simplex 0.3 [required by alt-ergo]
- install re 1.14.0 [required by alcotest]
- install topkg 1.1.1 [required by fmt, astring, uutf]
- install uutf 1.0.3 [required by alcotest]
- install zarith 1.14 [required by alt-ergo]
The following system packages will first need to be installed:
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" "libgmp-dev" "pkg-config" "zlib1g-dev"
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- (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 ... 20942 files and directories currently installed.)
- Preparing to unpack .../0-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 .../1-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 .../2-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../4-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../5-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 .../6-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 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 zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- 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 alcotest.1.5.0 (https://opam.ocaml.org/cache)
-> retrieved alt-ergo.1.30 (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
-> retrieved camlzip.1.07 (https://opam.ocaml.org/cache)
-> retrieved conf-gmp.5 (https://opam.ocaml.org/cache)
-> installed conf-gmp.5
-> retrieved fmt.0.9.0 (https://opam.ocaml.org/cache)
-> installed conf-pkg-config.4
-> retrieved lambdapi.2.1.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved ocplib-simplex.0.3 (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0 (https://opam.ocaml.org/cache)
-> retrieved topkg.1.1.1 (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.3 (https://opam.ocaml.org/cache)
-> installed camlzip.1.07
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.14.0
-> retrieved why3.1.4.1 (https://opam.ocaml.org/cache)
-> retrieved zarith.1.14 (https://opam.ocaml.org/cache)
-> installed ocplib-simplex.0.3
-> removed lambdapi.2.1.0
-> removed why3.1.4.1
-> installed topkg.1.1.1
-> installed zarith.1.14
-> installed uutf.1.0.3
-> installed fmt.0.9.0
-> installed astring.0.8.5
-> installed alcotest.1.5.0
[ERROR] The installation of alt-ergo failed at "make install MANDIR=/home/opam/.opam/4.14/man".
-> installed why3.1.4.1
#=== ERROR while installing alt-ergo.1.30 =====================================#
# context 2.5.0 | linux/x86_64 | ocaml-base-compiler.4.14.2 | file:///home/opam/opam-repository
# path ~/.opam/4.14/.opam-switch/build/alt-ergo.1.30
# command ~/.opam/opam-init/hooks/sandbox.sh install make install MANDIR=/home/opam/.opam/4.14/man
# exit-code 2
# env-file ~/.opam/log/alt-ergo-7-081c35.env
# output-file ~/.opam/log/alt-ergo-7-081c35.out
### output ###
# mkdir -p /home/opam/.opam/4.14/man/man1
# cp -f doc/*.1 /home/opam/.opam/4.14/man/man1
# mkdir -p /usr/local/bin
# cp -f alt-ergo.opt /usr/local/bin/alt-ergo
# cp: cannot create regular file '/usr/local/bin/alt-ergo': Read-only file system
# make: *** [Makefile.users:196: install] Error 1
The former state can be restored with:
/usr/bin/opam switch import "/home/opam/.opam/4.14/.opam-switch/backup/state-20260113181427.export"
Or you can retry to install your package selection with:
/usr/bin/opam install --restore
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - install alt-ergo 1.30
+-
+- The following changes have been performed (the rest was aborted)
| - remove lambdapi 2.1.0
| - recompile why3 1.4.1
| - install alcotest 1.5.0
| - install astring 0.8.5
| - install camlzip 1.07
| - install conf-gmp 5
| - install conf-pkg-config 4
| - install fmt 0.9.0
| - install ocaml-syntax-shims 1.0.0
| - install ocplib-simplex 0.3
| - install re 1.14.0
| - install topkg 1.1.1
| - install uutf 1.0.3
| - install zarith 1.14
+-
# To update the current shell environment, run: eval $(opam env)
2026-01-13 18:16.27 ---> saved as "f71355c33fbaf92eb48535829ebf60452bd49acbc1c51ae01609797fbad3380b"
/home/opam: (run (shell "opam reinstall --with-test --verbose lambdapi.2.1.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\" != 'lambdapi.2.1.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
lambdapi.2.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
- install alt-ergo 1.30 [required by lambdapi]
- install lambdapi 2.1.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/6: [alt-ergo.1.30: extract]
-> retrieved alt-ergo.1.30 (cached)
Processing 2/6: [lambdapi.2.1.0: extract]
Processing 3/6: [lambdapi.2.1.0: extract] [alt-ergo: ./configure]
-> retrieved lambdapi.2.1.0 (cached)
Processing 3/6: [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.1.30)
- 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 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 ocamlyacc... ocamlyacc
- 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/6: [alt-ergo: make]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" (CWD=/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.1.30)
- autoconf
- configure.in:306: warning: AC_OUTPUT should be used without arguments.
- configure.in:306: You should run autoupdate.
- ./configure
- 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 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 ocamlyacc... ocamlyacc
- 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
- ./config.status --recheck
- running CONFIG_SHELL=/bin/bash /bin/bash ./configure --no-create --no-recursion
- 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 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 ocamlyacc... ocamlyacc
- 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
- ocamlyacc -v src/parsing/why_parser.mly
- ocamllex.opt src/parsing/why_lexer.mll > /dev/null
- ocamldep -slash -I src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/*.ml* src/structures/*.ml* src/theories/*.ml* src/instances/*.ml* src/sat/*.ml* src/preprocess/*.ml* src/parsing/*.ml* src/gui/*.ml* src/main/*.ml* non-free/plugins/common/*ml* non-free/plugins/satML/*ml* non-free/plugins/fm-simplex/*ml* non-free/plugins/profiler/*ml* > .depend
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/config.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/version.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/version.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/emap.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/emap.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/myUnix.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/myUnix.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.1.30/src/util/myUnix.ml", line 14, characters 7-22:
- 14 | 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/zarith -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/myDynlink.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/myDynlink.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/myZip.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/myZip.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/util.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/util.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/lists.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/lists.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/numbersInterface.mli
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/numsNumbers.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/numsNumbers.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/zarithNumbers.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/zarithNumbers.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.1.30/src/util/zarithNumbers.ml", line 149, characters 16-30:
- 149 | 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/zarith -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/numbers.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/numbers.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.1.30/src/util/numbers.ml", line 44, characters 13-27:
- 44 | 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.1.30/src/util/numbers.ml", line 45, characters 18-32:
- 45 | 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/zarith -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/timers.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/timers.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/options.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/options.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.1.30/src/util/options.ml", line 512, characters 33-51:
- 512 | 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
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/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/zarith -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/gc_debug.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/loc.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/loc.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/hashcons.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/hashcons.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/hstring.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/hstring.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.1.30/src/util/hstring.ml", line 29, characters 28-42:
- 29 | let equal = Pervasives.(=) 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/zarith -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/structures/ty.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/structures/ty.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.1.30/src/structures/ty.ml", line 200, characters 33-51:
- 200 | | 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.1.30/src/structures/ty.ml", line 223, characters 17-35:
- 223 | | 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.1.30/src/structures/ty.ml", line 266, characters 52-70:
- 266 | 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.1.30/src/structures/ty.ml", line 335, characters 30-48:
- 335 | 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.1.30/src/structures/ty.ml", line 337, characters 26-40:
- 337 | 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.1.30/src/structures/ty.ml", line 378, characters 45-63:
- 378 | 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/zarith -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/structures/symbols.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/structures/symbols.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.1.30/src/structures/symbols.ml", line 81, characters 10-28:
- 81 | | _ -> 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/zarith -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/structures/term.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/structures/term.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.1.30/src/structures/term.ml", line 243, characters 4-18:
- 243 | 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.1.30/src/structures/term.ml", line 311, characters 6-20:
- 311 | 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/zarith -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/structures/literal.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/structures/literal.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.1.30/src/structures/literal.ml", line 90, characters 22-40:
- 90 | 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/zarith -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/structures/formula.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/structures/formula.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.1.30/src/structures/formula.ml", line 90, characters 10-28:
- 90 | 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.1.30/src/structures/formula.ml", line 91, characters 14-32:
- 91 | 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.1.30/src/structures/formula.ml", line 658, characters 6-20:
- 658 | 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/zarith -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/structures/explanation.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/structures/explanation.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/structures/exception.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/structures/exception.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/structures/parsed.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/structures/parsed.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/structures/typed.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/structures/typed.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/structures/errors.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/structures/errors.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/profiling_default.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/profiling_default.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/profiling.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/util/profiling.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/parsing/why_parser.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/parsing/why_parser.ml
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/parsing/why_lexer.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/preprocess/existantial.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/preprocess/existantial.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/preprocess/triggers.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/preprocess/triggers.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.1.30/src/preprocess/triggers.ml", line 31, characters 54-72:
- 31 | 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.1.30/src/preprocess/triggers.ml", line 48, characters 17-35:
- 48 | | 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.1.30/src/preprocess/triggers.ml", line 53, characters 9-27:
- 53 | 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.1.30/src/preprocess/triggers.ml", line 73, characters 11-29:
- 73 | | _ -> 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.1.30/src/preprocess/triggers.ml", line 171, characters 14-32:
- 171 | 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/zarith -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/preprocess/why_typing.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/preprocess/why_typing.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.1.30/src/preprocess/why_typing.ml", line 33, characters 48-66:
- 33 | 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.1.30/src/preprocess/why_typing.ml", line 75, characters 30-44:
- 75 | | 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.1.30/src/preprocess/why_typing.ml", line 94, characters 35-49:
- 94 | | 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.1.30/src/preprocess/why_typing.ml", line 105, characters 28-42:
- 105 | | 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.1.30/src/preprocess/why_typing.ml", line 670, characters 7-21:
- 670 | 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.1.30/src/preprocess/why_typing.ml", line 670, characters 32-46:
- 670 | 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.1.30/src/preprocess/why_typing.ml", line 1567, characters 6-20:
- 1567 | 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.1.30/src/preprocess/why_typing.ml", line 1570, characters 6-20:
- 1570 | 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/zarith -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/structures/commands.mli
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/preprocess/cnf.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/preprocess/cnf.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/theories/sig.mli
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/instances/matching.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/instances/matching.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/theories/use.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/theories/use.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/theories/ac.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/theories/ac.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/theories/uf.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/theories/uf.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/theories/sum.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/theories/sum.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/theories/records.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/theories/records.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/theories/polynome.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/theories/polynome.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/theories/bitv.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/theories/bitv.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/theories/arrays.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/theories/arrays.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/theories/intervals.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/theories/intervals.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.1.30/src/theories/intervals.ml", line 975, characters 19-32:
- 975 | 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.1.30/src/theories/intervals.ml", line 976, characters 19-32:
- 976 | 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/zarith -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/theories/inequalities.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/theories/inequalities.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/theories/intervalCalculus.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/theories/intervalCalculus.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.1.30/src/theories/intervalCalculus.ml", line 824, characters 3-18:
- 824 | 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.1.30/src/theories/intervalCalculus.ml", line 826, characters 3-18:
- 826 | 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.1.30/src/theories/intervalCalculus.ml", line 844, characters 12-27:
- 844 | 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.1.30/src/theories/intervalCalculus.ml", line 846, characters 5-20:
- 846 | 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.1.30/src/theories/intervalCalculus.ml", line 1062, characters 12-16:
- 1062 | 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.1.30/src/theories/intervalCalculus.ml", line 1095, characters 12-16:
- 1095 | 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.1.30/src/theories/intervalCalculus.ml", line 1765, characters 16-34:
- 1765 | 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.
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/theories/arith.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/theories/arith.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/theories/combine.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/theories/combine.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.1.30/src/theories/combine.ml", line 742, characters 15-30:
- 742 | 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.1.30/src/theories/combine.ml", line 743, characters 15-30:
- 743 | 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.1.30/src/theories/combine.ml", line 744, characters 15-30:
- 744 | 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.1.30/src/theories/combine.ml", line 745, characters 15-30:
- 745 | 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.1.30/src/theories/combine.ml", line 746, characters 15-30:
- 746 | 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/zarith -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/theories/ccx.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/theories/ccx.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.1.30/src/theories/ccx.ml", line 591, characters 10-24:
- 591 | 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/zarith -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/theories/theory.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/theories/theory.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.1.30/src/theories/theory.ml", line 306, characters 30-45:
- 306 | 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.1.30/src/theories/theory.ml", line 391, characters 25-37:
- 391 | 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.1.30/src/theories/theory.ml", line 395, characters 5-17:
- 395 | 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/zarith -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/instances/instances.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/instances/instances.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/sat/sat_solvers.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/sat/sat_solvers.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.1.30/src/sat/sat_solvers.ml", line 101, characters 33-48:
- 101 | 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.1.30/src/sat/sat_solvers.ml", line 121, characters 20-38:
- 121 | 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.1.30/src/sat/sat_solvers.ml", line 123, characters 17-35:
- 123 | 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.1.30/src/sat/sat_solvers.ml", line 825, characters 6-21:
- 825 | 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.1.30/src/sat/sat_solvers.ml", line 1019, characters 15-26:
- 1019 | 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.1.30/src/sat/sat_solvers.ml", line 1020, characters 15-26:
- 1020 | 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/zarith -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/main/frontend.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/main/frontend.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.1.30/src/main/frontend.ml", line 201, characters 12-27:
- 201 | 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/zarith -I /home/opam/.opam/4.14/lib/camlzip/../zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/main/main_text.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex src/main/main_text.ml
- ocamlopt.opt -annot -absname -bin-annot -short-paths -strict-sequence -g -inline 100 -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 src/util -I src/structures -I src/theories -I src/instances -I src/sat -I src/preprocess -I src/parsing -I src/gui -I src/main -I non-free/plugins/common -I non-free/plugins/satML -I non-free/plugins/profiler -I non-free/plugins/fm-simplex -o alt-ergo.opt zarith.cmxa nums.cmxa unix.cmxa dynlink.cmxa str.cmxa zip.cmxa ocplibSimplex.cmxa src/util/config.cmx src/util/version.cmx src/util/emap.cmx src/util/myUnix.cmx src/util/myDynlink.cmx src/util/myZip.cmx src/util/util.cmx src/util/lists.cmx src/util/numsNumbers.cmx src/util/zarithNumbers.cmx src/util/numbers.cmx src/util/timers.cmx src/util/options.cmx src/util/gc_debug.cmx src/util/loc.cmx src/util/hashcons.cmx src/util/hstring.cmx src/structures/exception.cmx src/structures/symbols.cmx src/structures/ty.cmx src/structures/parsed.cmx src/structures/typed.cmx src/structures/term.cmx src/structures/literal.cmx src/structures/formula.cmx src/structures/explanation.cmx src/structures/errors.cmx src/util/profiling_default.cmx src/util/profiling.cmx src/parsing/why_parser.cmx src/parsing/why_lexer.cmx src/preprocess/existantial.cmx src/preprocess/triggers.cmx src/preprocess/why_typing.cmx src/preprocess/cnf.cmx src/instances/matching.cmx src/instances/instances.cmx src/theories/polynome.cmx src/theories/ac.cmx src/theories/uf.cmx src/theories/use.cmx src/theories/intervals.cmx src/theories/inequalities.cmx src/theories/intervalCalculus.cmx src/theories/arith.cmx src/theories/records.cmx src/theories/bitv.cmx src/theories/arrays.cmx src/theories/sum.cmx src/theories/combine.cmx src/theories/ccx.cmx src/theories/theory.cmx src/sat/sat_solvers.cmx src/main/frontend.cmx src/main/main_text.cmx
-> compiled alt-ergo.1.30
Processing 4/6: [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.1.30)
[ERROR] The installation of alt-ergo failed at "make install MANDIR=/home/opam/.opam/4.14/man".
- mkdir -p /home/opam/.opam/4.14/man/man1
- cp -f doc/*.1 /home/opam/.opam/4.14/man/man1
- mkdir -p /usr/local/bin
- cp -f alt-ergo.opt /usr/local/bin/alt-ergo
- cp: cannot create regular file '/usr/local/bin/alt-ergo': Read-only file system
- make: *** [Makefile.users:196: install] Error 1
Processing 4/6: [alt-ergo: rm]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "rm" "/home/opam/.opam/4.14/bin/alt-ergo" (CWD=/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.1.30)
- rm: cannot remove '/home/opam/.opam/4.14/bin/alt-ergo': No such file or directory
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "rm" "/home/opam/.opam/4.14/man/man1/alt-ergo.1" (CWD=/home/opam/.opam/4.14/.opam-switch/build/alt-ergo.1.30)
#=== ERROR while installing alt-ergo.1.30 =====================================#
# context 2.5.0 | linux/x86_64 | ocaml-base-compiler.4.14.2 | file:///home/opam/opam-repository
# path ~/.opam/4.14/.opam-switch/build/alt-ergo.1.30
# command ~/.opam/opam-init/hooks/sandbox.sh install make install MANDIR=/home/opam/.opam/4.14/man
# exit-code 2
# env-file ~/.opam/log/alt-ergo-7-9502e6.env
# output-file ~/.opam/log/alt-ergo-7-9502e6.out
### output ###
# mkdir -p /home/opam/.opam/4.14/man/man1
# cp -f doc/*.1 /home/opam/.opam/4.14/man/man1
# mkdir -p /usr/local/bin
# cp -f alt-ergo.opt /usr/local/bin/alt-ergo
# cp: cannot create regular file '/usr/local/bin/alt-ergo': Read-only file system
# make: *** [Makefile.users:196: install] Error 1
'opam reinstall --with-test --verbose lambdapi.2.1.0' failed.
<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions were aborted
| - install lambdapi 2.1.0
+-
+- The following actions failed
| - install alt-ergo 1.30
+-
- No changes have been performed
# To update the current shell environment, run: eval $(opam env)
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
opam-repo-ci detected dependencies failing: alt-ergo.1.30
"/usr/bin/env" "bash" "-c" "opam reinstall --with-test --verbose lambdapi.2.1.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" != 'lambdapi.2.1.0' && partial_fails="$partial_fails $pkg";
done;
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
exit 1" failed with exit status 1
2026-01-13 18:18.02: Job failed: Failed: Build failed
2026-01-13 18:18.02: Log analysis:
2026-01-13 18:18.02: >>>
[ERROR] The installation of alt-ergo failed at "make install MANDIR=/home/opam/.opam/4.14/man".
(score = 20)
2026-01-13 18:18.02: >>>
[ERROR] The installation of alt-ergo failed at "make install MANDIR=/home/opam/.opam/4.14/man".
(score = 20)
2026-01-13 18:18.02: >>>
opam-repo-ci detected dependencies failing: alt-ergo.1.30
(score = 75)
2026-01-13 18:18.02: alt-ergo.1.30 failed to build