- github
- ocaml
- opam-repository
- 3e0c39
- compilers,4.14,dune.3.22.2,revdeps,alt-ergo-free.2.2.0
(not at the head of any monitored branch or PR)
2026-04-10 17:57.48: New job: test alt-ergo-free.2.2.0 with dune.3.22.2, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29704/head (3e0c395e7b1393a792367f8edca3654dac71e6fd)
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/29704/head" && git reset --hard 3e0c395e
git fetch origin master
git merge --no-edit 9d8ceab8e9f49f5671cf459997c8a47cf0e675ca
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn dune.3.22.2 3.22.2
RUN opam reinstall dune.3.22.2; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'dune.3.22.2' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall alt-ergo-free.2.2.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'alt-ergo-free.2.2.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test alt-ergo-free.2.2.0) || true
RUN opam reinstall --with-test --verbose alt-ergo-free.2.2.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'alt-ergo-free.2.2.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-04-10 17:57.48: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4-dune.3.22.2-alt-ergo-free.2.2.0-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-10 17:57.48: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune.3.22.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall alt-ergo-free.2.2.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'alt-ergo-free.2.2.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test alt-ergo-free.2.2.0) || true"))
(run (shell "opam reinstall --with-test --verbose alt-ergo-free.2.2.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'alt-ergo-free.2.2.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-04-10 17:57.48: Waiting for resource in pool OCluster
2026-04-11 04:17.55: Waiting for worker…
2026-04-11 04:21.00: Got resource from pool OCluster
Building on clete.caelum.ci.dev
All commits already cached
HEAD is now at 9d8ceab8e9 Merge pull request #29697 from filipeom/opam-publish-smtml.0.25.0
Updating 9d8ceab8e9..3e0c395e7b
Fast-forward
packages/chrome-trace/chrome-trace.3.22.2/opam | 39 +++++++++++
.../dune-action-plugin.3.22.2/opam | 52 +++++++++++++++
.../dune-action-trace.3.22.2/opam | 39 +++++++++++
.../dune-build-info/dune-build-info.3.22.2/opam | 45 +++++++++++++
.../dune-configurator.3.22.2/opam | 49 ++++++++++++++
packages/dune-glob/dune-glob.3.22.2/opam | 42 ++++++++++++
.../dune-private-libs.3.22.2/opam | 50 +++++++++++++++
packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam | 41 ++++++++++++
packages/dune-rpc/dune-rpc.3.22.2/opam | 44 +++++++++++++
packages/dune-site/dune-site.3.22.2/opam | 37 +++++++++++
packages/dune/dune.3.22.2/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.22.2/opam | 40 ++++++++++++
packages/fs-io/fs-io.3.22.2/opam | 39 +++++++++++
packages/ocamlc-loc/ocamlc-loc.3.22.2/opam | 43 +++++++++++++
packages/ordering/ordering.3.22.2/opam | 38 +++++++++++
packages/stdune/stdune.3.22.2/opam | 46 +++++++++++++
packages/top-closure/top-closure.3.22.2/opam | 38 +++++++++++
packages/xdg/xdg.3.22.2/opam | 39 +++++++++++
18 files changed, 796 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.22.2/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.2/opam
create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.2/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.22.2/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.22.2/opam
create mode 100644 packages/dune-glob/dune-glob.3.22.2/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.2/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.22.2/opam
create mode 100644 packages/dune-site/dune-site.3.22.2/opam
create mode 100644 packages/dune/dune.3.22.2/opam
create mode 100644 packages/dyn/dyn.3.22.2/opam
create mode 100644 packages/fs-io/fs-io.3.22.2/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam
create mode 100644 packages/ordering/ordering.3.22.2/opam
create mode 100644 packages/stdune/stdune.3.22.2/opam
create mode 100644 packages/top-closure/top-closure.3.22.2/opam
create mode 100644 packages/xdg/xdg.3.22.2/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
2026-04-11 04:21.02 ---> using "e7349b5faa6e8ea47e3f73a0784842b9d8524e468ce596e92633dbea53bd1c16" 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-04-11 04:21.02 ---> using "345d07c1ddcf0b692213607682954d9bdf190a7dc793f33951a109185e732dcb" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-11 04:21.02 ---> using "6e021c655ca00bde9af60e23db55b09a0bcc3db0d3ca38d66f78ad53e254a31c" 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.3"}]
# compiler-packages ocaml-base-compiler.4.14.3, 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.3
2026-04-11 04:21.02 ---> using "7b2a5ae62cf702b99c177da358372ff585494a0b1c5dfffe5c4eda3046bc59fb" 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-04-11 04:21.02 ---> using "2d8e28a183d0990d4c5f7a587471f7c743cdf0d9f00bdf4de7761e94ec09202a" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-11 04:21.04 ---> using "43c49734bd8015921029b9a907dd77c0e05208c46b686916515831f5a9e9d500" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-11 04:21.04 ---> using "bb36992fd0066703535b2984ee1ead3db92bb1f04a8df092631924067dac4082" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- 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-security trixie-security/main amd64 Packages [121 kB]
- Fetched 211 kB in 0s (1316 kB/s)
- Reading package lists...
-
2026-04-11 04:21.04 ---> using "e0d9ada0baddc41d2c835edef7d0cf7cceebd2dadac41fda17c9e860b5313a74" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
dune is now pinned to version 3.22.2
2026-04-11 04:21.04 ---> using "a60db6b945be7f2fc9953546cee71bf416921d54f02951a4c9176dbdf1065520" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune.3.22.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dune.3.22.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.22.2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.2 (cached)
-> installed dune.3.22.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 04:21.04 ---> using "59eacf68137f7dccf94b9ebc5274fdc537230a8c71c2eb52f8fcf698829c6d46" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall alt-ergo-free.2.2.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'alt-ergo-free.2.2.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
alt-ergo-free.2.2.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 14 packages
- install alt-ergo-free 2.2.0
- install camlzip 1.14 [required by alt-ergo-free]
- install conf-autoconf 0.2 [required by alt-ergo-free]
- install conf-gmp 5 [required by zarith]
- install conf-pkg-config 4 [required by zarith]
- install conf-zlib 1 [required by camlzip]
- install menhir 20211128 [required by alt-ergo-free]
- install menhirLib 20211128 [required by menhir]
- install menhirSdk 20211128 [required by menhir]
- install num 1.6 [required by alt-ergo-free]
- install ocamlfind 1.9.8 [required by psmt2-frontend, camlzip, ocplib-simplex, zarith]
- install ocplib-simplex 0.4.1 [required by alt-ergo-free]
- install psmt2-frontend 0.1 [required by alt-ergo-free]
- install zarith 1.14 [required by alt-ergo-free]
The following system packages will first need to be installed:
autoconf libgmp-dev pkg-config zlib1g-dev
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "autoconf" "libgmp-dev" "pkg-config" "zlib1g-dev"
- Selecting previously unselected package m4.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20623 files and directories currently installed.)
- Preparing to unpack .../00-m4_1.4.19-8_amd64.deb ...
- Unpacking m4 (1.4.19-8) ...
- Selecting previously unselected package autoconf.
- Preparing to unpack .../01-autoconf_2.72-3.1_all.deb ...
- Unpacking autoconf (2.72-3.1) ...
- Selecting previously unselected package autotools-dev.
- Preparing to unpack .../02-autotools-dev_20240727.1_all.deb ...
- Unpacking autotools-dev (20240727.1) ...
- Selecting previously unselected package automake.
- Preparing to unpack .../03-automake_1%3a1.17-4_all.deb ...
- Unpacking automake (1:1.17-4) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../04-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../05-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../06-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../07-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../08-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../09-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../10-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up m4 (1.4.19-8) ...
- Setting up autotools-dev (20240727.1) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up autoconf (2.72-3.1) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up automake (1:1.17-4) ...
- update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12+deb13u2) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alt-ergo-free.2.2.0 (https://opam.ocaml.org/cache)
-> retrieved camlzip.1.14 (cached)
-> retrieved conf-gmp.5 (cached)
-> retrieved menhir.20211128, menhirLib.20211128, menhirSdk.20211128 (cached)
-> installed conf-autoconf.0.2
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved num.1.6 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> installed conf-zlib.1
-> retrieved ocplib-simplex.0.4.1 (cached)
-> retrieved psmt2-frontend.0.1 (https://opam.ocaml.org/cache)
-> retrieved zarith.1.14 (cached)
-> installed menhirSdk.20211128
-> installed menhirLib.20211128
-> installed num.1.6
-> installed ocamlfind.1.9.8
-> installed camlzip.1.14
-> installed ocplib-simplex.0.4.1
-> installed zarith.1.14
-> installed menhir.20211128
-> installed psmt2-frontend.0.1
-> installed alt-ergo-free.2.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 04:22.55 ---> saved as "6810bf166f48311f7b249bc8145ef6fcd81ce5c2a6f7ec28307613ced19264ad"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test alt-ergo-free.2.2.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile alt-ergo-free 2.2.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alt-ergo-free.2.2.0 (https://opam.ocaml.org/cache)
-> removed alt-ergo-free.2.2.0
-> installed alt-ergo-free.2.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 04:23.49 ---> saved as "0051c144b72f8c9e6796b9a2fe6ea343193d1158d8875060bf6bd835f00cf0b1"
/home/opam: (run (shell "opam reinstall --with-test --verbose alt-ergo-free.2.2.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'alt-ergo-free.2.2.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
- recompile alt-ergo-free 2.2.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [alt-ergo-free.2.2.0: extract]
-> retrieved alt-ergo-free.2.2.0 (cached)
Processing 2/4: [alt-ergo-free: autoconf]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "autoconf" (CWD=/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0)
- configure.in:328: warning: AC_OUTPUT should be used without arguments.
- configure.in:328: You should run autoupdate.
Processing 2/4: [alt-ergo-free: ./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-free.2.2.0)
- checking for ocp-ocamlc... no
- checking for ocamlc... ocamlc
- ocaml version is 4.14.3
- ocaml library path is /home/opam/.opam/4.14/lib/ocaml
- checking for ocamlfind... yes
- ocamlfind found zarith in -I /home/opam/.opam/4.14/lib/zarith
- ocamlfind found num in -I /home/opam/.opam/4.14/lib/num
- ocamlfind found zip in -I /home/opam/.opam/4.14/lib/zip
- ocamlfind found ocplib-simplex in -I /home/opam/.opam/4.14/lib/ocplib-simplex
- ocamlfind found psmt2-frontend in -I /home/opam/.opam/4.14/lib/psmt2-frontend
- checking for ocp-ocamlopt... no
- checking for ocamlopt... ocamlopt
- checking ocamlopt version... ok
- checking for ocp-ocamlc.opt... no
- checking for ocamlc.opt... ocamlc.opt
- checking ocamlc.opt version... ok
- checking for ocp-ocamlopt.opt... no
- checking for ocamlopt.opt... ocamlopt.opt
- checking ocamlc.opt version... ok
- checking for ocamldep... ocamldep
- checking for ocamllex... ocamllex
- checking for ocamllex.opt... ocamllex.opt
- checking for menhir... menhir
- ocamlfind: Package `lablgtk2.sourceview2' not found
- checking for /home/opam/.opam/4.14/lib/ocaml/lablgtk2/lablgtksourceview2.cma... no
- Will not be able to compile GUI. Please install the *liblablgtksourceview2-ocaml-dev* Debian package - or use the GODI caml package system *http://godi.ocaml-programming.de/* - or compile from sources *http://wwwfun.kurims.kyoto-u.ac.jp/soft/lsl/lablgtk.html*
- checking for ocamlweb... true
- checking platform... configure: creating ./config.status
- config.status: creating Makefile.configurable
- config.status: WARNING: 'Makefile.configurable.in' seems to ignore the --datarootdir setting
Processing 2/4: [alt-ergo-free: make]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" (CWD=/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0)
- menhir -v parsers/why/why_parser.mly
- ocamllex.opt parsers/why/why_lexer.mll > /dev/null
- ocamldep -slash -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex lib/util/*.ml* lib/structures/*.ml* lib/reasoners/*.ml* lib/frontend/*.ml* tools/text/*.ml* \
- tools/gui/*.ml* parsers/why/*.ml* parsers/smt2/*.ml* plugins/fm-simplex/*ml* > .depend
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/config.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/util/config.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/version.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/version.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/emap.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/emap.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/myUnix.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/myUnix.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/util/myUnix.ml", line 19, characters 7-22:
- 19 | if Pervasives.(<>) timelimit 0. then
- ^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/myDynlink.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/myDynlink.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/myZip.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/myZip.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/util.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/util.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/lists.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/lists.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/numbersInterface.mli
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/numsNumbers.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/numsNumbers.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/zarithNumbers.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/zarithNumbers.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/util/zarithNumbers.ml", line 156, characters 16-30:
- 156 | let abs_n = Pervasives.abs n in
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/numbers.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/numbers.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/util/numbers.ml", line 51, characters 13-27:
- 51 | 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-free.2.2.0/lib/util/numbers.ml", line 52, characters 18-32:
- 52 | 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 -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/options.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/options.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/util/options.ml", line 905, characters 33-51:
- 905 | 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 -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/vec.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/vec.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/iheap.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/iheap.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/timers.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/timers.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/gc_debug.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/gc_debug.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/loc.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/loc.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/hconsing.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/hconsing.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/hstring.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/hstring.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/ty.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/ty.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/structures/ty.ml", line 205, characters 33-51:
- 205 | | 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-free.2.2.0/lib/structures/ty.ml", line 228, characters 17-35:
- 228 | | 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-free.2.2.0/lib/structures/ty.ml", line 271, characters 52-70:
- 271 | 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-free.2.2.0/lib/structures/ty.ml", line 343, characters 30-48:
- 343 | 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-free.2.2.0/lib/structures/ty.ml", line 345, characters 26-40:
- 345 | 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-free.2.2.0/lib/structures/ty.ml", line 386, characters 45-63:
- 386 | 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 -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/symbols.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/symbols.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/structures/symbols.ml", line 117, characters 10-28:
- 117 | | _ -> 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 -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/term.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/term.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/structures/term.ml", line 273, characters 4-18:
- 273 | Pervasives.(=) (String.sub (Sy.to_string v.f) 0 4) "_sko"
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/structures/term.ml", line 341, characters 6-20:
- 341 | try Pervasives.(=) (String.sub (Hstring.view h) 0 6) "model:"
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/literal.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/literal.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/structures/literal.ml", line 98, characters 22-40:
- 98 | let compare a1 a2 = Pervasives.compare a1.tpos a2.tpos
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/formula.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/formula.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/structures/formula.ml", line 111, characters 10-28:
- 111 | 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-free.2.2.0/lib/structures/formula.ml", line 112, characters 14-32:
- 112 | 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-free.2.2.0/lib/structures/formula.ml", line 869, characters 6-20:
- 869 | 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 -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/satml_types.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/satml_types.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/explanation.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/explanation.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/exception.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/exception.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/parsed.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/parsed.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/errors.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/errors.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/typed.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/typed.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/fpa_rounding.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/fpa_rounding.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/commands.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/commands.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/profiling.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/profiling.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/structures/profiling.ml", line 89, characters 7-21:
- 89 | if Pervasives.(>) v 0. then v else -. v
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/structures/profiling.ml", line 629, characters 5-19:
- 629 | if Pervasives.(=) v 0. then fprintf fmt "-- "
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/structures/profiling.ml", line 630, characters 10-24:
- 630 | else if Pervasives.(<) v 10. then fprintf fmt "%0.5f" v
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/structures/profiling.ml", line 631, characters 10-24:
- 631 | else if Pervasives.(<) v 100. then fprintf fmt "%0.4f" v
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/matching_types.mli
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/sig.mli
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/matching.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/matching.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/use.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/use.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/ac.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/ac.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/uf.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/uf.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/sum.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/sum.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/records.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/records.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/polynome.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/polynome.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/ite.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/ite.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/ite.ml", line 75, characters 32-50:
- 75 | if c <> 0 then c else Pervasives.compare b1 b2
- ^^^^^^^^^^^^^^^^^^
- 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 -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/bitv.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/bitv.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/arrays.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/arrays.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/intervals.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/intervals.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/inequalities.mli
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/inequalities.mli", line 79, characters 3-5:
- 79 | (Uf : Uf.S with type r = X.r)
- ^^
- Warning 67 [unused-functor-parameter]: unused functor parameter Uf.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/inequalities.mli", line 86, characters 5-7:
- 86 | (Uf : Uf.S with type r = X.r)
- ^^
- Warning 67 [unused-functor-parameter]: unused functor parameter Uf.
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/inequalities.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/inequalities.ml", line 87, characters 5-7:
- 87 | (Uf : Uf.S with type r = X.r)
- ^^
- Warning 67 [unused-functor-parameter]: unused functor parameter Uf.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/inequalities.ml", line 96, characters 5-7:
- 96 | (Uf : Uf.S with type r = X.r)
- ^^
- Warning 60 [unused-module]: unused module Uf.
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/intervalCalculus.mli
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/intervalCalculus.mli", line 32, characters 3-4:
- 32 | (P : Polynome.EXTENDED_Polynome with type r = X.r)
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter P.
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/intervalCalculus.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/arith.mli
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/arith.mli", line 39, characters 3-4:
- 39 | (P : Polynome.EXTENDED_Polynome with type r = X.r)
- ^
- Warning 67 [unused-functor-parameter]: unused functor parameter P.
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/arith.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/combine.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/combine.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/ccx.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/ccx.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/theory.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/theory.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/instances.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/instances.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/sat_solver_sig.mli
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/sat_solver_sig.mli", line 67, characters 15-17:
- 67 | module Make (Th : Theory.S) : S
- ^^
- Warning 67 [unused-functor-parameter]: unused functor parameter Th.
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/sat_solver_sig.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/sat_solver_sig.ml", line 70, characters 15-17:
- 70 | module Make (Th : Theory.S) : S
- ^^
- Warning 67 [unused-functor-parameter]: unused functor parameter Th.
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/fun_sat.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/fun_sat.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/fun_sat.ml", line 72, characters 34-49:
- 72 | 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-free.2.2.0/lib/reasoners/fun_sat.ml", line 98, characters 21-39:
- 98 | 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-free.2.2.0/lib/reasoners/fun_sat.ml", line 100, characters 18-36:
- 100 | 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-free.2.2.0/lib/reasoners/fun_sat.ml", line 970, characters 7-22:
- 970 | 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
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/satml.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/satml.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 354, characters 4-18:
- 354 | Pervasives.(<) (Vec.get env.vars j).weight (Vec.get env.vars i).weight
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 368, characters 7-21:
- 368 | if Pervasives.(>) v.weight 1e100 then begin
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 380, characters 7-21:
- 380 | if Pervasives.(>) c.activity 1e20 then begin
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 864, characters 12-30:
- 864 | let c = Pervasives.compare c1.activity c2.activity in
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 92, characters 8-39:
- 92 | mutable clauses : clause Vec.t;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field clauses is never mutated.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 95, characters 8-39:
- 95 | mutable learnts : clause Vec.t;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field learnts is never mutated.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 104, characters 8-33:
- 104 | mutable vars : var Vec.t;
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field vars is never mutated.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 107, characters 8-35:
- 107 | mutable trail : atom Vec.t;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field trail is never mutated.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 110, characters 8-38:
- 110 | mutable trail_lim : int Vec.t;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field trail_lim is never mutated.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 125, characters 8-32:
- 125 | mutable order : Iheap.t;
- ^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field order is never mutated.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 128, characters 8-42:
- 128 | mutable progress_estimate : float;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field progress_estimate is never read.
- (However, this field is used to build or mutate values.)
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 140, characters 8-36:
- 140 | mutable restart_first : int;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field restart_first is never mutated.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 147, characters 8-42:
- 147 | mutable learntsize_factor : float;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field learntsize_factor is never mutated.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 154, characters 8-31:
- 154 | expensive_ccmin : bool;
- ^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field expensive_ccmin is never read.
- (However, this field is used to build or mutate values.)
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 157, characters 8-29:
- 157 | polarity_mode : bool;
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field polarity_mode is never read.
- (However, this field is used to build or mutate values.)
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 171, characters 8-35:
- 171 | mutable max_literals : int;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field max_literals is never read.
- (However, this field is used to build or mutate values.)
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 173, characters 8-35:
- 173 | mutable tot_literals : int;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field tot_literals is never read.
- (However, this field is used to build or mutate values.)
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 179, characters 8-34:
- 179 | mutable model : var Vec.t;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field model is never mutated.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 185, characters 8-40:
- 185 | mutable tenv_queue : Th.t Vec.t;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field tenv_queue is never mutated.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 187, characters 8-44:
- 187 | mutable tatoms_queue : atom Queue.t;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field tatoms_queue is never mutated.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 188, characters 8-43:
- 188 | mutable th_tableaux : atom Queue.t;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field th_tableaux is never mutated.
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/satml_frontend.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/satml_frontend.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml_frontend.ml", line 536, characters 16-34:
- 536 | let res = Pervasives.compare w2 w1 in
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml_frontend.ml", line 925, characters 19-33:
- 925 | let aux mx f = Pervasives.max mx (F.max_term_depth f) 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 -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/sat_solver.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/sat_solver.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/frontend/triggers.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/frontend/triggers.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/frontend/triggers.ml", line 36, characters 54-72:
- 36 | 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-free.2.2.0/lib/frontend/triggers.ml", line 53, characters 17-35:
- 53 | | 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-free.2.2.0/lib/frontend/triggers.ml", line 58, characters 9-27:
- 58 | 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-free.2.2.0/lib/frontend/triggers.ml", line 78, characters 11-29:
- 78 | | _ -> 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-free.2.2.0/lib/frontend/triggers.ml", line 156, characters 28-46:
- 156 | if c <> 0 then c else Pervasives.compare (a1, b1, c1, d1) (a2, b2, c2, d2)
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/frontend/triggers.ml", line 194, characters 14-32:
- 194 | 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 -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/frontend/cnf.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/frontend/cnf.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/frontend/typechecker.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/frontend/typechecker.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/frontend/typechecker.ml", line 39, characters 48-66:
- 39 | Map.Make(struct type t = string let compare = Pervasives.compare end)
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/frontend/typechecker.ml", line 81, characters 30-44:
- 81 | | PPTvarid (y, _) -> Pervasives.(=) x y
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/frontend/typechecker.ml", line 100, characters 35-49:
- 100 | | PPTexternal (l, s, loc) when Pervasives.(=) s "farray" ->
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/frontend/typechecker.ml", line 111, characters 28-42:
- 111 | | Some (id, vars, ty) when Pervasives.(=) s id &&
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/frontend/typechecker.ml", line 772, characters 17-31:
- 772 | 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-free.2.2.0/lib/frontend/typechecker.ml", line 772, characters 42-56:
- 772 | 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-free.2.2.0/lib/frontend/typechecker.ml", line 1874, characters 6-20:
- 1874 | 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-free.2.2.0/lib/frontend/typechecker.ml", line 1877, characters 6-20:
- 1877 | 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 -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/frontend/parsed_interface.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/frontend/parsed_interface.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/frontend/frontend.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/frontend/frontend.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/frontend/parsers.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/frontend/parsers.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/frontend/parsers.ml", line 103, characters 9-24:
- 103 | 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 -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib parsers/why/why_parser.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib parsers/why/why_parser.ml
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib parsers/why/why_lexer.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/parsers/why/why_lexer.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib parsers/smt2/psmt2_to_alt_ergo.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib parsers/smt2/psmt2_to_alt_ergo.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/frontend/parsers_loader.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/frontend/parsers_loader.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib tools/text/main_text.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib tools/text/main_text.ml
- ocamlopt.opt -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib -o alt-ergo.opt zarith.cmxa nums.cmxa unix.cmxa dynlink.cmxa str.cmxa zip.cmxa ocplibSimplex.cmxa psmt2Frontend.cmxa lib/util/config.cmx lib/util/version.cmx lib/util/emap.cmx lib/util/myUnix.cmx lib/util/myDynlink.cmx lib/util/myZip.cmx lib/util/util.cmx lib/util/lists.cmx lib/util/numsNumbers.cmx lib/util/zarithNumbers.cmx lib/util/numbers.cmx lib/util/options.cmx lib/util/vec.cmx lib/util/iheap.cmx lib/util/timers.cmx lib/util/gc_debug.cmx lib/util/loc.cmx lib/util/hconsing.cmx lib/util/hstring.cmx lib/structures/exception.cmx lib/structures/symbols.cmx lib/structures/ty.cmx lib/structures/parsed.cmx lib/structures/errors.cmx lib/structures/typed.cmx lib/structures/term.cmx lib/structures/fpa_rounding.cmx lib/structures/literal.cmx lib/structures/formula.cmx lib/structures/satml_types.cmx lib/structures/explanation.cmx lib/structures/commands.cmx lib/structures/profiling.cmx lib/reasoners/matching.cmx lib/reasoners/instances.cmx lib/reasoners/polynome.cmx lib/reasoners/ac.cmx lib/reasoners/uf.cmx lib/reasoners/use.cmx lib/reasoners/intervals.cmx lib/reasoners/inequalities.cmx lib/reasoners/intervalCalculus.cmx lib/reasoners/arith.cmx lib/reasoners/records.cmx lib/reasoners/bitv.cmx lib/reasoners/arrays.cmx lib/reasoners/sum.cmx lib/reasoners/ite.cmx lib/reasoners/combine.cmx lib/reasoners/ccx.cmx lib/reasoners/theory.cmx lib/reasoners/sat_solver_sig.cmx lib/reasoners/fun_sat.cmx lib/reasoners/satml.cmx lib/reasoners/satml_frontend.cmx lib/reasoners/sat_solver.cmx lib/frontend/triggers.cmx lib/frontend/cnf.cmx lib/frontend/typechecker.cmx lib/frontend/parsed_interface.cmx lib/frontend/frontend.cmx lib/frontend/parsers.cmx parsers/why/why_parser.cmx parsers/why/why_lexer.cmx parsers/smt2/psmt2_to_alt_ergo.cmx lib/frontend/parsers_loader.cmx tools/text/main_text.cmx
- gui compilation skipped (lablgtksourceview not detected)
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib plugins/fm-simplex/simplex.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/plugins/fm-simplex/simplex.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/plugins/fm-simplex/simplex.ml", line 351, characters 19-38:
- 351 | let subst_in_p ({a=a ; c=c} as pp) ((s,lhs), {a=rhs_a; c=rhs_c}) =
- ^^^^^^^^^^^^^^^^^^^
- Warning 68 [match-on-mutable-state-prevent-uncurry]: This pattern depends on mutable state.
- It prevents the remaining arguments from being uncurried, which will cause additional closure allocations.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/plugins/fm-simplex/simplex.ml", line 521, characters 23-34:
- 521 | let compact_poly_2 {a=a ; c=c} base new_len h_zsbt =
- ^^^^^^^^^^^
- Warning 68 [match-on-mutable-state-prevent-uncurry]: This pattern depends on mutable state.
- It prevents the remaining arguments from being uncurried, which will cause additional closure allocations.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/plugins/fm-simplex/simplex.ml", line 533, characters 21-32:
- 533 | let compact_poly {a=a ; c=c} base new_len h_zsbt =
- ^^^^^^^^^^^
- Warning 68 [match-on-mutable-state-prevent-uncurry]: This pattern depends on mutable state.
- It prevents the remaining arguments from being uncurried, which will cause additional closure allocations.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/plugins/fm-simplex/simplex.ml", line 639, characters 14-36:
- 639 | let subst ({a2=a2; c2=c2} as pp) lhs {a2=rhs_a2; c2=rhs_c2} =
- ^^^^^^^^^^^^^^^^^^^^^^
- Warning 68 [match-on-mutable-state-prevent-uncurry]: This pattern depends on mutable state.
- It prevents the remaining arguments from being uncurried, which will cause additional closure allocations.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/plugins/fm-simplex/simplex.ml", line 706, characters 27-54:
- 706 | let change_pivot ch_vr (old_vr, {a2=old_a; c2=c2}) distr order =
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 68 [match-on-mutable-state-prevent-uncurry]: This pattern depends on mutable state.
- It prevents the remaining arguments from being uncurried, which will cause additional closure allocations.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/plugins/fm-simplex/simplex.ml", line 897, characters 25-32:
- 897 | let infos_of distr q {c2=c2} ctx =
- ^^^^^^^
- Warning 68 [match-on-mutable-state-prevent-uncurry]: This pattern depends on mutable state.
- It prevents the remaining arguments from being uncurried, which will cause additional closure allocations.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/plugins/fm-simplex/simplex.ml", line 975, characters 17-39:
- 975 | let subst_spec ({a2=a2; c2=c2} as pp) v {a2=rhs_a2; c2=rhs_c2} =
- ^^^^^^^^^^^^^^^^^^^^^^
- Warning 68 [match-on-mutable-state-prevent-uncurry]: This pattern depends on mutable state.
- It prevents the remaining arguments from being uncurried, which will cause additional closure allocations.
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib plugins/fm-simplex/simplex_cache.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/plugins/fm-simplex/simplex_cache.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib plugins/fm-simplex/fmSimplexIneqs.mli
- ocamlopt.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib plugins/fm-simplex/fmSimplexIneqs.ml
- ocamlopt.opt -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -shared -o fm-simplex-plugin.cmxs plugins/fm-simplex/simplex_cache.cmx plugins/fm-simplex/simplex.cmx plugins/fm-simplex/fmSimplexIneqs.cmx
-> compiled alt-ergo-free.2.2.0
Processing 3/4: [alt-ergo-free: autoconf]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "autoconf" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/alt-ergo-free.2.2.0)
- configure.in:328: warning: AC_OUTPUT should be used without arguments.
- configure.in:328: You should run autoupdate.
Processing 3/4: [alt-ergo-free: ./configure]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "./configure" "-prefix" "/home/opam/.opam/4.14" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/alt-ergo-free.2.2.0)
- checking for ocp-ocamlc... no
- checking for ocamlc... ocamlc
- ocaml version is 4.14.3
- ocaml library path is /home/opam/.opam/4.14/lib/ocaml
- checking for ocamlfind... yes
- ocamlfind found zarith in -I /home/opam/.opam/4.14/lib/zarith
- ocamlfind found num in -I /home/opam/.opam/4.14/lib/num
- ocamlfind found zip in -I /home/opam/.opam/4.14/lib/zip
- ocamlfind found ocplib-simplex in -I /home/opam/.opam/4.14/lib/ocplib-simplex
- ocamlfind found psmt2-frontend in -I /home/opam/.opam/4.14/lib/psmt2-frontend
- checking for ocp-ocamlopt... no
- checking for ocamlopt... ocamlopt
- checking ocamlopt version... ok
- checking for ocp-ocamlc.opt... no
- checking for ocamlc.opt... ocamlc.opt
- checking ocamlc.opt version... ok
- checking for ocp-ocamlopt.opt... no
- checking for ocamlopt.opt... ocamlopt.opt
- checking ocamlc.opt version... ok
- checking for ocamldep... ocamldep
- checking for ocamllex... ocamllex
- checking for ocamllex.opt... ocamllex.opt
- checking for menhir... menhir
- ocamlfind: Package `lablgtk2.sourceview2' not found
- checking for /home/opam/.opam/4.14/lib/ocaml/lablgtk2/lablgtksourceview2.cma... no
- Will not be able to compile GUI. Please install the *liblablgtksourceview2-ocaml-dev* Debian package - or use the GODI caml package system *http://godi.ocaml-programming.de/* - or compile from sources *http://wwwfun.kurims.kyoto-u.ac.jp/soft/lsl/lablgtk.html*
- checking for ocamlweb... true
- checking platform... configure: creating ./config.status
- config.status: creating Makefile.configurable
- config.status: WARNING: 'Makefile.configurable.in' seems to ignore the --datarootdir setting
Processing 3/4: [alt-ergo-free: make uninstall]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "remove" "make" "uninstall" "MANDIR=/home/opam/.opam/4.14/man" (CWD=/home/opam/.opam/4.14/.opam-switch/remove/alt-ergo-free.2.2.0)
- menhir -v parsers/why/why_parser.mly
- ocamllex.opt parsers/why/why_lexer.mll > /dev/null
- ocamldep -slash -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex lib/util/*.ml* lib/structures/*.ml* lib/reasoners/*.ml* lib/frontend/*.ml* tools/text/*.ml* \
- tools/gui/*.ml* parsers/why/*.ml* parsers/smt2/*.ml* plugins/fm-simplex/*ml* > .depend
- ocamlfind remove alt-ergo-lib
- ocamlfind: [WARNING] No such file: /home/opam/.opam/4.14/lib/alt-ergo-lib/META
- rm: cannot remove '/home/opam/.opam/4.14/bin/altgr-ergo': No such file or directory
- make: [Makefile.users:273: uninstall] Error 1 (ignored)
- rm: cannot remove '/home/opam/.opam/4.14/share/alt-ergo/gtksourceview-2.0/language-specs/alt-ergo.lang': No such file or directory
- make: [Makefile.users:274: uninstall] Error 1 (ignored)
-> removed alt-ergo-free.2.2.0
Processing 4/4: [alt-ergo-free: 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-free.2.2.0)
- mkdir -p /home/opam/.opam/4.14/man/man1
- cp -f doc/alt-ergo.1 /home/opam/.opam/4.14/man/man1
- mkdir -p /home/opam/.opam/4.14/lib/alt-ergo/preludes
- cp -f preludes/fpa-theory-2017-01-04-16h00.why /home/opam/.opam/4.14/lib/alt-ergo/preludes/
- mkdir -p /home/opam/.opam/4.14/bin
- cp -f alt-ergo.opt /home/opam/.opam/4.14/bin/alt-ergo
- mkdir -p /home/opam/.opam/4.14/lib/alt-ergo/plugins
- cp -f fm-simplex-plugin.cmxs /home/opam/.opam/4.14/lib/alt-ergo/plugins
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/config.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/util/config.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/version.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/emap.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/myUnix.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/util/myUnix.ml", line 19, characters 7-22:
- 19 | if Pervasives.(<>) timelimit 0. then
- ^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/myDynlink.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/myZip.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/util.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/lists.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/numsNumbers.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/zarithNumbers.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/util/zarithNumbers.ml", line 156, characters 16-30:
- 156 | let abs_n = Pervasives.abs n in
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/numbers.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/util/numbers.ml", line 51, characters 13-27:
- 51 | 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-free.2.2.0/lib/util/numbers.ml", line 52, characters 18-32:
- 52 | 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 -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/options.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/util/options.ml", line 905, characters 33-51:
- 905 | 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 -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/vec.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/iheap.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/timers.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/gc_debug.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/loc.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/hconsing.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/util/hstring.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/exception.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/symbols.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/structures/symbols.ml", line 117, characters 10-28:
- 117 | | _ -> 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 -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/ty.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/structures/ty.ml", line 205, characters 33-51:
- 205 | | 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-free.2.2.0/lib/structures/ty.ml", line 228, characters 17-35:
- 228 | | 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-free.2.2.0/lib/structures/ty.ml", line 271, characters 52-70:
- 271 | 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-free.2.2.0/lib/structures/ty.ml", line 343, characters 30-48:
- 343 | 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-free.2.2.0/lib/structures/ty.ml", line 345, characters 26-40:
- 345 | 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-free.2.2.0/lib/structures/ty.ml", line 386, characters 45-63:
- 386 | 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 -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/parsed.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/errors.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/typed.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/term.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/structures/term.ml", line 273, characters 4-18:
- 273 | Pervasives.(=) (String.sub (Sy.to_string v.f) 0 4) "_sko"
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/structures/term.ml", line 341, characters 6-20:
- 341 | try Pervasives.(=) (String.sub (Hstring.view h) 0 6) "model:"
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/fpa_rounding.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/literal.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/structures/literal.ml", line 98, characters 22-40:
- 98 | let compare a1 a2 = Pervasives.compare a1.tpos a2.tpos
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/formula.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/structures/formula.ml", line 111, characters 10-28:
- 111 | 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-free.2.2.0/lib/structures/formula.ml", line 112, characters 14-32:
- 112 | 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-free.2.2.0/lib/structures/formula.ml", line 869, characters 6-20:
- 869 | 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 -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/satml_types.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/explanation.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/commands.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/structures/profiling.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/structures/profiling.ml", line 89, characters 7-21:
- 89 | if Pervasives.(>) v 0. then v else -. v
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/structures/profiling.ml", line 629, characters 5-19:
- 629 | if Pervasives.(=) v 0. then fprintf fmt "-- "
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/structures/profiling.ml", line 630, characters 10-24:
- 630 | else if Pervasives.(<) v 10. then fprintf fmt "%0.5f" v
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/structures/profiling.ml", line 631, characters 10-24:
- 631 | else if Pervasives.(<) v 100. then fprintf fmt "%0.4f" v
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/matching.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/instances.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/polynome.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/ac.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/uf.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/use.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/intervals.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/inequalities.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/inequalities.ml", line 87, characters 5-7:
- 87 | (Uf : Uf.S with type r = X.r)
- ^^
- Warning 67 [unused-functor-parameter]: unused functor parameter Uf.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/inequalities.ml", line 96, characters 5-7:
- 96 | (Uf : Uf.S with type r = X.r)
- ^^
- Warning 60 [unused-module]: unused module Uf.
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/intervalCalculus.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/arith.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/records.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/bitv.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/arrays.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/sum.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/ite.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/ite.ml", line 75, characters 32-50:
- 75 | if c <> 0 then c else Pervasives.compare b1 b2
- ^^^^^^^^^^^^^^^^^^
- 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 -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/combine.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/ccx.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/theory.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/sat_solver_sig.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/sat_solver_sig.ml", line 70, characters 15-17:
- 70 | module Make (Th : Theory.S) : S
- ^^
- Warning 67 [unused-functor-parameter]: unused functor parameter Th.
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/fun_sat.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/fun_sat.ml", line 72, characters 34-49:
- 72 | 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-free.2.2.0/lib/reasoners/fun_sat.ml", line 98, characters 21-39:
- 98 | 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-free.2.2.0/lib/reasoners/fun_sat.ml", line 100, characters 18-36:
- 100 | 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-free.2.2.0/lib/reasoners/fun_sat.ml", line 970, characters 7-22:
- 970 | 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
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/satml.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 354, characters 4-18:
- 354 | Pervasives.(<) (Vec.get env.vars j).weight (Vec.get env.vars i).weight
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 368, characters 7-21:
- 368 | if Pervasives.(>) v.weight 1e100 then begin
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 380, characters 7-21:
- 380 | if Pervasives.(>) c.activity 1e20 then begin
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 864, characters 12-30:
- 864 | let c = Pervasives.compare c1.activity c2.activity in
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 92, characters 8-39:
- 92 | mutable clauses : clause Vec.t;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field clauses is never mutated.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 95, characters 8-39:
- 95 | mutable learnts : clause Vec.t;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field learnts is never mutated.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 104, characters 8-33:
- 104 | mutable vars : var Vec.t;
- ^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field vars is never mutated.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 107, characters 8-35:
- 107 | mutable trail : atom Vec.t;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field trail is never mutated.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 110, characters 8-38:
- 110 | mutable trail_lim : int Vec.t;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field trail_lim is never mutated.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 125, characters 8-32:
- 125 | mutable order : Iheap.t;
- ^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field order is never mutated.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 128, characters 8-42:
- 128 | mutable progress_estimate : float;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field progress_estimate is never read.
- (However, this field is used to build or mutate values.)
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 140, characters 8-36:
- 140 | mutable restart_first : int;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field restart_first is never mutated.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 147, characters 8-42:
- 147 | mutable learntsize_factor : float;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field learntsize_factor is never mutated.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 154, characters 8-31:
- 154 | expensive_ccmin : bool;
- ^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field expensive_ccmin is never read.
- (However, this field is used to build or mutate values.)
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 157, characters 8-29:
- 157 | polarity_mode : bool;
- ^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field polarity_mode is never read.
- (However, this field is used to build or mutate values.)
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 171, characters 8-35:
- 171 | mutable max_literals : int;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field max_literals is never read.
- (However, this field is used to build or mutate values.)
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 173, characters 8-35:
- 173 | mutable tot_literals : int;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: record field tot_literals is never read.
- (However, this field is used to build or mutate values.)
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 179, characters 8-34:
- 179 | mutable model : var Vec.t;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field model is never mutated.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 185, characters 8-40:
- 185 | mutable tenv_queue : Th.t Vec.t;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field tenv_queue is never mutated.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 187, characters 8-44:
- 187 | mutable tatoms_queue : atom Queue.t;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field tatoms_queue is never mutated.
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml.ml", line 188, characters 8-43:
- 188 | mutable th_tableaux : atom Queue.t;
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 69 [unused-field]: mutable record field th_tableaux is never mutated.
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/satml_frontend.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml_frontend.ml", line 536, characters 16-34:
- 536 | let res = Pervasives.compare w2 w1 in
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/reasoners/satml_frontend.ml", line 925, characters 19-33:
- 925 | let aux mx f = Pervasives.max mx (F.max_term_depth f) 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 -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/reasoners/sat_solver.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/frontend/triggers.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/frontend/triggers.ml", line 36, characters 54-72:
- 36 | 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-free.2.2.0/lib/frontend/triggers.ml", line 53, characters 17-35:
- 53 | | 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-free.2.2.0/lib/frontend/triggers.ml", line 58, characters 9-27:
- 58 | 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-free.2.2.0/lib/frontend/triggers.ml", line 78, characters 11-29:
- 78 | | _ -> 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-free.2.2.0/lib/frontend/triggers.ml", line 156, characters 28-46:
- 156 | if c <> 0 then c else Pervasives.compare (a1, b1, c1, d1) (a2, b2, c2, d2)
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/frontend/triggers.ml", line 194, characters 14-32:
- 194 | 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 -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/frontend/cnf.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/frontend/typechecker.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/frontend/typechecker.ml", line 39, characters 48-66:
- 39 | Map.Make(struct type t = string let compare = Pervasives.compare end)
- ^^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/frontend/typechecker.ml", line 81, characters 30-44:
- 81 | | PPTvarid (y, _) -> Pervasives.(=) x y
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/frontend/typechecker.ml", line 100, characters 35-49:
- 100 | | PPTexternal (l, s, loc) when Pervasives.(=) s "farray" ->
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/frontend/typechecker.ml", line 111, characters 28-42:
- 111 | | Some (id, vars, ty) when Pervasives.(=) s id &&
- ^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Pervasives
- Use Stdlib instead.
-
- If you need to stay compatible with OCaml < 4.07, you can use the
- stdlib-shims library: https://github.com/ocaml/stdlib-shims
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/frontend/typechecker.ml", line 772, characters 17-31:
- 772 | 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-free.2.2.0/lib/frontend/typechecker.ml", line 772, characters 42-56:
- 772 | 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-free.2.2.0/lib/frontend/typechecker.ml", line 1874, characters 6-20:
- 1874 | 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-free.2.2.0/lib/frontend/typechecker.ml", line 1877, characters 6-20:
- 1877 | 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 -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/frontend/parsed_interface.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/frontend/frontend.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib lib/frontend/parsers.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/lib/frontend/parsers.ml", line 103, characters 9-24:
- 103 | 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 -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib parsers/why/why_parser.ml
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib parsers/why/why_lexer.ml
- File "/home/opam/.opam/4.14/.opam-switch/build/alt-ergo-free.2.2.0/parsers/why/why_lexer.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- ocamlc.opt -c -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -for-pack AltErgoLib parsers/smt2/psmt2_to_alt_ergo.ml
- ocamlc.opt -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -pack -o altErgoLib.cmo lib/util/config.cmo lib/util/version.cmo lib/util/emap.cmo lib/util/myUnix.cmo lib/util/myDynlink.cmo lib/util/myZip.cmo lib/util/util.cmo lib/util/lists.cmo lib/util/numsNumbers.cmo lib/util/zarithNumbers.cmo lib/util/numbers.cmo lib/util/options.cmo lib/util/vec.cmo lib/util/iheap.cmo lib/util/timers.cmo lib/util/gc_debug.cmo lib/util/loc.cmo lib/util/hconsing.cmo lib/util/hstring.cmo lib/structures/exception.cmo lib/structures/symbols.cmo lib/structures/ty.cmo lib/structures/parsed.cmo lib/structures/errors.cmo lib/structures/typed.cmo lib/structures/term.cmo lib/structures/fpa_rounding.cmo lib/structures/literal.cmo lib/structures/formula.cmo lib/structures/satml_types.cmo lib/structures/explanation.cmo lib/structures/commands.cmo lib/structures/profiling.cmo lib/reasoners/matching.cmo lib/reasoners/instances.cmo lib/reasoners/polynome.cmo lib/reasoners/ac.cmo lib/reasoners/uf.cmo lib/reasoners/use.cmo lib/reasoners/intervals.cmo lib/reasoners/inequalities.cmo lib/reasoners/intervalCalculus.cmo lib/reasoners/arith.cmo lib/reasoners/records.cmo lib/reasoners/bitv.cmo lib/reasoners/arrays.cmo lib/reasoners/sum.cmo lib/reasoners/ite.cmo lib/reasoners/combine.cmo lib/reasoners/ccx.cmo lib/reasoners/theory.cmo lib/reasoners/sat_solver_sig.cmo lib/reasoners/fun_sat.cmo lib/reasoners/satml.cmo lib/reasoners/satml_frontend.cmo lib/reasoners/sat_solver.cmo lib/frontend/triggers.cmo lib/frontend/cnf.cmo lib/frontend/typechecker.cmo lib/frontend/parsed_interface.cmo lib/frontend/frontend.cmo lib/frontend/parsers.cmo parsers/why/why_parser.cmo parsers/why/why_lexer.cmo parsers/smt2/psmt2_to_alt_ergo.cmo lib/reasoners/sig.cmi
- ocamlc.opt -a -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -o altErgoLib.cma altErgoLib.cmo
- ocamlopt.opt -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -pack -o altErgoLib.cmx lib/util/config.cmx lib/util/version.cmx lib/util/emap.cmx lib/util/myUnix.cmx lib/util/myDynlink.cmx lib/util/myZip.cmx lib/util/util.cmx lib/util/lists.cmx lib/util/numsNumbers.cmx lib/util/zarithNumbers.cmx lib/util/numbers.cmx lib/util/options.cmx lib/util/vec.cmx lib/util/iheap.cmx lib/util/timers.cmx lib/util/gc_debug.cmx lib/util/loc.cmx lib/util/hconsing.cmx lib/util/hstring.cmx lib/structures/exception.cmx lib/structures/symbols.cmx lib/structures/ty.cmx lib/structures/parsed.cmx lib/structures/errors.cmx lib/structures/typed.cmx lib/structures/term.cmx lib/structures/fpa_rounding.cmx lib/structures/literal.cmx lib/structures/formula.cmx lib/structures/satml_types.cmx lib/structures/explanation.cmx lib/structures/commands.cmx lib/structures/profiling.cmx lib/reasoners/matching.cmx lib/reasoners/instances.cmx lib/reasoners/polynome.cmx lib/reasoners/ac.cmx lib/reasoners/uf.cmx lib/reasoners/use.cmx lib/reasoners/intervals.cmx lib/reasoners/inequalities.cmx lib/reasoners/intervalCalculus.cmx lib/reasoners/arith.cmx lib/reasoners/records.cmx lib/reasoners/bitv.cmx lib/reasoners/arrays.cmx lib/reasoners/sum.cmx lib/reasoners/ite.cmx lib/reasoners/combine.cmx lib/reasoners/ccx.cmx lib/reasoners/theory.cmx lib/reasoners/sat_solver_sig.cmx lib/reasoners/fun_sat.cmx lib/reasoners/satml.cmx lib/reasoners/satml_frontend.cmx lib/reasoners/sat_solver.cmx lib/frontend/triggers.cmx lib/frontend/cnf.cmx lib/frontend/typechecker.cmx lib/frontend/parsed_interface.cmx lib/frontend/frontend.cmx lib/frontend/parsers.cmx parsers/why/why_parser.cmx parsers/why/why_lexer.cmx parsers/smt2/psmt2_to_alt_ergo.cmx lib/reasoners/sig.cmi
- ocamlopt.opt -a -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -o altErgoLib.cmxa altErgoLib.cmx
- ocamlopt.opt -shared -annot -absname -bin-annot -short-paths -strict-sequence -g -w +A-45-27-4-9-44-32-48-41-6-22 -inline 100 -I /home/opam/.opam/4.14/lib/num -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zip -I /home/opam/.opam/4.14/lib/ocplib-simplex -I /home/opam/.opam/4.14/lib/psmt2-frontend -I lib/util -I lib/structures -I lib/reasoners -I lib/frontend -I tools/text -I tools/gui -I parsers/why -I parsers/smt2 -I plugins/fm-simplex -o altErgoLib.cmxs altErgoLib.cmx
- OCAMLFIND_DESTDIR=/home/opam/.opam/4.14/lib \
- ocamlfind install alt-ergo altErgoLib.* META
- Installed /home/opam/.opam/4.14/lib/alt-ergo/altErgoLib.o
- Installed /home/opam/.opam/4.14/lib/alt-ergo/altErgoLib.cmxs
- Installed /home/opam/.opam/4.14/lib/alt-ergo/altErgoLib.cmxa
- Installed /home/opam/.opam/4.14/lib/alt-ergo/altErgoLib.cmx
- Installed /home/opam/.opam/4.14/lib/alt-ergo/altErgoLib.cmt
- Installed /home/opam/.opam/4.14/lib/alt-ergo/altErgoLib.cmo
- Installed /home/opam/.opam/4.14/lib/alt-ergo/altErgoLib.cmi
- Installed /home/opam/.opam/4.14/lib/alt-ergo/altErgoLib.cma
- Installed /home/opam/.opam/4.14/lib/alt-ergo/altErgoLib.a
- Installed /home/opam/.opam/4.14/lib/alt-ergo/META
-> installed alt-ergo-free.2.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 04:24.34 ---> saved as "f338953ab5ba362163dad06e883170cb0ea10083ac0cf71976d83afe95878a5b"
Job succeeded
2026-04-11 04:24.39: Job succeeded