(not at the head of any monitored branch or PR)
2026-04-10 17:57.39: New job: test logtk.1.6 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 logtk.1.6; \
    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" != 'logtk.1.6' && 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 logtk.1.6) || true
RUN opam reinstall --with-test --verbose logtk.1.6; \
    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" != 'logtk.1.6' && 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.39: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4-dune.3.22.2-logtk.1.6-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-10 17:57.39: 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 logtk.1.6;\
             \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\" != 'logtk.1.6' && 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 logtk.1.6) || true"))
 (run (shell  "opam reinstall --with-test --verbose logtk.1.6;\
             \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\" != 'logtk.1.6' && 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.39: Waiting for resource in pool OCluster
2026-04-11 02:56.48: Waiting for worker…
2026-04-11 02:58.32: 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 02:59.03 ---> 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 02:59.03 ---> 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 02:59.03 ---> 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 02:59.03 ---> 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 02:59.03 ---> using "2d8e28a183d0990d4c5f7a587471f7c743cdf0d9f00bdf4de7761e94ec09202a" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-11 02:59.04 ---> using "43c49734bd8015921029b9a907dd77c0e05208c46b686916515831f5a9e9d500" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-11 02:59.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 02:59.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 02:59.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 02:59.04 ---> using "59eacf68137f7dccf94b9ebc5274fdc537230a8c71c2eb52f8fcf698829c6d46" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall logtk.1.6;\
                        \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\" != 'logtk.1.6' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
logtk.1.6 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 15 packages
  - install base-bytes        base     [required by logtk]
  - install conf-gmp          5        [required by zarith]
  - install conf-pkg-config   4        [required by zarith]
  - install containers        2.8.1    [required by logtk]
  - install csexp             1.5.2    [required by dune-configurator]
  - install dune-configurator 3.22.2   [required by containers]
  - install iter              1.9      [required by logtk]
  - install logtk             1.6
  - install menhir            20211128 [required by logtk]
  - install menhirLib         20211128 [required by menhir]
  - install menhirSdk         20211128 [required by menhir]
  - install ocamlfind         1.9.8    [required by base-bytes, zarith]
  - install oseq              0.4.1    [required by logtk]
  - install seq               base     [required by containers, oseq]
  - install zarith            1.14     [required by logtk]

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

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

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

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libgmp-dev" "pkg-config"
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20623 files and directories currently installed.)
- Preparing to unpack .../0-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../1-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../4-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../5-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- 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 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 conf-gmp.5  (cached)
-> retrieved containers.2.8.1  (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved csexp.1.5.2  (cached)
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.22.2  (cached)
-> retrieved iter.1.9  (cached)
-> retrieved logtk.1.6  (https://opam.ocaml.org/cache)
-> installed iter.1.9
-> retrieved menhir.20211128, menhirLib.20211128, menhirSdk.20211128  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved oseq.0.4.1  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved zarith.1.14  (cached)
-> installed menhirSdk.20211128
-> installed dune-configurator.3.22.2
-> installed oseq.0.4.1
-> installed menhirLib.20211128
-> installed containers.2.8.1
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed zarith.1.14
-> installed menhir.20211128
-> installed logtk.1.6
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 02:59.40 ---> saved as "66395f05d1f64e60d53fad5ef9e18b4f1824773fc47db5d10aab95760941c4be"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test logtk.1.6) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile logtk              1.6
=== install 12 packages
  - install   alcotest           1.9.1  [required by logtk]
  - install   astring            0.8.5  [required by alcotest]
  - install   cmdliner           2.1.0  [required by alcotest]
  - install   fmt                0.11.0 [required by alcotest]
  - install   ocaml-syntax-shims 1.0.0  [required by alcotest]
  - install   ocamlbuild         0.16.1 [required by fmt, astring, uutf]
  - install   qcheck-alcotest    0.91   [required by logtk]
  - install   qcheck-core        0.91   [required by logtk]
  - install   re                 1.14.0 [required by alcotest]
  - install   stdlib-shims       0.3.0  [required by alcotest]
  - install   topkg              1.1.1  [required by fmt, astring, uutf]
  - install   uutf               1.0.4  [required by alcotest]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved logtk.1.6  (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved ocamlbuild.0.16.1  (https://opam.ocaml.org/cache)
-> retrieved qcheck-alcotest.0.91, qcheck-core.0.91  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.14.0
-> installed qcheck-core.0.91
-> installed cmdliner.2.1.0
-> removed   logtk.1.6
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed alcotest.1.9.1
-> installed qcheck-alcotest.0.91
-> installed logtk.1.6
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:03.02 ---> saved as "a962be7de35f2cf117269f0909d6d629c86eeaf6f005cb1bdd7a50c01ba71828"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [logtk.1.6: extract]
-> retrieved logtk.1.6  (cached)
Processing  2/4: [logtk: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "logtk" "-j" "71" (CWD=/home/opam/.opam/4.14/.opam-switch/build/logtk.1.6)
- File "src/dune", lines 1-4, characters 0-162:
- 1 | (env
- 2 |   (_ (flags :standard -warn-error -3 -color always -safe-string))
- 3 |   (_ (ocamlopt_flags :standard -no-assert -O3 -unbox-closures -unbox-closures-factor 20))
- 4 | )
- Warning: This env stanza contains rules after a wildcard rule. These are
- going to be ignored.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -bin-annot -I src/core/.logtk.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/byte/logtk__Scoped.cmo -c -impl src/core/Scoped.ml)
- File "src/core/Scoped.ml", line 25, characters 7-25:
- 25 |   else Pervasives.compare (scope v1) (scope 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
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -bin-annot -I src/core/.logtk.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/byte/logtk__Binder.cmo -c -impl src/core/Binder.ml)
- File "src/core/Binder.ml", line 17, characters 22-40:
- 17 | let compare (a:t) b = 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
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/native/logtk__Binder.cmx -c -impl src/core/Binder.ml)
- File "src/core/Binder.ml", line 17, characters 22-40:
- 17 | let compare (a:t) b = 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
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -bin-annot -I src/core/.logtk.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/byte/logtk__Comparison.cmo -c -impl src/core/Comparison.ml)
- File "src/core/Comparison.ml", line 10, characters 29-43:
- 10 | let equal : t -> t -> bool = 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
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/native/logtk__Comparison.cmx -c -impl src/core/Comparison.ml)
- File "src/core/Comparison.ml", line 10, characters 29-43:
- 10 | let equal : t -> t -> bool = 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
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/native/logtk__Scoped.cmx -c -impl src/core/Scoped.ml)
- File "src/core/Scoped.ml", line 25, characters 7-25:
- 25 |   else Pervasives.compare (scope v1) (scope 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
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -bin-annot -I src/core/.logtk.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/byte/logtk__Position.cmo -c -impl src/core/Position.ml)
- File "src/core/Position.ml", line 26, characters 14-32:
- 26 | let 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
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -bin-annot -I src/core/.logtk.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/byte/logtk__ID.cmo -c -impl src/core/ID.ml)
- File "src/core/ID.ml", line 69, characters 20-38:
- 69 | let compare i1 i2 = Pervasives.compare i1.id i2.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
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/native/logtk__Position.cmx -c -impl src/core/Position.ml)
- File "src/core/Position.ml", line 26, characters 14-32:
- 26 | let 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
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -bin-annot -I src/core/.logtk.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/byte/logtk__Var.cmo -c -impl src/core/Var.ml)
- File "src/core/Var.ml", line 55, characters 7-20:
- 55 |       (ID.Set.of_seq (ID.Map.keys s))
-             ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.of_seq
- use of_iter instead
- File "src/core/Var.ml", line 56, characters 7-20:
- 56 |       (ID.Set.of_seq (ID.Map.keys t))
-             ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.of_seq
- use of_iter instead
- File "src/core/Var.ml", line 57, characters 51-64:
- 57 |   let of_seq s = s |> Iter.map (fun v->v.id, v) |> ID.Map.of_seq
-                                                         ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Map.of_seq
- use of_iter instead
- File "src/core/Var.ml", line 58, characters 54-68:
- 58 |   let add_seq m s = s |> Iter.map (fun v->v.id, v) |> ID.Map.add_seq m
-                                                            ^^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Map.add_seq
- use add_iter instead
- File "src/core/Var.ml", line 61, characters 17-30:
- 61 |   let to_seq t = ID.Map.to_seq t |> Iter.map snd
-                       ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Map.to_seq
- use to_iter instead
- File "src/core/Var.ml", line 78, characters 59-72:
- 78 |   let of_seq s = s |> Iter.map (fun (v,x)->v.id, (v,x)) |> ID.Map.of_seq
-                                                                 ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Map.of_seq
- use of_iter instead
- File "src/core/Var.ml", line 79, characters 17-30:
- 79 |   let to_seq t = ID.Map.to_seq t |> Iter.map snd
-                       ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Map.to_seq
- use to_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -bin-annot -I src/core/.logtk.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/byte/logtk__Multiset.cmo -c -impl src/core/Multiset.ml)
- File "src/core/Multiset.ml", line 299, characters 69-77:
- 299 |     Format.fprintf out "{@[<hov>%a@]}" (Util.pp_seq ~sep:", " pp_p) (M.to_seq m)
-                                                                            ^^^^^^^^
- Alert deprecated: M.to_seq
- use to_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -bin-annot -I src/core/.logtk.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/byte/logtk__Builtin.cmo -c -impl src/core/Builtin.ml)
- File "src/core/Builtin.ml", line 281, characters 16-34:
- 281 |   let 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
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/native/logtk__ID.cmx -c -impl src/core/ID.ml)
- File "src/core/ID.ml", line 69, characters 20-38:
- 69 | let compare i1 i2 = Pervasives.compare i1.id i2.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
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -bin-annot -I src/core/.logtk.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/byte/logtk__Signature.cmo -c -impl src/core/Signature.ml)
- File "src/core/Signature.ml", line 96, characters 4-17:
- 96 |     ID.Map.to_seq s |> Iter.map fst
-          ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Map.to_seq
- use to_iter instead
- File "src/core/Signature.ml", line 99, characters 4-17:
- 99 |     ID.Map.to_seq s |> Iter.map snd |> Iter.map fst
-          ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Map.to_seq
- use to_iter instead
- File "src/core/Signature.ml", line 101, characters 15-28:
- 101 |   let to_seq = ID.Map.to_seq
-                      ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Map.to_seq
- use to_iter instead
- File "src/core/Signature.ml", line 102, characters 16-30:
- 102 |   let add_seq = ID.Map.add_seq
-                       ^^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Map.add_seq
- use add_iter instead
- File "src/core/Signature.ml", line 103, characters 15-28:
- 103 |   let of_seq = ID.Map.of_seq
-                      ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Map.of_seq
- use of_iter instead
- File "src/core/Signature.ml", line 106, characters 32-45:
- 106 | let to_set s = Seq.symbols s |> ID.Set.of_seq
-                                       ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.of_seq
- use of_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -bin-annot -I src/core/.logtk.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/byte/logtk__STerm.cmo -c -impl src/core/STerm.ml)
- File "src/core/STerm.ml", line 53, characters 22-40:
- 53 |   | Var s1, Var s2 -> 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
- File "src/core/STerm.ml", line 105, characters 32-50:
- 105 | and compare_var : var CCOrd.t = 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 "src/core/STerm.ml", line 315, characters 16-32:
- 315 |              |> StringSet.of_seq
-                       ^^^^^^^^^^^^^^^^
- Alert deprecated: StringSet.of_seq
- use of_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/native/logtk__Multiset.cmx -c -impl src/core/Multiset.ml)
- File "src/core/Multiset.ml", line 299, characters 69-77:
- 299 |     Format.fprintf out "{@[<hov>%a@]}" (Util.pp_seq ~sep:", " pp_p) (M.to_seq m)
-                                                                            ^^^^^^^^
- Alert deprecated: M.to_seq
- use to_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/native/logtk__Var.cmx -c -impl src/core/Var.ml)
- File "src/core/Var.ml", line 55, characters 7-20:
- 55 |       (ID.Set.of_seq (ID.Map.keys s))
-             ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.of_seq
- use of_iter instead
- File "src/core/Var.ml", line 56, characters 7-20:
- 56 |       (ID.Set.of_seq (ID.Map.keys t))
-             ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.of_seq
- use of_iter instead
- File "src/core/Var.ml", line 57, characters 51-64:
- 57 |   let of_seq s = s |> Iter.map (fun v->v.id, v) |> ID.Map.of_seq
-                                                         ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Map.of_seq
- use of_iter instead
- File "src/core/Var.ml", line 58, characters 54-68:
- 58 |   let add_seq m s = s |> Iter.map (fun v->v.id, v) |> ID.Map.add_seq m
-                                                            ^^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Map.add_seq
- use add_iter instead
- File "src/core/Var.ml", line 61, characters 17-30:
- 61 |   let to_seq t = ID.Map.to_seq t |> Iter.map snd
-                       ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Map.to_seq
- use to_iter instead
- File "src/core/Var.ml", line 78, characters 59-72:
- 78 |   let of_seq s = s |> Iter.map (fun (v,x)->v.id, (v,x)) |> ID.Map.of_seq
-                                                                 ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Map.of_seq
- use of_iter instead
- File "src/core/Var.ml", line 79, characters 17-30:
- 79 |   let to_seq t = ID.Map.to_seq t |> Iter.map snd
-                       ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Map.to_seq
- use to_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -bin-annot -I src/core/.logtk.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/byte/logtk__Lambda.cmo -c -impl src/core/Lambda.ml)
- File "src/core/Lambda.ml", line 14, characters 22-40:
- 14 |     let compare 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
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -bin-annot -I src/core/.logtk.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/byte/logtk__Type.cmo -c -impl src/core/Type.ml)
- File "src/core/Type.ml", line 163, characters 21-35:
- 163 | let vars_set set t = VarSet.add_seq set (Seq.vars t)
-                            ^^^^^^^^^^^^^^
- Alert deprecated: VarSet.add_seq
- use add_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -bin-annot -I src/core/.logtk.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/byte/logtk__InnerTerm.cmo -c -impl src/core/InnerTerm.ml)
- File "src/core/InnerTerm.ml", line 113, characters 29-47:
- 113 | let[@inline] compare t1 t2 = Pervasives.compare t1.id t2.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 "src/core/InnerTerm.ml", line 839, characters 27-40:
- 839 |   let vars = Seq.vars t |> VarSet.of_seq |> VarSet.elements in
-                                  ^^^^^^^^^^^^^
- Alert deprecated: VarSet.of_seq
- use of_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/native/logtk__Builtin.cmx -c -impl src/core/Builtin.ml)
- File "src/core/Builtin.ml", line 281, characters 16-34:
- 281 |   let 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
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -bin-annot -I src/core/.logtk.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/byte/logtk__Subst.cmo -c -impl src/core/Subst.ml)
- File "src/core/Subst.ml", line 150, characters 7-15:
- 150 |     |> M.of_seq
-              ^^^^^^^^
- Alert deprecated: M.of_seq
- use of_iter instead
- File "src/core/Subst.ml", line 205, characters 68-76:
- 205 |   CCHash.(seq (pair (Scoped.hash HVar.hash) (Scoped.hash T.hash))) (M.to_seq s)
-                                                                           ^^^^^^^^
- Alert deprecated: M.to_seq
- use to_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -bin-annot -I src/core/.logtk.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/byte/logtk__Term.cmo -c -impl src/core/Term.ml)
- File "src/core/Term.ml", line 555, characters 18-31:
- 555 | let max_var set = VarSet.to_seq set |> Seq.max_var
-                         ^^^^^^^^^^^^^
- Alert deprecated: VarSet.to_seq
- use to_iter instead
- File "src/core/Term.ml", line 557, characters 18-31:
- 557 | let min_var set = VarSet.to_seq set |> Seq.min_var
-                         ^^^^^^^^^^^^^
- Alert deprecated: VarSet.to_seq
- use to_iter instead
- File "src/core/Term.ml", line 561, characters 29-42:
- 561 | let vars ts = Seq.vars ts |> VarSet.of_seq
-                                    ^^^^^^^^^^^^^
- Alert deprecated: VarSet.of_seq
- use of_iter instead
- File "src/core/Term.ml", line 605, characters 33-51:
- 605 | let ty_vars t = Seq.ty_vars t |> Type.VarSet.of_seq
-                                        ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Logtk.Type.VarSet.of_seq
- use of_iter instead
- File "src/core/Term.ml", line 626, characters 2-16:
- 626 |   ID.Set.add_seq init (Seq.symbols t)
-         ^^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.add_seq
- use add_iter instead
- File "src/core/Term.ml", line 744, characters 7-21:
- 744 |     |> ID.Set.add_seq ID.Set.empty
-              ^^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.add_seq
- use add_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -bin-annot -I src/core/.logtk.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/byte/logtk__Proof.cmo -c -impl src/core/Proof.ml)
- File "src/core/Proof.ml", line 751, characters 4-22:
- 751 |     CCGraph.Dot.pp_seq
-           ^^^^^^^^^^^^^^^^^^
- Alert deprecated: CCGraph.Dot.pp_seq
- use {!pp_all} instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -bin-annot -I src/core/.logtk.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/byte/logtk__Dtree.cmo -c -impl src/core/Dtree.ml)
- File "src/core/Dtree.ml", line 43, characters 9-27:
- 43 |   | _ -> Pervasives.compare (char_to_int_ c1) (char_to_int_ 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 "src/core/Dtree.ml", line 271, characters 30-44:
- 271 |     CCGraph.make (fun trie -> CharMap.to_seq trie.map)
-                                     ^^^^^^^^^^^^^^
- Alert deprecated: CharMap.to_seq
- use to_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -bin-annot -I src/core/.logtk.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/byte/logtk__FV_tree.cmo -c -impl src/core/FV_tree.ml)
- File "src/core/FV_tree.ml", line 41, characters 62-75:
- 41 |     | S s -> Fmt.fprintf out "(@[set@ %a@])" (Fmt.seq ID.pp) (ID.Set.to_seq s)
-                                                                    ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.to_seq
- use to_iter instead
- File "src/core/FV_tree.ml", line 44, characters 48-61:
- 44 |         Fmt.(seq (pair ~sep:silent ID.pp int)) (ID.Map.to_seq m)
-                                                      ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Map.to_seq
- use to_iter instead
- File "src/core/FV_tree.ml", line 46, characters 56-75:
- 46 |       Fmt.fprintf out "(@[labels@ %a@])" Fmt.(seq int) (Util.Int_set.to_seq l)
-                                                              ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Logtk.Util.Int_set.to_seq
- use to_iter instead
- File "src/core/FV_tree.ml", line 157, characters 9-22:
- 157 |       |> ID.Set.of_seq
-                ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.of_seq
- use of_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -bin-annot -I src/core/.logtk.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/byte/logtk__NPDtree.cmo -c -impl src/core/NPDtree.ml)
- File "src/core/NPDtree.ml", line 220, characters 18-31:
- 220 |          and s2 = ID.Map.to_seq t.map
-                         ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Map.to_seq
- use to_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -bin-annot -I src/core/.logtk.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/byte/logtk__Unif.cmo -c -impl src/core/Unif.ml)
- File "src/core/Unif.ml", line 959, characters 18-33:
- 959 |     let blocked = T.VarSet.of_seq protect in
-                         ^^^^^^^^^^^^^^^
- Alert deprecated: T.VarSet.of_seq
- use of_iter instead
- File "src/core/Unif.ml", line 983, characters 38-53:
- 983 |         then P_vars (T.Seq.vars t2 |> T.VarSet.of_seq)
-                                             ^^^^^^^^^^^^^^^
- Alert deprecated: T.VarSet.of_seq
- use of_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -bin-annot -I src/core/.logtk.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/byte/logtk__Literals.cmo -c -impl src/core/Literals.ml)
- File "src/core/Literals.ml", line 74, characters 5-20:
- 74 |   |> T.VarSet.of_seq
-           ^^^^^^^^^^^^^^^
- Alert deprecated: T.VarSet.of_seq
- use of_iter instead
- File "src/core/Literals.ml", line 116, characters 43-61:
- 116 |       if i1=i2 then Lit.compare l1 l2 else Pervasives.compare i1 i2
-                                                  ^^^^^^^^^^^^^^^^^^
- 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 "src/core/Literals.ml", line 263, characters 26-41:
- 263 |         let clause_vars = T.VarSet.of_seq (Seq.vars lits) in
-                                 ^^^^^^^^^^^^^^^
- Alert deprecated: T.VarSet.of_seq
- use of_iter instead
- File "src/core/Literals.ml", line 441, characters 5-19:
- 441 |   |> ID.Set.add_seq init
-            ^^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.add_seq
- use add_iter instead
- File "src/core/Literals.ml", line 460, characters 31-46:
- 460 |   let vars_ = Seq.vars lits |> T.VarSet.of_seq |> T.VarSet.to_list in
-                                      ^^^^^^^^^^^^^^^
- Alert deprecated: T.VarSet.of_seq
- use of_iter instead
- File "src/core/Literals.ml", line 552, characters 17-32:
- 552 |   let all_vars = T.VarSet.of_seq @@ Seq.vars lits in
-                        ^^^^^^^^^^^^^^^
- Alert deprecated: T.VarSet.of_seq
- use of_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -bin-annot -I src/core/.logtk.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/byte/logtk__Test_prop.cmo -c -impl src/core/Test_prop.ml)
- File "src/core/Test_prop.ml", line 137, characters 7-22:
- 137 |     |> T.VarSet.of_seq |> T.VarSet.to_list
-              ^^^^^^^^^^^^^^^
- Alert deprecated: T.VarSet.of_seq
- use of_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -bin-annot -I src/core/.logtk.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/byte/logtk__Compute_prec.cmo -c -impl src/core/Compute_prec.ml)
- File "src/core/Compute_prec.ml", line 77, characters 7-20:
- 77 |     |> ID.Set.of_seq
-             ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.of_seq
- use of_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/native/logtk__STerm.cmx -c -impl src/core/STerm.ml)
- File "src/core/STerm.ml", line 53, characters 22-40:
- 53 |   | Var s1, Var s2 -> 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
- File "src/core/STerm.ml", line 105, characters 32-50:
- 105 | and compare_var : var CCOrd.t = 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 "src/core/STerm.ml", line 315, characters 16-32:
- 315 |              |> StringSet.of_seq
-                       ^^^^^^^^^^^^^^^^
- Alert deprecated: StringSet.of_seq
- use of_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/native/logtk__InnerTerm.cmx -c -impl src/core/InnerTerm.ml)
- File "src/core/InnerTerm.ml", line 113, characters 29-47:
- 113 | let[@inline] compare t1 t2 = Pervasives.compare t1.id t2.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 "src/core/InnerTerm.ml", line 839, characters 27-40:
- 839 |   let vars = Seq.vars t |> VarSet.of_seq |> VarSet.elements in
-                                  ^^^^^^^^^^^^^
- Alert deprecated: VarSet.of_seq
- use of_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -bin-annot -I src/core/.logtk.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/byte/logtk__Literal.cmo -c -impl src/core/Literal.ml)
- File "src/core/Literal.ml", line 78, characters 8-26:
- 78 |         Pervasives.compare sign1 sign2
-              ^^^^^^^^^^^^^^^^^^
- 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 "src/core/Literal.ml", line 376, characters 75-88:
- 376 | let symbols ?(include_types=false) lit = Seq.symbols ~include_types lit |> ID.Set.of_seq
-                                                                                  ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.of_seq
- use of_iter instead
- File "src/core/Literal.ml", line 572, characters 18-33:
- 572 |   Seq.vars lit |> T.VarSet.of_seq |> T.VarSet.to_list
-                         ^^^^^^^^^^^^^^^
- Alert deprecated: T.VarSet.of_seq
- use of_iter instead
- File "src/core/Literal.ml", line 878, characters 16-34:
- 878 |     C.of_total (Pervasives.compare (_to_int l1) (_to_int l2))
-                       ^^^^^^^^^^^^^^^^^^
- 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
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -g -bin-annot -I src/arbitrary/.logtk_arbitrary.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -I src/core/.logtk.objs/byte -intf-suffix .ml -no-alias-deps -open Logtk_arbitrary -o src/arbitrary/.logtk_arbitrary.objs/byte/logtk_arbitrary__ArType.cmo -c -impl src/arbitrary/arType.ml)
- File "src/arbitrary/arType.ml", line 13, characters 13-30:
- 13 | let base_g = QCheck.Gen.oneofl Type.([term; prop; int; rat])
-                   ^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck.Gen.oneofl
- Use [oneof_list] instead
- File "src/arbitrary/arType.ml", line 26, characters 13-19:
- 26 |   let base = oneofl Type.([ term; int; a_; b_ ]) in
-                   ^^^^^^
- Alert deprecated: QCheck.Gen.oneofl
- Use [oneof_list] instead
- File "src/arbitrary/arType.ml", line 31, characters 14-23:
- 31 |          else frequency
-                    ^^^^^^^^^
- Alert deprecated: QCheck.Gen.frequency
- Use [oneof_weighted] instead
- File "src/arbitrary/arType.ml", line 32, characters 40-51:
- 32 |              [ 1, map (Type.app list_) (list_repeat 1 sub)
-                                              ^^^^^^^^^^^
- Alert deprecated: QCheck.Gen.list_repeat
- Use [list_size (return i) g] instead
- File "src/arbitrary/arType.ml", line 33, characters 40-51:
- 33 |              ; 1, map (Type.app prod_) (list_repeat 2 sub)
-                                              ^^^^^^^^^^^
- Alert deprecated: QCheck.Gen.list_repeat
- Use [list_size (return i) g] instead
- File "src/arbitrary/arType.ml", line 44, characters 12-18:
- 44 |   let var = oneofl [Type.var_of_int 0; Type.var_of_int 1 ] in
-                  ^^^^^^
- Alert deprecated: QCheck.Gen.oneofl
- Use [oneof_list] instead
- File "src/arbitrary/arType.ml", line 47, characters 8-14:
- 47 |       [ oneofl [ Type.term; Type.int; a_; b_ ]
-              ^^^^^^
- Alert deprecated: QCheck.Gen.oneofl
- Use [oneof_list] instead
- File "src/arbitrary/arType.ml", line 55, characters 14-23:
- 55 |          else frequency
-                    ^^^^^^^^^
- Alert deprecated: QCheck.Gen.frequency
- Use [oneof_weighted] instead
- File "src/arbitrary/arType.ml", line 56, characters 40-51:
- 56 |              [ 1, map (Type.app list_) (list_repeat 1 sub)
-                                              ^^^^^^^^^^^
- Alert deprecated: QCheck.Gen.list_repeat
- Use [list_size (return i) g] instead
- File "src/arbitrary/arType.ml", line 57, characters 40-51:
- 57 |              ; 1, map (Type.app prod_) (list_repeat 2 sub)
-                                              ^^^^^^^^^^^
- Alert deprecated: QCheck.Gen.list_repeat
- Use [list_size (return i) g] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -g -bin-annot -I src/arbitrary/.logtk_arbitrary.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -I src/core/.logtk.objs/byte -intf-suffix .ml -no-alias-deps -open Logtk_arbitrary -o src/arbitrary/.logtk_arbitrary.objs/byte/logtk_arbitrary__ArForm.cmo -c -impl src/arbitrary/arForm.ml)
- File "src/arbitrary/arForm.ml", line 28, characters 6-12:
- 28 |     ; oneofl [ F.true_; F.false_ ]
-            ^^^^^^
- Alert deprecated: QCheck.Gen.oneofl
- Use [oneof_list] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -g -bin-annot -I src/arbitrary/.logtk_arbitrary.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -I src/core/.logtk.objs/byte -intf-suffix .ml -no-alias-deps -open Logtk_arbitrary -o src/arbitrary/.logtk_arbitrary.objs/byte/logtk_arbitrary__ArID.cmo -c -impl src/arbitrary/arID.ml)
- File "src/arbitrary/arID.ml", line 13, characters 2-19:
- 13 |   QCheck.Gen.oneofl l
-        ^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck.Gen.oneofl
- Use [oneof_list] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -g -bin-annot -I src/arbitrary/.logtk_arbitrary.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -I src/core/.logtk.objs/byte -intf-suffix .ml -no-alias-deps -open Logtk_arbitrary -o src/arbitrary/.logtk_arbitrary.objs/byte/logtk_arbitrary__ArLiteral.cmo -c -impl src/arbitrary/arLiteral.ml)
- File "src/arbitrary/arLiteral.ml", line 38, characters 2-11:
- 38 |   frequency
-        ^^^^^^^^^
- Alert deprecated: QCheck.Gen.frequency
- Use [oneof_weighted] instead
- File "src/arbitrary/arLiteral.ml", line 41, characters 9-15:
- 41 |       1, oneofl [ Literal.mk_tauto; Literal.mk_absurd; ];
-               ^^^^^^
- Alert deprecated: QCheck.Gen.oneofl
- Use [oneof_list] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -bin-annot -I src/core/.logtk.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/byte/logtk__Rewrite.cmo -c -impl src/core/Rewrite.ml)
- File "src/core/Rewrite.ml", line 99, characters 60-75:
- 99 |   Fmt.(within "{" "}" @@ hvbox @@ Util.pp_seq pp_rule) out (Rule_set.to_seq rs)
-                                                                  ^^^^^^^^^^^^^^^
- Alert deprecated: Rule_set.to_seq
- use to_iter instead
- File "src/core/Rewrite.ml", line 116, characters 20-35:
- 116 |   let rules_seq t = Rule_set.to_seq (rules t)
-                           ^^^^^^^^^^^^^^^
- Alert deprecated: Rule_set.to_seq
- use to_iter instead
- File "src/core/Rewrite.ml", line 262, characters 42-48:
- 262 |     let pp out (s:t) = pp_term_rules out (to_seq s)
-                                                 ^^^^^^
- Alert deprecated: to_seq
- use to_iter instead
- File "src/core/Rewrite.ml", line 286, characters 62-68:
- 286 |       Fmt.fprintf out "{@[<hv>%a@]}" (Util.pp_seq pp_triple) (to_seq s)
-                                                                     ^^^^^^
- Alert deprecated: to_seq
- use to_iter instead
- File "src/core/Rewrite.ml", line 508, characters 9-24:
- 508 |       |> T.VarSet.of_seq |> T.VarSet.to_list
-                ^^^^^^^^^^^^^^^
- Alert deprecated: T.VarSet.of_seq
- use of_iter instead
- File "src/core/Rewrite.ml", line 521, characters 37-43:
- 521 |     let pp out s = pp_lit_rules out (to_seq s)
-                                            ^^^^^^
- Alert deprecated: to_seq
- use to_iter instead
- File "src/core/Rewrite.ml", line 558, characters 28-38:
- 558 |     | Literal.Equation _ -> Set.to_seq !eq_rules_
-                                   ^^^^^^^^^^
- Alert deprecated: Set.to_seq
- use to_iter instead
- File "src/core/Rewrite.ml", line 581, characters 6-19:
- 581 |       CCArray.findi
-             ^^^^^^^^^^^^^
- Alert deprecated: CCArray.findi
- use find_map_i instead
- File "src/core/Rewrite.ml", line 749, characters 4-29:
- 749 |     Term.Rule_inst_set.to_seq s
-           ^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Term.Rule_inst_set.to_seq
- use to_iter instead
- File "src/core/Rewrite.ml", line 774, characters 6-21:
- 774 |       Rule_set.to_seq s
-             ^^^^^^^^^^^^^^^
- Alert deprecated: Rule_set.to_seq
- use to_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -g -bin-annot -I src/arbitrary/.logtk_arbitrary.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -I src/core/.logtk.objs/byte -intf-suffix .ml -no-alias-deps -open Logtk_arbitrary -o src/arbitrary/.logtk_arbitrary.objs/byte/logtk_arbitrary__ArTerm.cmo -c -impl src/arbitrary/arTerm.ml)
- File "src/arbitrary/arTerm.ml", line 64, characters 15-21:
- 64 |     let base = oneofl [a; b; c; d; e; ] in
-                     ^^^^^^
- Alert deprecated: QA.Gen.oneofl
- Use [oneof_list] instead
- File "src/arbitrary/arTerm.ml", line 70, characters 16-25:
- 70 |            else frequency
-                      ^^^^^^^^^
- Alert deprecated: QA.Gen.frequency
- Use [oneof_weighted] instead
- File "src/arbitrary/arTerm.ml", line 98, characters 15-21:
- 98 |     let base = oneofl [a;b;c;d;e;x;y;z] in
-                     ^^^^^^
- Alert deprecated: QA.Gen.oneofl
- Use [oneof_list] instead
- File "src/arbitrary/arTerm.ml", line 116, characters 45-51:
- 116 |                  let g_fun_t gen = map2 lam (oneofl [var_x;var_y;var_z]) gen in
-                                                    ^^^^^^
- Alert deprecated: QA.Gen.oneofl
- Use [oneof_list] instead
- File "src/arbitrary/arTerm.ml", line 117, characters 42-48:
- 117 |                  let g_fun_f1 = map2 lam (oneofl [var_f;var_g]) self in
-                                                 ^^^^^^
- Alert deprecated: QA.Gen.oneofl
- Use [oneof_list] instead
- File "src/arbitrary/arTerm.ml", line 118, characters 42-48:
- 118 |                  let g_fun_f2 = map2 lam (oneofl [var_f2;var_g2]) self in
-                                                 ^^^^^^
- Alert deprecated: QA.Gen.oneofl
- Use [oneof_list] instead
- File "src/arbitrary/arTerm.ml", line 119, characters 33-39:
- 119 |                  [ 2, map2 app1 (oneofl [vf;vg]) self;
-                                        ^^^^^^
- Alert deprecated: QA.Gen.oneofl
- Use [oneof_list] instead
- File "src/arbitrary/arTerm.ml", line 120, characters 33-39:
- 120 |                    2, map3 app2 (oneofl [vf2;vg2]) self self;
-                                        ^^^^^^
- Alert deprecated: QA.Gen.oneofl
- Use [oneof_list] instead
- File "src/arbitrary/arTerm.ml", line 128, characters 13-22:
- 128 |              frequency l
-                    ^^^^^^^^^
- Alert deprecated: QA.Gen.frequency
- Use [oneof_weighted] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -w -32 -g -bin-annot -I src/proofs/.logtk_proofs.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -I src/core/.logtk.objs/byte -intf-suffix .ml -no-alias-deps -open Logtk_proofs -o src/proofs/.logtk_proofs.objs/byte/logtk_proofs__LLProof.cmo -c -impl src/proofs/LLProof.ml)
- File "src/proofs/LLProof.ml", line 228, characters 4-22:
- 228 |     CCGraph.Dot.pp_seq
-           ^^^^^^^^^^^^^^^^^^
- Alert deprecated: CCGraph.Dot.pp_seq
- use {!pp_all} instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -warn-error -32 -g -bin-annot -I src/parsers/.logtk_parsers.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -I src/core/.logtk.objs/byte -intf-suffix .ml -no-alias-deps -open Logtk_parsers -o src/parsers/.logtk_parsers.objs/byte/logtk_parsers__Trace_tstp.cmo -c -impl src/parsers/trace_tstp.ml)
- File "src/parsers/trace_tstp.ml", line 50, characters 20-38:
- 50 | let compare p1 p2 = Pervasives.compare p1 p2  (* FIXME *)
-                          ^^^^^^^^^^^^^^^^^^
- 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
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -w -32 -g -bin-annot -I src/proofs/.logtk_proofs.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -I src/core/.logtk.objs/byte -intf-suffix .ml -no-alias-deps -open Logtk_proofs -o src/proofs/.logtk_proofs.objs/byte/logtk_proofs__LLProver.cmo -c -impl src/proofs/LLProver.ml)
- File "src/proofs/LLProver.ml", line 118, characters 29-41:
- 118 |   let[@inline] to_expand t = T_set.to_seq t.to_expand
-                                    ^^^^^^^^^^^^
- Alert deprecated: T_set.to_seq
- use to_iter instead
- File "src/proofs/LLProver.ml", line 252, characters 28-40:
- 252 |         (Util.pp_seq T.pp) (T_set.to_seq b.to_expand)
-                                   ^^^^^^^^^^^^
- Alert deprecated: T_set.to_seq
- use to_iter instead
- File "src/proofs/LLProver.ml", line 426, characters 2-20:
- 426 |   CCGraph.Dot.pp_seq
-         ^^^^^^^^^^^^^^^^^^
- Alert deprecated: CCGraph.Dot.pp_seq
- use {!pp_all} instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -bin-annot -I src/core/.logtk.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/byte/logtk__Statement.cmo -c -impl src/core/Statement.ml)
- File "src/core/Statement.ml", line 8, characters 22-40:
- 8 |     let compare 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 "src/core/Statement.ml", line 924, characters 19-37:
- 924 |     let vars_lhs = Term.VarSet.of_seq (Iter.fold (fun acc v -> 
-                          ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Logtk.Term.VarSet.of_seq
- use of_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -bin-annot -I src/core/.logtk.objs/byte -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/byte/logtk__Cnf.cmo -c -impl src/core/Cnf.ml)
- File "src/core/Cnf.ml", line 1071, characters 7-22:
- 1071 |     |> CCVector.of_seq ?init:None
-               ^^^^^^^^^^^^^^^
- Alert deprecated: CCVector.of_seq
- use of_iter. For the standard Seq, see {!of_std_seq}
- File "src/core/Cnf.ml", line 1275, characters 5-18:
- 1275 |   |> ID.Map.of_seq
-             ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Map.of_seq
- use of_iter instead
- File "src/core/Cnf.ml", line 1340, characters 5-20:
- 1340 |   |> CCVector.of_seq
-             ^^^^^^^^^^^^^^^
- Alert deprecated: CCVector.of_seq
- use of_iter. For the standard Seq, see {!of_std_seq}
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/native/logtk__Type.cmx -c -impl src/core/Type.ml)
- File "src/core/Type.ml", line 163, characters 21-35:
- 163 | let vars_set set t = VarSet.add_seq set (Seq.vars t)
-                            ^^^^^^^^^^^^^^
- Alert deprecated: VarSet.add_seq
- use add_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/native/logtk__Signature.cmx -c -impl src/core/Signature.ml)
- File "src/core/Signature.ml", line 96, characters 4-17:
- 96 |     ID.Map.to_seq s |> Iter.map fst
-          ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Map.to_seq
- use to_iter instead
- File "src/core/Signature.ml", line 99, characters 4-17:
- 99 |     ID.Map.to_seq s |> Iter.map snd |> Iter.map fst
-          ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Map.to_seq
- use to_iter instead
- File "src/core/Signature.ml", line 101, characters 15-28:
- 101 |   let to_seq = ID.Map.to_seq
-                      ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Map.to_seq
- use to_iter instead
- File "src/core/Signature.ml", line 102, characters 16-30:
- 102 |   let add_seq = ID.Map.add_seq
-                       ^^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Map.add_seq
- use add_iter instead
- File "src/core/Signature.ml", line 103, characters 15-28:
- 103 |   let of_seq = ID.Map.of_seq
-                      ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Map.of_seq
- use of_iter instead
- File "src/core/Signature.ml", line 106, characters 32-45:
- 106 | let to_set s = Seq.symbols s |> ID.Set.of_seq
-                                       ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.of_seq
- use of_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/native/logtk__Term.cmx -c -impl src/core/Term.ml)
- File "src/core/Term.ml", line 555, characters 18-31:
- 555 | let max_var set = VarSet.to_seq set |> Seq.max_var
-                         ^^^^^^^^^^^^^
- Alert deprecated: VarSet.to_seq
- use to_iter instead
- File "src/core/Term.ml", line 557, characters 18-31:
- 557 | let min_var set = VarSet.to_seq set |> Seq.min_var
-                         ^^^^^^^^^^^^^
- Alert deprecated: VarSet.to_seq
- use to_iter instead
- File "src/core/Term.ml", line 561, characters 29-42:
- 561 | let vars ts = Seq.vars ts |> VarSet.of_seq
-                                    ^^^^^^^^^^^^^
- Alert deprecated: VarSet.of_seq
- use of_iter instead
- File "src/core/Term.ml", line 605, characters 33-51:
- 605 | let ty_vars t = Seq.ty_vars t |> Type.VarSet.of_seq
-                                        ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Logtk.Type.VarSet.of_seq
- use of_iter instead
- File "src/core/Term.ml", line 626, characters 2-16:
- 626 |   ID.Set.add_seq init (Seq.symbols t)
-         ^^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.add_seq
- use add_iter instead
- File "src/core/Term.ml", line 744, characters 7-21:
- 744 |     |> ID.Set.add_seq ID.Set.empty
-              ^^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.add_seq
- use add_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/native/logtk__Lambda.cmx -c -impl src/core/Lambda.ml)
- File "src/core/Lambda.ml", line 14, characters 22-40:
- 14 |     let compare 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
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/native/logtk__Subst.cmx -c -impl src/core/Subst.ml)
- File "src/core/Subst.ml", line 150, characters 7-15:
- 150 |     |> M.of_seq
-              ^^^^^^^^
- Alert deprecated: M.of_seq
- use of_iter instead
- File "src/core/Subst.ml", line 205, characters 68-76:
- 205 |   CCHash.(seq (pair (Scoped.hash HVar.hash) (Scoped.hash T.hash))) (M.to_seq s)
-                                                                           ^^^^^^^^
- Alert deprecated: M.to_seq
- use to_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/native/logtk__Proof.cmx -c -impl src/core/Proof.ml)
- File "src/core/Proof.ml", line 751, characters 4-22:
- 751 |     CCGraph.Dot.pp_seq
-           ^^^^^^^^^^^^^^^^^^
- Alert deprecated: CCGraph.Dot.pp_seq
- use {!pp_all} instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/native/logtk__FV_tree.cmx -c -impl src/core/FV_tree.ml)
- File "src/core/FV_tree.ml", line 41, characters 62-75:
- 41 |     | S s -> Fmt.fprintf out "(@[set@ %a@])" (Fmt.seq ID.pp) (ID.Set.to_seq s)
-                                                                    ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.to_seq
- use to_iter instead
- File "src/core/FV_tree.ml", line 44, characters 48-61:
- 44 |         Fmt.(seq (pair ~sep:silent ID.pp int)) (ID.Map.to_seq m)
-                                                      ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Map.to_seq
- use to_iter instead
- File "src/core/FV_tree.ml", line 46, characters 56-75:
- 46 |       Fmt.fprintf out "(@[labels@ %a@])" Fmt.(seq int) (Util.Int_set.to_seq l)
-                                                              ^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Logtk.Util.Int_set.to_seq
- use to_iter instead
- File "src/core/FV_tree.ml", line 157, characters 9-22:
- 157 |       |> ID.Set.of_seq
-                ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.of_seq
- use of_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/native/logtk__Unif.cmx -c -impl src/core/Unif.ml)
- File "src/core/Unif.ml", line 959, characters 18-33:
- 959 |     let blocked = T.VarSet.of_seq protect in
-                         ^^^^^^^^^^^^^^^
- Alert deprecated: T.VarSet.of_seq
- use of_iter instead
- File "src/core/Unif.ml", line 983, characters 38-53:
- 983 |         then P_vars (T.Seq.vars t2 |> T.VarSet.of_seq)
-                                             ^^^^^^^^^^^^^^^
- Alert deprecated: T.VarSet.of_seq
- use of_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/native/logtk__Dtree.cmx -c -impl src/core/Dtree.ml)
- File "src/core/Dtree.ml", line 43, characters 9-27:
- 43 |   | _ -> Pervasives.compare (char_to_int_ c1) (char_to_int_ 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 "src/core/Dtree.ml", line 271, characters 30-44:
- 271 |     CCGraph.make (fun trie -> CharMap.to_seq trie.map)
-                                     ^^^^^^^^^^^^^^
- Alert deprecated: CharMap.to_seq
- use to_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/native/logtk__NPDtree.cmx -c -impl src/core/NPDtree.ml)
- File "src/core/NPDtree.ml", line 220, characters 18-31:
- 220 |          and s2 = ID.Map.to_seq t.map
-                         ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Map.to_seq
- use to_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/native/logtk__Literal.cmx -c -impl src/core/Literal.ml)
- File "src/core/Literal.ml", line 78, characters 8-26:
- 78 |         Pervasives.compare sign1 sign2
-              ^^^^^^^^^^^^^^^^^^
- 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 "src/core/Literal.ml", line 376, characters 75-88:
- 376 | let symbols ?(include_types=false) lit = Seq.symbols ~include_types lit |> ID.Set.of_seq
-                                                                                  ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.of_seq
- use of_iter instead
- File "src/core/Literal.ml", line 572, characters 18-33:
- 572 |   Seq.vars lit |> T.VarSet.of_seq |> T.VarSet.to_list
-                         ^^^^^^^^^^^^^^^
- Alert deprecated: T.VarSet.of_seq
- use of_iter instead
- File "src/core/Literal.ml", line 878, characters 16-34:
- 878 |     C.of_total (Pervasives.compare (_to_int l1) (_to_int l2))
-                       ^^^^^^^^^^^^^^^^^^
- 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
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/native/logtk__Literals.cmx -c -impl src/core/Literals.ml)
- File "src/core/Literals.ml", line 74, characters 5-20:
- 74 |   |> T.VarSet.of_seq
-           ^^^^^^^^^^^^^^^
- Alert deprecated: T.VarSet.of_seq
- use of_iter instead
- File "src/core/Literals.ml", line 116, characters 43-61:
- 116 |       if i1=i2 then Lit.compare l1 l2 else Pervasives.compare i1 i2
-                                                  ^^^^^^^^^^^^^^^^^^
- 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 "src/core/Literals.ml", line 263, characters 26-41:
- 263 |         let clause_vars = T.VarSet.of_seq (Seq.vars lits) in
-                                 ^^^^^^^^^^^^^^^
- Alert deprecated: T.VarSet.of_seq
- use of_iter instead
- File "src/core/Literals.ml", line 441, characters 5-19:
- 441 |   |> ID.Set.add_seq init
-            ^^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.add_seq
- use add_iter instead
- File "src/core/Literals.ml", line 460, characters 31-46:
- 460 |   let vars_ = Seq.vars lits |> T.VarSet.of_seq |> T.VarSet.to_list in
-                                      ^^^^^^^^^^^^^^^
- Alert deprecated: T.VarSet.of_seq
- use of_iter instead
- File "src/core/Literals.ml", line 552, characters 17-32:
- 552 |   let all_vars = T.VarSet.of_seq @@ Seq.vars lits in
-                        ^^^^^^^^^^^^^^^
- Alert deprecated: T.VarSet.of_seq
- use of_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/native/logtk__Rewrite.cmx -c -impl src/core/Rewrite.ml)
- File "src/core/Rewrite.ml", line 99, characters 60-75:
- 99 |   Fmt.(within "{" "}" @@ hvbox @@ Util.pp_seq pp_rule) out (Rule_set.to_seq rs)
-                                                                  ^^^^^^^^^^^^^^^
- Alert deprecated: Rule_set.to_seq
- use to_iter instead
- File "src/core/Rewrite.ml", line 116, characters 20-35:
- 116 |   let rules_seq t = Rule_set.to_seq (rules t)
-                           ^^^^^^^^^^^^^^^
- Alert deprecated: Rule_set.to_seq
- use to_iter instead
- File "src/core/Rewrite.ml", line 262, characters 42-48:
- 262 |     let pp out (s:t) = pp_term_rules out (to_seq s)
-                                                 ^^^^^^
- Alert deprecated: to_seq
- use to_iter instead
- File "src/core/Rewrite.ml", line 286, characters 62-68:
- 286 |       Fmt.fprintf out "{@[<hv>%a@]}" (Util.pp_seq pp_triple) (to_seq s)
-                                                                     ^^^^^^
- Alert deprecated: to_seq
- use to_iter instead
- File "src/core/Rewrite.ml", line 508, characters 9-24:
- 508 |       |> T.VarSet.of_seq |> T.VarSet.to_list
-                ^^^^^^^^^^^^^^^
- Alert deprecated: T.VarSet.of_seq
- use of_iter instead
- File "src/core/Rewrite.ml", line 521, characters 37-43:
- 521 |     let pp out s = pp_lit_rules out (to_seq s)
-                                            ^^^^^^
- Alert deprecated: to_seq
- use to_iter instead
- File "src/core/Rewrite.ml", line 558, characters 28-38:
- 558 |     | Literal.Equation _ -> Set.to_seq !eq_rules_
-                                   ^^^^^^^^^^
- Alert deprecated: Set.to_seq
- use to_iter instead
- File "src/core/Rewrite.ml", line 581, characters 6-19:
- 581 |       CCArray.findi
-             ^^^^^^^^^^^^^
- Alert deprecated: CCArray.findi
- use find_map_i instead
- File "src/core/Rewrite.ml", line 749, characters 4-29:
- 749 |     Term.Rule_inst_set.to_seq s
-           ^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: Term.Rule_inst_set.to_seq
- use to_iter instead
- File "src/core/Rewrite.ml", line 774, characters 6-21:
- 774 |       Rule_set.to_seq s
-             ^^^^^^^^^^^^^^^
- Alert deprecated: Rule_set.to_seq
- use to_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/native/logtk__Test_prop.cmx -c -impl src/core/Test_prop.ml)
- File "src/core/Test_prop.ml", line 137, characters 7-22:
- 137 |     |> T.VarSet.of_seq |> T.VarSet.to_list
-              ^^^^^^^^^^^^^^^
- Alert deprecated: T.VarSet.of_seq
- use of_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/native/logtk__Statement.cmx -c -impl src/core/Statement.ml)
- File "src/core/Statement.ml", line 8, characters 22-40:
- 8 |     let compare 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 "src/core/Statement.ml", line 924, characters 19-37:
- 924 |     let vars_lhs = Term.VarSet.of_seq (Iter.fold (fun acc v -> 
-                          ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Logtk.Term.VarSet.of_seq
- use of_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/native/logtk__Compute_prec.cmx -c -impl src/core/Compute_prec.ml)
- File "src/core/Compute_prec.ml", line 77, characters 7-20:
- 77 |     |> ID.Set.of_seq
-             ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.of_seq
- use of_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -w -32-50 -g -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open Logtk -o src/core/.logtk.objs/native/logtk__Cnf.cmx -c -impl src/core/Cnf.ml)
- File "src/core/Cnf.ml", line 1071, characters 7-22:
- 1071 |     |> CCVector.of_seq ?init:None
-               ^^^^^^^^^^^^^^^
- Alert deprecated: CCVector.of_seq
- use of_iter. For the standard Seq, see {!of_std_seq}
- File "src/core/Cnf.ml", line 1275, characters 5-18:
- 1275 |   |> ID.Map.of_seq
-             ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Map.of_seq
- use of_iter instead
- File "src/core/Cnf.ml", line 1340, characters 5-20:
- 1340 |   |> CCVector.of_seq
-             ^^^^^^^^^^^^^^^
- Alert deprecated: CCVector.of_seq
- use of_iter. For the standard Seq, see {!of_std_seq}
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -g -I src/arbitrary/.logtk_arbitrary.objs/byte -I src/arbitrary/.logtk_arbitrary.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -intf-suffix .ml -no-alias-deps -open Logtk_arbitrary -o src/arbitrary/.logtk_arbitrary.objs/native/logtk_arbitrary__ArID.cmx -c -impl src/arbitrary/arID.ml)
- File "src/arbitrary/arID.ml", line 13, characters 2-19:
- 13 |   QCheck.Gen.oneofl l
-        ^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck.Gen.oneofl
- Use [oneof_list] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -g -I src/arbitrary/.logtk_arbitrary.objs/byte -I src/arbitrary/.logtk_arbitrary.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -intf-suffix .ml -no-alias-deps -open Logtk_arbitrary -o src/arbitrary/.logtk_arbitrary.objs/native/logtk_arbitrary__ArType.cmx -c -impl src/arbitrary/arType.ml)
- File "src/arbitrary/arType.ml", line 13, characters 13-30:
- 13 | let base_g = QCheck.Gen.oneofl Type.([term; prop; int; rat])
-                   ^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck.Gen.oneofl
- Use [oneof_list] instead
- File "src/arbitrary/arType.ml", line 26, characters 13-19:
- 26 |   let base = oneofl Type.([ term; int; a_; b_ ]) in
-                   ^^^^^^
- Alert deprecated: QCheck.Gen.oneofl
- Use [oneof_list] instead
- File "src/arbitrary/arType.ml", line 31, characters 14-23:
- 31 |          else frequency
-                    ^^^^^^^^^
- Alert deprecated: QCheck.Gen.frequency
- Use [oneof_weighted] instead
- File "src/arbitrary/arType.ml", line 32, characters 40-51:
- 32 |              [ 1, map (Type.app list_) (list_repeat 1 sub)
-                                              ^^^^^^^^^^^
- Alert deprecated: QCheck.Gen.list_repeat
- Use [list_size (return i) g] instead
- File "src/arbitrary/arType.ml", line 33, characters 40-51:
- 33 |              ; 1, map (Type.app prod_) (list_repeat 2 sub)
-                                              ^^^^^^^^^^^
- Alert deprecated: QCheck.Gen.list_repeat
- Use [list_size (return i) g] instead
- File "src/arbitrary/arType.ml", line 44, characters 12-18:
- 44 |   let var = oneofl [Type.var_of_int 0; Type.var_of_int 1 ] in
-                  ^^^^^^
- Alert deprecated: QCheck.Gen.oneofl
- Use [oneof_list] instead
- File "src/arbitrary/arType.ml", line 47, characters 8-14:
- 47 |       [ oneofl [ Type.term; Type.int; a_; b_ ]
-              ^^^^^^
- Alert deprecated: QCheck.Gen.oneofl
- Use [oneof_list] instead
- File "src/arbitrary/arType.ml", line 55, characters 14-23:
- 55 |          else frequency
-                    ^^^^^^^^^
- Alert deprecated: QCheck.Gen.frequency
- Use [oneof_weighted] instead
- File "src/arbitrary/arType.ml", line 56, characters 40-51:
- 56 |              [ 1, map (Type.app list_) (list_repeat 1 sub)
-                                              ^^^^^^^^^^^
- Alert deprecated: QCheck.Gen.list_repeat
- Use [list_size (return i) g] instead
- File "src/arbitrary/arType.ml", line 57, characters 40-51:
- 57 |              ; 1, map (Type.app prod_) (list_repeat 2 sub)
-                                              ^^^^^^^^^^^
- Alert deprecated: QCheck.Gen.list_repeat
- Use [list_size (return i) g] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -w -32 -g -I src/proofs/.logtk_proofs.objs/byte -I src/proofs/.logtk_proofs.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -intf-suffix .ml -no-alias-deps -open Logtk_proofs -o src/proofs/.logtk_proofs.objs/native/logtk_proofs__LLProof.cmx -c -impl src/proofs/LLProof.ml)
- File "src/proofs/LLProof.ml", line 228, characters 4-22:
- 228 |     CCGraph.Dot.pp_seq
-           ^^^^^^^^^^^^^^^^^^
- Alert deprecated: CCGraph.Dot.pp_seq
- use {!pp_all} instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -g -I src/arbitrary/.logtk_arbitrary.objs/byte -I src/arbitrary/.logtk_arbitrary.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -intf-suffix .ml -no-alias-deps -open Logtk_arbitrary -o src/arbitrary/.logtk_arbitrary.objs/native/logtk_arbitrary__ArTerm.cmx -c -impl src/arbitrary/arTerm.ml)
- File "src/arbitrary/arTerm.ml", line 64, characters 15-21:
- 64 |     let base = oneofl [a; b; c; d; e; ] in
-                     ^^^^^^
- Alert deprecated: QA.Gen.oneofl
- Use [oneof_list] instead
- File "src/arbitrary/arTerm.ml", line 70, characters 16-25:
- 70 |            else frequency
-                      ^^^^^^^^^
- Alert deprecated: QA.Gen.frequency
- Use [oneof_weighted] instead
- File "src/arbitrary/arTerm.ml", line 98, characters 15-21:
- 98 |     let base = oneofl [a;b;c;d;e;x;y;z] in
-                     ^^^^^^
- Alert deprecated: QA.Gen.oneofl
- Use [oneof_list] instead
- File "src/arbitrary/arTerm.ml", line 116, characters 45-51:
- 116 |                  let g_fun_t gen = map2 lam (oneofl [var_x;var_y;var_z]) gen in
-                                                    ^^^^^^
- Alert deprecated: QA.Gen.oneofl
- Use [oneof_list] instead
- File "src/arbitrary/arTerm.ml", line 117, characters 42-48:
- 117 |                  let g_fun_f1 = map2 lam (oneofl [var_f;var_g]) self in
-                                                 ^^^^^^
- Alert deprecated: QA.Gen.oneofl
- Use [oneof_list] instead
- File "src/arbitrary/arTerm.ml", line 118, characters 42-48:
- 118 |                  let g_fun_f2 = map2 lam (oneofl [var_f2;var_g2]) self in
-                                                 ^^^^^^
- Alert deprecated: QA.Gen.oneofl
- Use [oneof_list] instead
- File "src/arbitrary/arTerm.ml", line 119, characters 33-39:
- 119 |                  [ 2, map2 app1 (oneofl [vf;vg]) self;
-                                        ^^^^^^
- Alert deprecated: QA.Gen.oneofl
- Use [oneof_list] instead
- File "src/arbitrary/arTerm.ml", line 120, characters 33-39:
- 120 |                    2, map3 app2 (oneofl [vf2;vg2]) self self;
-                                        ^^^^^^
- Alert deprecated: QA.Gen.oneofl
- Use [oneof_list] instead
- File "src/arbitrary/arTerm.ml", line 128, characters 13-22:
- 128 |              frequency l
-                    ^^^^^^^^^
- Alert deprecated: QA.Gen.frequency
- Use [oneof_weighted] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -g -I src/arbitrary/.logtk_arbitrary.objs/byte -I src/arbitrary/.logtk_arbitrary.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -intf-suffix .ml -no-alias-deps -open Logtk_arbitrary -o src/arbitrary/.logtk_arbitrary.objs/native/logtk_arbitrary__ArLiteral.cmx -c -impl src/arbitrary/arLiteral.ml)
- File "src/arbitrary/arLiteral.ml", line 38, characters 2-11:
- 38 |   frequency
-        ^^^^^^^^^
- Alert deprecated: QCheck.Gen.frequency
- Use [oneof_weighted] instead
- File "src/arbitrary/arLiteral.ml", line 41, characters 9-15:
- 41 |       1, oneofl [ Literal.mk_tauto; Literal.mk_absurd; ];
-               ^^^^^^
- Alert deprecated: QCheck.Gen.oneofl
- Use [oneof_list] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -g -I src/arbitrary/.logtk_arbitrary.objs/byte -I src/arbitrary/.logtk_arbitrary.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -intf-suffix .ml -no-alias-deps -open Logtk_arbitrary -o src/arbitrary/.logtk_arbitrary.objs/native/logtk_arbitrary__ArForm.cmx -c -impl src/arbitrary/arForm.ml)
- File "src/arbitrary/arForm.ml", line 28, characters 6-12:
- 28 |     ; oneofl [ F.true_; F.false_ ]
-            ^^^^^^
- Alert deprecated: QCheck.Gen.oneofl
- Use [oneof_list] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -w -32 -g -I src/proofs/.logtk_proofs.objs/byte -I src/proofs/.logtk_proofs.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -intf-suffix .ml -no-alias-deps -open Logtk_proofs -o src/proofs/.logtk_proofs.objs/native/logtk_proofs__LLProver.cmx -c -impl src/proofs/LLProver.ml)
- File "src/proofs/LLProver.ml", line 118, characters 29-41:
- 118 |   let[@inline] to_expand t = T_set.to_seq t.to_expand
-                                    ^^^^^^^^^^^^
- Alert deprecated: T_set.to_seq
- use to_iter instead
- File "src/proofs/LLProver.ml", line 252, characters 28-40:
- 252 |         (Util.pp_seq T.pp) (T_set.to_seq b.to_expand)
-                                   ^^^^^^^^^^^^
- Alert deprecated: T_set.to_seq
- use to_iter instead
- File "src/proofs/LLProver.ml", line 426, characters 2-20:
- 426 |   CCGraph.Dot.pp_seq
-         ^^^^^^^^^^^^^^^^^^
- Alert deprecated: CCGraph.Dot.pp_seq
- use {!pp_all} instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -color always -safe-string -warn-error -32 -g -Oclassic -I src/parsers/.logtk_parsers.objs/byte -I src/parsers/.logtk_parsers.objs/native -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/zarith -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -intf-suffix .ml -no-alias-deps -open Logtk_parsers -o src/parsers/.logtk_parsers.objs/native/logtk_parsers__Trace_tstp.cmx -c -impl src/parsers/trace_tstp.ml)
- File "src/parsers/trace_tstp.ml", line 50, characters 20-38:
- 50 | let compare p1 p2 = Pervasives.compare p1 p2  (* FIXME *)
-                          ^^^^^^^^^^^^^^^^^^
- 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
Processing  2/4: [logtk: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "logtk" "-j" "71" (CWD=/home/opam/.opam/4.14/.opam-switch/build/logtk.1.6)
- File "src/dune", lines 1-4, characters 0-162:
- 1 | (env
- 2 |   (_ (flags :standard -warn-error -3 -color always -safe-string))
- 3 |   (_ (ocamlopt_flags :standard -no-assert -O3 -unbox-closures -unbox-closures-factor 20))
- 4 | )
- Warning: This env stanza contains rules after a wildcard rule. These are
- going to be ignored.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -w +a-4-29-42-44-48-58-32-60@8 -color always -g -bin-annot -I tests/.run_tests.eobjs/byte -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I src/arbitrary/.logtk_arbitrary.objs/byte -I src/core/.logtk.objs/byte -I src/parsers/.logtk_parsers.objs/byte -no-alias-deps -o tests/.run_tests.eobjs/byte/testCNF.cmo -c -impl tests/testCNF.ml)
- File "tests/testCNF.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -w +a-4-29-42-44-48-58-32-60@8 -color always -g -bin-annot -I tests/.run_tests.eobjs/byte -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I src/arbitrary/.logtk_arbitrary.objs/byte -I src/core/.logtk.objs/byte -I src/parsers/.logtk_parsers.objs/byte -no-alias-deps -o tests/.run_tests.eobjs/byte/helpers.cmo -c -impl tests/helpers.ml)
- File "tests/helpers.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -w +a-4-29-42-44-48-58-32-60@8 -color always -g -bin-annot -I tests/.run_tests.eobjs/byte -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I src/arbitrary/.logtk_arbitrary.objs/byte -I src/core/.logtk.objs/byte -I src/parsers/.logtk_parsers.objs/byte -no-alias-deps -o tests/.run_tests.eobjs/byte/testType.cmo -c -impl tests/testType.ml)
- File "tests/testType.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -w +a-4-29-42-44-48-58-32-60@8 -color always -g -bin-annot -I tests/.run_tests.eobjs/byte -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I src/arbitrary/.logtk_arbitrary.objs/byte -I src/core/.logtk.objs/byte -I src/parsers/.logtk_parsers.objs/byte -no-alias-deps -o tests/.run_tests.eobjs/byte/testOrdinal.cmo -c -impl tests/testOrdinal.ml)
- File "tests/testOrdinal.ml", line 18, characters 10-19:
- 18 |           frequency
-                ^^^^^^^^^
- Alert deprecated: QCheck.Gen.frequency
- Use [oneof_weighted] instead
- File "tests/testOrdinal.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -w +a-4-29-42-44-48-58-32-60@8 -color always -g -bin-annot -I tests/.run_tests.eobjs/byte -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I src/arbitrary/.logtk_arbitrary.objs/byte -I src/core/.logtk.objs/byte -I src/parsers/.logtk_parsers.objs/byte -no-alias-deps -o tests/.run_tests.eobjs/byte/testCongruence.cmo -c -impl tests/testCongruence.ml)
- File "tests/testCongruence.ml", line 40, characters 20-32:
- 40 |   let gen = QCheck.(list_of_size Gen.(1--10) (list_of_size Gen.(1--5) ArTerm.default)) in
-                          ^^^^^^^^^^^^
- Alert deprecated: QCheck.list_of_size
- Use [list_size] instead
- File "tests/testCongruence.ml", line 40, characters 46-58:
- 40 |   let gen = QCheck.(list_of_size Gen.(1--10) (list_of_size Gen.(1--5) ArTerm.default)) in
-                                                    ^^^^^^^^^^^^
- Alert deprecated: QCheck.list_of_size
- Use [list_size] instead
- File "tests/testCongruence.ml", line 93, characters 11-26:
- 93 |            TSet_set.to_seq cc
-                 ^^^^^^^^^^^^^^^
- Alert deprecated: TSet_set.to_seq
- use to_iter instead
- File "tests/testCongruence.ml", line 89, characters 6-21:
- 89 |       TSet_set.to_seq cc
-            ^^^^^^^^^^^^^^^
- Alert deprecated: TSet_set.to_seq
- use to_iter instead
- File "tests/testCongruence.ml", line 123, characters 60-72:
- 123 |       Format.fprintf out "(@[<hv>%a@])" (Util.pp_seq T.pp) (T.Set.to_seq s)
-                                                                   ^^^^^^^^^^^^
- Alert deprecated: T.Set.to_seq
- use to_iter instead
- File "tests/testCongruence.ml", line 125, characters 57-72:
- 125 |     Format.fprintf out "(@[<v>%a@])" (Util.pp_seq pp_c) (TSet_set.to_seq cc)
-                                                                ^^^^^^^^^^^^^^^
- Alert deprecated: TSet_set.to_seq
- use to_iter instead
- File "tests/testCongruence.ml", line 129, characters 20-32:
- 129 |   let gen = QCheck.(list_of_size Gen.(3--8) (list_of_size Gen.(1--6) ArTerm.default)) in
-                           ^^^^^^^^^^^^
- Alert deprecated: QCheck.list_of_size
- Use [list_size] instead
- File "tests/testCongruence.ml", line 129, characters 45-57:
- 129 |   let gen = QCheck.(list_of_size Gen.(3--8) (list_of_size Gen.(1--6) ArTerm.default)) in
-                                                    ^^^^^^^^^^^^
- Alert deprecated: QCheck.list_of_size
- Use [list_size] instead
- File "tests/testCongruence.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -w +a-4-29-42-44-48-58-32-60@8 -color always -g -bin-annot -I tests/.run_tests.eobjs/byte -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I src/arbitrary/.logtk_arbitrary.objs/byte -I src/core/.logtk.objs/byte -I src/parsers/.logtk_parsers.objs/byte -no-alias-deps -o tests/.run_tests.eobjs/byte/testSubsts.cmo -c -impl tests/testSubsts.ml)
- File "tests/testSubsts.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -w +a-4-29-42-44-48-58-32-60@8 -color always -g -bin-annot -I tests/.run_tests.eobjs/byte -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I src/arbitrary/.logtk_arbitrary.objs/byte -I src/core/.logtk.objs/byte -I src/parsers/.logtk_parsers.objs/byte -no-alias-deps -o tests/.run_tests.eobjs/byte/testIndex.cmo -c -impl tests/testIndex.ml)
- File "tests/testIndex.ml", line 30, characters 56-68:
- 30 |     let seq = List.map Lambda.snf l |> T.Set.of_list |> T.Set.to_seq in
-                                                              ^^^^^^^^^^^^
- Alert deprecated: T.Set.to_seq
- use to_iter instead
- File "tests/testIndex.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -w +a-4-29-42-44-48-58-32-60@8 -color always -g -bin-annot -I tests/.run_tests.eobjs/byte -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I src/arbitrary/.logtk_arbitrary.objs/byte -I src/core/.logtk.objs/byte -I src/parsers/.logtk_parsers.objs/byte -no-alias-deps -o tests/.run_tests.eobjs/byte/testMultiset.cmo -c -impl tests/testMultiset.ml)
- File "tests/testMultiset.ml", line 7, characters 18-36:
- 7 |   let compare i j=Pervasives.compare i j
-                       ^^^^^^^^^^^^^^^^^^
- 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 "tests/testMultiset.ml", line 54, characters 5-15:
- 54 |   Q.(small_list small_int
-           ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- File "tests/testMultiset.ml", line 54, characters 16-25:
- 54 |   Q.(small_list small_int
-                      ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- File "tests/testMultiset.ml", line 139, characters 35-44:
- 139 |   let gen = Q.(map M.of_list (list small_int)) in
-                                          ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- File "tests/testMultiset.ml", line 142, characters 37-55:
- 142 |     let f x y = Comparison.of_total (Pervasives.compare x y) 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 "tests/testMultiset.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -w +a-4-29-42-44-48-58-32-60@8 -color always -g -I tests/.run_tests.eobjs/byte -I tests/.run_tests.eobjs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I src/arbitrary/.logtk_arbitrary.objs/byte -I src/arbitrary/.logtk_arbitrary.objs/native -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I src/parsers/.logtk_parsers.objs/byte -I src/parsers/.logtk_parsers.objs/native -intf-suffix .ml -no-alias-deps -o tests/.run_tests.eobjs/native/testOrdinal.cmx -c -impl tests/testOrdinal.ml)
- File "tests/testOrdinal.ml", line 18, characters 10-19:
- 18 |           frequency
-                ^^^^^^^^^
- Alert deprecated: QCheck.Gen.frequency
- Use [oneof_weighted] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -w +a-4-29-42-44-48-58-32-60@8 -color always -g -bin-annot -I tests/.run_tests.eobjs/byte -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I src/arbitrary/.logtk_arbitrary.objs/byte -I src/core/.logtk.objs/byte -I src/parsers/.logtk_parsers.objs/byte -no-alias-deps -o tests/.run_tests.eobjs/byte/testOrdering.cmo -c -impl tests/testOrdering.ml)
- File "tests/testOrdering.ml", line 50, characters 9-24:
- 50 |       |> T.VarSet.of_seq
-               ^^^^^^^^^^^^^^^
- Alert deprecated: T.VarSet.of_seq
- use of_iter instead
- File "tests/testOrdering.ml", line 74, characters 26-39:
- 74 |       |> ID.Set.of_seq |> ID.Set.to_seq
-                                ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.to_seq
- use to_iter instead
- File "tests/testOrdering.ml", line 74, characters 9-22:
- 74 |       |> ID.Set.of_seq |> ID.Set.to_seq
-               ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.of_seq
- use of_iter instead
- File "tests/testOrdering.ml", line 93, characters 26-39:
- 93 |       |> ID.Set.of_seq |> ID.Set.to_seq
-                                ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.to_seq
- use to_iter instead
- File "tests/testOrdering.ml", line 93, characters 9-22:
- 93 |       |> ID.Set.of_seq |> ID.Set.to_seq
-               ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.of_seq
- use of_iter instead
- File "tests/testOrdering.ml", line 114, characters 26-39:
- 114 |       |> ID.Set.of_seq |> ID.Set.to_seq
-                                 ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.to_seq
- use to_iter instead
- File "tests/testOrdering.ml", line 114, characters 9-22:
- 114 |       |> ID.Set.of_seq |> ID.Set.to_seq
-                ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.of_seq
- use of_iter instead
- File "tests/testOrdering.ml", line 144, characters 26-39:
- 144 |       |> ID.Set.of_seq |> ID.Set.to_seq
-                                 ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.to_seq
- use to_iter instead
- File "tests/testOrdering.ml", line 144, characters 9-22:
- 144 |       |> ID.Set.of_seq |> ID.Set.to_seq
-                ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.of_seq
- use of_iter instead
- File "tests/testOrdering.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -w +a-4-29-42-44-48-58-32-60@8 -color always -g -I tests/.run_tests.eobjs/byte -I tests/.run_tests.eobjs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I src/arbitrary/.logtk_arbitrary.objs/byte -I src/arbitrary/.logtk_arbitrary.objs/native -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I src/parsers/.logtk_parsers.objs/byte -I src/parsers/.logtk_parsers.objs/native -intf-suffix .ml -no-alias-deps -o tests/.run_tests.eobjs/native/testCongruence.cmx -c -impl tests/testCongruence.ml)
- File "tests/testCongruence.ml", line 40, characters 20-32:
- 40 |   let gen = QCheck.(list_of_size Gen.(1--10) (list_of_size Gen.(1--5) ArTerm.default)) in
-                          ^^^^^^^^^^^^
- Alert deprecated: QCheck.list_of_size
- Use [list_size] instead
- File "tests/testCongruence.ml", line 40, characters 46-58:
- 40 |   let gen = QCheck.(list_of_size Gen.(1--10) (list_of_size Gen.(1--5) ArTerm.default)) in
-                                                    ^^^^^^^^^^^^
- Alert deprecated: QCheck.list_of_size
- Use [list_size] instead
- File "tests/testCongruence.ml", line 93, characters 11-26:
- 93 |            TSet_set.to_seq cc
-                 ^^^^^^^^^^^^^^^
- Alert deprecated: TSet_set.to_seq
- use to_iter instead
- File "tests/testCongruence.ml", line 89, characters 6-21:
- 89 |       TSet_set.to_seq cc
-            ^^^^^^^^^^^^^^^
- Alert deprecated: TSet_set.to_seq
- use to_iter instead
- File "tests/testCongruence.ml", line 123, characters 60-72:
- 123 |       Format.fprintf out "(@[<hv>%a@])" (Util.pp_seq T.pp) (T.Set.to_seq s)
-                                                                   ^^^^^^^^^^^^
- Alert deprecated: T.Set.to_seq
- use to_iter instead
- File "tests/testCongruence.ml", line 125, characters 57-72:
- 125 |     Format.fprintf out "(@[<v>%a@])" (Util.pp_seq pp_c) (TSet_set.to_seq cc)
-                                                                ^^^^^^^^^^^^^^^
- Alert deprecated: TSet_set.to_seq
- use to_iter instead
- File "tests/testCongruence.ml", line 129, characters 20-32:
- 129 |   let gen = QCheck.(list_of_size Gen.(3--8) (list_of_size Gen.(1--6) ArTerm.default)) in
-                           ^^^^^^^^^^^^
- Alert deprecated: QCheck.list_of_size
- Use [list_size] instead
- File "tests/testCongruence.ml", line 129, characters 45-57:
- 129 |   let gen = QCheck.(list_of_size Gen.(3--8) (list_of_size Gen.(1--6) ArTerm.default)) in
-                                                    ^^^^^^^^^^^^
- Alert deprecated: QCheck.list_of_size
- Use [list_size] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -w +a-4-29-42-44-48-58-32-60@8 -color always -g -I tests/.run_tests.eobjs/byte -I tests/.run_tests.eobjs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I src/arbitrary/.logtk_arbitrary.objs/byte -I src/arbitrary/.logtk_arbitrary.objs/native -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I src/parsers/.logtk_parsers.objs/byte -I src/parsers/.logtk_parsers.objs/native -intf-suffix .ml -no-alias-deps -o tests/.run_tests.eobjs/native/testMultiset.cmx -c -impl tests/testMultiset.ml)
- File "tests/testMultiset.ml", line 7, characters 18-36:
- 7 |   let compare i j=Pervasives.compare i j
-                       ^^^^^^^^^^^^^^^^^^
- 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 "tests/testMultiset.ml", line 54, characters 5-15:
- 54 |   Q.(small_list small_int
-           ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- File "tests/testMultiset.ml", line 54, characters 16-25:
- 54 |   Q.(small_list small_int
-                      ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- File "tests/testMultiset.ml", line 139, characters 35-44:
- 139 |   let gen = Q.(map M.of_list (list small_int)) in
-                                          ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- File "tests/testMultiset.ml", line 142, characters 37-55:
- 142 |     let f x y = Comparison.of_total (Pervasives.compare x y) 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
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -w +a-4-29-42-44-48-58-32-60@8 -color always -g -bin-annot -I tests/.run_tests.eobjs/byte -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I src/arbitrary/.logtk_arbitrary.objs/byte -I src/core/.logtk.objs/byte -I src/parsers/.logtk_parsers.objs/byte -no-alias-deps -o tests/.run_tests.eobjs/byte/testUnif.cmo -c -impl tests/testUnif.ml)
- File "tests/testUnif.ml", line 606, characters 2-32:
- 606 |   (** Find disagreement tests *)
-         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 50 [unexpected-docstring]: unattached documentation comment (ignored)
- File "tests/testUnif.ml", line 631, characters 2-19:
- 631 |   (** Rule tests *)
-         ^^^^^^^^^^^^^^^^^
- Warning 50 [unexpected-docstring]: unattached documentation comment (ignored)
- File "tests/testUnif.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -w +a-4-29-42-44-48-58-32-60@8 -color always -g -bin-annot -I tests/.run_tests.eobjs/byte -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I src/arbitrary/.logtk_arbitrary.objs/byte -I src/core/.logtk.objs/byte -I src/parsers/.logtk_parsers.objs/byte -no-alias-deps -o tests/.run_tests.eobjs/byte/testTerm.cmo -c -impl tests/testTerm.ml)
- File "tests/testTerm.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -w +a-4-29-42-44-48-58-32-60@8 -color always -g -I tests/.run_tests.eobjs/byte -I tests/.run_tests.eobjs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I src/arbitrary/.logtk_arbitrary.objs/byte -I src/arbitrary/.logtk_arbitrary.objs/native -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I src/parsers/.logtk_parsers.objs/byte -I src/parsers/.logtk_parsers.objs/native -intf-suffix .ml -no-alias-deps -o tests/.run_tests.eobjs/native/testIndex.cmx -c -impl tests/testIndex.ml)
- File "tests/testIndex.ml", line 30, characters 56-68:
- 30 |     let seq = List.map Lambda.snf l |> T.Set.of_list |> T.Set.to_seq in
-                                                              ^^^^^^^^^^^^
- Alert deprecated: T.Set.to_seq
- use to_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -warn-error -3 -w +a-4-29-42-44-48-58-32-60@8 -color always -g -bin-annot -I tests/.run_tests.eobjs/byte -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I src/arbitrary/.logtk_arbitrary.objs/byte -I src/core/.logtk.objs/byte -I src/parsers/.logtk_parsers.objs/byte -no-alias-deps -o tests/.run_tests.eobjs/byte/run_tests.cmo -c -impl tests/run_tests.ml)
- File "tests/run_tests.ml", line 1:
- Warning 70 [missing-mli]: Cannot find interface file.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -w +a-4-29-42-44-48-58-32-60@8 -color always -g -I tests/.run_tests.eobjs/byte -I tests/.run_tests.eobjs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I src/arbitrary/.logtk_arbitrary.objs/byte -I src/arbitrary/.logtk_arbitrary.objs/native -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I src/parsers/.logtk_parsers.objs/byte -I src/parsers/.logtk_parsers.objs/native -intf-suffix .ml -no-alias-deps -o tests/.run_tests.eobjs/native/testOrdering.cmx -c -impl tests/testOrdering.ml)
- File "tests/testOrdering.ml", line 50, characters 9-24:
- 50 |       |> T.VarSet.of_seq
-               ^^^^^^^^^^^^^^^
- Alert deprecated: T.VarSet.of_seq
- use of_iter instead
- File "tests/testOrdering.ml", line 74, characters 26-39:
- 74 |       |> ID.Set.of_seq |> ID.Set.to_seq
-                                ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.to_seq
- use to_iter instead
- File "tests/testOrdering.ml", line 74, characters 9-22:
- 74 |       |> ID.Set.of_seq |> ID.Set.to_seq
-               ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.of_seq
- use of_iter instead
- File "tests/testOrdering.ml", line 93, characters 26-39:
- 93 |       |> ID.Set.of_seq |> ID.Set.to_seq
-                                ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.to_seq
- use to_iter instead
- File "tests/testOrdering.ml", line 93, characters 9-22:
- 93 |       |> ID.Set.of_seq |> ID.Set.to_seq
-               ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.of_seq
- use of_iter instead
- File "tests/testOrdering.ml", line 114, characters 26-39:
- 114 |       |> ID.Set.of_seq |> ID.Set.to_seq
-                                 ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.to_seq
- use to_iter instead
- File "tests/testOrdering.ml", line 114, characters 9-22:
- 114 |       |> ID.Set.of_seq |> ID.Set.to_seq
-                ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.of_seq
- use of_iter instead
- File "tests/testOrdering.ml", line 144, characters 26-39:
- 144 |       |> ID.Set.of_seq |> ID.Set.to_seq
-                                 ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.to_seq
- use to_iter instead
- File "tests/testOrdering.ml", line 144, characters 9-22:
- 144 |       |> ID.Set.of_seq |> ID.Set.to_seq
-                ^^^^^^^^^^^^^
- Alert deprecated: Logtk.ID.Set.of_seq
- use of_iter instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -warn-error -3 -w +a-4-29-42-44-48-58-32-60@8 -color always -g -I tests/.run_tests.eobjs/byte -I tests/.run_tests.eobjs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/containers -I /home/opam/.opam/4.14/lib/containers/data -I /home/opam/.opam/4.14/lib/containers/monomorphic -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/iter -I /home/opam/.opam/4.14/lib/oseq -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I src/arbitrary/.logtk_arbitrary.objs/byte -I src/arbitrary/.logtk_arbitrary.objs/native -I src/core/.logtk.objs/byte -I src/core/.logtk.objs/native -I src/parsers/.logtk_parsers.objs/byte -I src/parsers/.logtk_parsers.objs/native -intf-suffix .ml -no-alias-deps -o tests/.run_tests.eobjs/native/testUnif.cmx -c -impl tests/testUnif.ml)
- File "tests/testUnif.ml", line 606, characters 2-32:
- 606 |   (** Find disagreement tests *)
-         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 50 [unexpected-docstring]: unattached documentation comment (ignored)
- File "tests/testUnif.ml", line 631, characters 2-19:
- 631 |   (** Rule tests *)
-         ^^^^^^^^^^^^^^^^^
- Warning 50 [unexpected-docstring]: unattached documentation comment (ignored)
- (cd _build/default/tests && ./run_tests.exe)
- qcheck random seed: 690116974
- Testing `all'.
- This run has ID `D2EKPF9W'.
- 
-   [OK]          units           0   subst.rename.
-   [OK]          units           1   subst.unify.
-   [OK]          units           2   multiset.max.
-   [OK]          units           3   multiset.compare.
-   [OK]          units           4   multiset.size.
-   [OK]          units           5   ordering.rpo.
-   [OK]          units           6   ordering.kbo.
-   [OK]          units           7   db shift.
-   [OK]          units           8   db unshift.
-   [OK]          units           9   is_appvar.
-   [OK]          units          10   whnf1.
-   [OK]          units          11   patterns.
-   [OK]          units          12   poly app.
-   [OK]          units          13   eta reduce.
-   [OK]          units          14   eta expand.
-   [OK]          units          15   cover_correct.
-   [OK]          units          16   check unifiable.
-   [OK]          units          17   check unifiable.
-   [OK]          units          18   check unifiable.
-   [OK]          units          19   check unifiable.
-   [OK]          units          20   check unifiable.
-   [OK]          units          21   check unifiable.
-   [OK]          units          22   check unifiable.
-   [OK]          units          23   check unifiable.
-   [OK]          units          24   check unifiable.
-   [OK]          units          25   check unifiable.
-   [OK]          units          26   check unifiable.
-   [OK]          units          27   check unifiable.
-   [OK]          units          28   regression matching.
-   [OK]          units          29   JP unification.
-   [OK]          units          30   JP-unif check nonunifiable.
-   [OK]          units          31   JP-unif check unifier.
-   [OK]          units          32   JP-unif check equalities.
-   [OK]          units          33   JP-unif check equalities.
-   [OK]          units          34   JP-unif check count.
-   [OK]          units          35   JP-unif check equalities.
-   [OK]          units          36   JP-unif check equalities.
-   [OK]          units          37   JP-unif check count.
-   [OK]          units          38   JP-unif check count.
-   [OK]          units          39   JP-unif check equalities.
-   [OK]          units          40   JP-unif check equalities.
-   [OK]          units          41   JP-unif check nonunifiable.
-   [OK]          qcheck          0   ordinal_invariant.
-   [OK]          qcheck          1   ordinal_plus_invariant.
-   [OK]          qcheck          2   ordinal_plus_com.
-   [OK]          qcheck          3   ordinal_plus_assoc.
-   [OK]          qcheck          4   ordinal_mult_invariant.
-   [OK]          qcheck          5   ordinal_mult_com.
-   [OK]          qcheck          6   ordinal_mult_assoc.
-   [OK]          qcheck          7   ordinal_distrib.
-   [OK]          qcheck          8   ordinal_ord_plus.
-   [OK]          qcheck          9   ordinal_ord_mult.
-   [OK]          qcheck         10   term_size_subterm.
-   [OK]          qcheck         11   term_replace_same_subterm.
-   [OK]          qcheck         12   term_ground_has_no_var.
-   [OK]          qcheck         13   variant_have_same_hash_mod_alpha.
-   [OK]          qcheck         14   term_min_max_var.
-   [OK]          qcheck         15   whnf_preserve_closed.
-   [OK]          qcheck         16   whnf_correct.
-   [OK]          qcheck         17   whnf_non_redex_is_preserved.
-   [OK]          qcheck         18   snf_preserve_closed.
-   [OK]          qcheck         19   snf_no_remaining_redex.
-   [OK]          qcheck         20   snf_idempotent.
-   [OK]          qcheck         21   snf_correct.
-   [OK]          qcheck         22   check_fun_fvars_correct.
-   [OK]          qcheck         23   eta_reduce_preserves_ty.
-   [OK]          qcheck         24   eta_expand_preserves_ty.
-   [OK]          qcheck         25   unify_gives_unifier.
-   [OK]          qcheck         26   unify_makes_eq.
-   [OK]          qcheck         27   unifier_matches_unified_terms.
-   [OK]          qcheck         28   unif_term_self_equal.
-   [OK]          qcheck         29   unif_term_self_variant.
-   [OK]          qcheck         30   unif_term_variant_sound.
-   [OK]          qcheck         31   unif_term_variant_sym.
-   [OK]          qcheck         32   unif_term_variant_bidir_match.
-   [OK]          qcheck         33   unif_lits_variant_bidir_match.
-   [OK]          qcheck         34   unif_matching_gives_matcher.
-   [OK]          qcheck         35   unif_matching_preserves_rhs.
-   [OK]          qcheck         36   unif_matching_same_scope_preserves_rhs.
-   [OK]          qcheck         37   cnf_gives_clauses.
-   [OK]          qcheck         38   cnf_miniscope_db_closed.
-   [OK]          qcheck         39   congruence_term_eq_to_itself.
-   [OK]          qcheck         40   congruence_class_members_are_eq.
-   [OK]          qcheck         41   congruence_ref.
-   [OK]          qcheck         42   index(dtree)_size_after_add.
-   [OK]          qcheck         43   index(dtree)_gen_retrieved_member.
-   [OK]          qcheck         44   index(dtree)_gen_retrieved_match.
-   [OK]          qcheck         45   index(dtree)_all_matching_are_retrieved.
-   [OK]          qcheck         46   index(npdtree)_size_after_add.
-   [OK]          qcheck         47   index(npdtree)_gen_retrieved_member.
-   [OK]          qcheck         48   index(npdtree)_gen_retrieved_match.
-   [OK]          qcheck         49   index(npdtree)_all_matching_are_retrieved.
-   [OK]          qcheck         50   index(fingerprint_idx)_size_after_add.
-   [OK]          qcheck         51   index(fingerprint_idx)_retrieve_imply_unify.
-   [OK]          qcheck         52   index(fingerprint_idx)_retrieve_imply_gen...
-   [OK]          qcheck         53   index(fingerprint_idx)_retrieve_imply_spe...
-   [OK]          qcheck         54   index(fingerprint_idx)_retrieve_imply_all...
-   [OK]          qcheck         55   index(fingerprint_idx)_retrieve_imply_all...
-   [OK]          qcheck         56   index(fingerprint_idx)_retrieve_imply_all...
-   [OK]          qcheck         57   index(npdtree)_size_after_add.
-   [OK]          qcheck         58   index(npdtree)_retrieve_imply_unify.
-   [OK]          qcheck         59   index(npdtree)_retrieve_imply_generalizat...
-   [OK]          qcheck         60   index(npdtree)_retrieve_imply_specializat...
-   [OK]          qcheck         61   index(npdtree)_retrieve_imply_all_unify.
-   [OK]          qcheck         62   index(npdtree)_retrieve_imply_all_general...
-   [OK]          qcheck         63   index(npdtree)_retrieve_imply_all_special...
-   [OK]          qcheck         64   type_cmp_compatible_eq.
-   [OK]          qcheck         65   ordering_kbo_inv_by_subst.
-   [OK]          qcheck         66   ordering_kbo_transitive.
-   [OK]          qcheck         67   ordering_kbo_swap_args.
-   [OK]          qcheck         68   ordering_kbo_subterm_property.
-   [OK]          qcheck         69   ordering_rpo6_inv_by_subst.
-   [OK]          qcheck         70   ordering_rpo6_transitive.
-   [OK]          qcheck         71   ordering_rpo6_swap_args.
-   [OK]          qcheck         72   ordering_rpo6_subterm_property.
-   [OK]          qcheck         73   multiset_compare_and_compare_partial.
-   [OK]          qcheck         74   multiset_compare_partial_sym.
-   [OK]          qcheck         75   multiset_compare_partial_trans.
-   [OK]          qcheck         76   multiset_max_l_is_max.
-   [OK]          qcheck         77   multiset_max_seq.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/logtk.1.6/_build/default/tests/_build/_tests/all'.
- Test Successful in 6112.230s. 120 tests run.
-> compiled  logtk.1.6
-> removed   logtk.1.6
-> installed logtk.1.6
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 04:45.17 ---> saved as "168c78c552cad8c423f7d65e01aa99df429a020c9cec3f880a6f546f6e0b63f4"
Job succeeded
2026-04-11 04:45.28: Job succeeded