(not at the head of any monitored branch or PR)
2026-04-13 14:41.32: New job: test elina.1.0 with dune.3.22.2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29704/head (3e0c395e7b1393a792367f8edca3654dac71e6fd)
                              on debian-13-ocaml-5.4/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 ba4685aeec7b28fde6af30c7b83004704c68c86a
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:a447b546feb1d9aedc90fda889d688eb9be4d3bdea086d5b2f4f59f38f224ef4
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 elina.1.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'elina.1.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test elina.1.0) || true
RUN opam reinstall --with-test --verbose elina.1.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'elina.1.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

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

2026-04-13 14:41.32: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:a447b546feb1d9aedc90fda889d688eb9be4d3bdea086d5b2f4f59f38f224ef4-dune.3.22.2-elina.1.0-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-13 14:41.32: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:a447b546feb1d9aedc90fda889d688eb9be4d3bdea086d5b2f4f59f38f224ef4)
 (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 elina.1.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'elina.1.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test elina.1.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose elina.1.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'elina.1.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-04-13 14:41.32: Waiting for resource in pool OCluster
2026-04-13 15:18.59: Waiting for worker…
2026-04-13 15:24.00: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
Updating files:  92% (17235/18721)
Updating files:  93% (17411/18721)
Updating files:  94% (17598/18721)
Updating files:  95% (17785/18721)
Updating files:  96% (17973/18721)
Updating files:  97% (18160/18721)
Updating files:  98% (18347/18721)
Updating files:  99% (18534/18721)
Updating files: 100% (18721/18721)
Updating files: 100% (18721/18721), done.
HEAD is now at ba4685aeec Merge pull request #29653 from yakobowski/camlidl
Merge made by the 'ort' strategy.
 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-5.4@sha256:a447b546feb1d9aedc90fda889d688eb9be4d3bdea086d5b2f4f59f38f224ef4)
2026-04-13 15:24.03 ---> using "650db199dd47c38a0926a758262f0be95fb78e2d9a79cbdc2809fa2b15683d52" 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-13 15:24.03 ---> using "1d82b13dae11ba0e4ae4c53498d44d66e368b802cfcb77b29900c3af7e2a1562" from cache

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

Continue? [Y/n] y
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.

Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-13 15:24.03 ---> using "8fc56361284f52a58bad5297203dc12518b6d67d540112c1ecc4d982140daeca" 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       5.4
# invariant            ["ocaml-base-compiler" {= "5.4.1"}]
# compiler-packages    ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.1
2026-04-13 15:24.03 ---> using "fe9db6e6aedfe8a888a2521b45017dcd4b4a70e85e324e4a3527adef84a23afd" 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-13 15:24.03 ---> using "3a79be73bc2436b5aae3b84f3727fd2fe0209a9b7334e20aac2d10fcd0f26769" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-13 15:24.04 ---> using "306e2765f803e9ac22f1023f023e8bba6e1f5296fc47a318acebb969ba1b1204" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-13 15:24.04 ---> using "9e9b4bad2baa72b9fad539bf23d04eb0f2a72097c5685706fe162459f8a36f61" 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 [122 kB]
- Fetched 213 kB in 0s (2049 kB/s)
- Reading package lists...
2026-04-13 15:24.04 ---> using "2fb1ac5ca6037947ba1884eb3a92b9454761e371e0b3c1955630d8faadedabed" 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-13 15:24.04 ---> using "44c7d7d7595c4a41e6aab53eb1a771058e5fb0ec8e90350b08cc9f23cb3d5ed9" 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-13 15:24.04 ---> using "7aefc73d6425e27bc34bfbdb99d4d7e80ada815df45ed1df4e5c28f9ea60f0d6" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall elina.1.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'elina.1.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
elina.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 12 packages
  - install apron           v0.9.15 [required by elina]
  - install bigarray-compat 1.1.0   [required by mlgmpidl]
  - install camlidl         1.13-1  [required by elina]
  - install conf-findutils  1       [required by ez-conf-lib]
  - install conf-gmp-paths  1       [required by mlgmpidl]
  - install conf-mpfr-paths 1       [required by mlgmpidl]
  - install conf-perl       2       [required by elina]
  - install elina           1.0
  - install ez-conf-lib     2       [required by conf-gmp-paths, conf-mpfr-paths]
  - install mlgmpidl        1.3.0   [required by elina]
  - install ocamlbuild      0.16.1  [required by apron]
  - install ocamlfind       1.9.8   [required by elina]

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

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

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

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libgmp-dev" "libmpfr-dev"
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20654 files and directories currently installed.)
- Preparing to unpack .../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 .../libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libmpfr-dev:amd64.
- Preparing to unpack .../libmpfr-dev_4.2.2-1_amd64.deb ...
- Unpacking libmpfr-dev:amd64 (4.2.2-1) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libmpfr-dev:amd64 (4.2.2-1) ...
- Processing triggers for libc-bin (2.41-12+deb13u2) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved apron.v0.9.15  (cached)
-> retrieved bigarray-compat.1.1.0  (cached)
-> retrieved camlidl.1.13-1  (cached)
-> retrieved conf-gmp-paths.1  (cached)
-> retrieved conf-mpfr-paths.1  (cached)
-> retrieved elina.1.0  (cached)
-> installed conf-findutils.1
-> installed conf-perl.2
-> retrieved ez-conf-lib.2  (cached)
-> retrieved mlgmpidl.1.3.0  (cached)
-> installed ez-conf-lib.2
-> retrieved ocamlbuild.0.16.1  (cached)
-> installed bigarray-compat.1.1.0
-> retrieved ocamlfind.1.9.8  (cached)
-> installed conf-gmp-paths.1
-> installed conf-mpfr-paths.1
-> installed camlidl.1.13-1
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed mlgmpidl.1.3.0
-> installed apron.v0.9.15
[ERROR] The compilation of elina.1.0 failed at "make -j71".

#=== ERROR while compiling elina.1.0 ==========================================#
# context              2.5.0 | linux/x86_64 | ocaml-base-compiler.5.4.1 | file:///home/opam/opam-repository
# path                 ~/.opam/5.4/.opam-switch/build/elina.1.0
# command              ~/.opam/opam-init/hooks/sandbox.sh build make -j71
# exit-code            2
# env-file             ~/.opam/log/elina-7-c0e773.env
# output-file          ~/.opam/log/elina-7-c0e773.out
### output ###
# (cd elina_auxiliary; make all)
# make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/elina.1.0/elina_auxiliary'
# cc -c -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native    -I../elina_linearize -o elina_scalar.o elina_scalar.c -lmpfr -lgmp -lm -L../elina_linearize
# cc -c -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native    -I../elina_linearize -o elina_interval.o elina_interval.c -lmpfr -lgmp -lm -L../elina_linearize
# cc -c -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native    -I../elina_linearize -o elina_coeff.o elina_coeff.c -lmpfr -lgmp -lm -L../elina_linearize	
# cc -c -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native    -I../elina_linearize -o elina_dimension.o elina_dimension.c -lmpfr -lgmp -lm -L../elina_linearize
# cc -c -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native    -I../elina_linearize -o elina_linexpr0.o elina_linexpr0.c -lmpfr -lgmp -lm -L../elina_linearize	
# cc -c -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native    -I../elina_linearize -o elina_lincons0.o elina_lincons0.c -lmpfr -lgmp -lm -L../elina_linearize
# cc -c -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native    -I../elina_linearize -o elina_manager.o elina_manager.c -lmpfr -lgmp -lm -L../elina_linearize	
# cc -c -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native    -I../elina_linearize -o elina_abstract0.o elina_abstract0.c -lmpfr -lgmp -lm -L../elina_linearize	
# cc -c -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native    -I../elina_linearize -o elina_texpr0.o elina_texpr0.c -lmpfr -lgmp -lm -L../elina_linearize	
# cc -c -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native    -I../elina_linearize -o elina_tcons0.o elina_tcons0.c -lmpfr -lgmp -lm -L../elina_linearize
# elina_lincons0.c: In function 'elina_lincons0_is_unsat':
# elina_lincons0.c:83:7: warning: this statement may fall through [-Wimplicit-fallthrough=]
#    83 |       switch(cons->constyp){
#       |       ^~~~~~
# elina_lincons0.c:94:5: note: here
#    94 |     case ELINA_COEFF_INTERVAL:
#       |     ^~~~
# elina_lincons0.c:96:7: warning: this statement may fall through [-Wimplicit-fallthrough=]
#    96 |       switch(cons->constyp){
#       |       ^~~~~~
# elina_lincons0.c:111:5: note: here
#   111 |     default:
#       |     ^~~~~~~
# elina_lincons0.c: In function 'elina_lincons0_is_sat':
# elina_lincons0.c:136:7: warning: this statement may fall through [-Wimplicit-fallthrough=]
#   136 |       switch(cons->constyp){
#       |       ^~~~~~
# elina_lincons0.c:147:5: note: here
#   147 |     case ELINA_COEFF_INTERVAL:
#       |     ^~~~
# elina_lincons0.c:150:7: warning: this statement may fall through [-Wimplicit-fallthrough=]
#   150 |       switch(cons->constyp){
#       |       ^~~~~~
# elina_lincons0.c:167:5: note: here
#   167 |     default:
#       |     ^~~~~~~
# elina_abstract0.c: In function 'elina_abstract0_check_dim_array':
# elina_abstract0.c:221:84: warning: 'sprintf' may write a terminating nul past the end of the destination [-Wformat-overflow=]
#   221 |       sprintf(str,"incompatible %luth dimension in the array for the abstract value",(unsigned long)i);
#       |                                                                                    ^
# elina_abstract0.c:221:7: note: 'sprintf' output between 63 and 81 bytes into a destination of size 80
#   221 |       sprintf(str,"incompatible %luth dimension in the array for the abstract value",(unsigned long)i);
#       |       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# cc -shared  -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native    -I../elina_linearize -o libelinaux.so elina_scalar.o elina_interval.o elina_coeff.o elina_dimension.o elina_linexpr0.o elina_lincons0.o elina_manager.o elina_abstract0.o elina_texpr0.o elina_tcons0.o -lmpfr -lgmp -lm -L../elina_linearize
# make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/elina.1.0/elina_auxiliary'
# (cd elina_linearize; make all)
# make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/elina.1.0/elina_linearize'
# cc -c -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native    -I../elina_auxiliary -o elina_generic.o elina_generic.c  -lmpfr  -lgmp -lm  -L../elina_auxiliary -lelinaux	
# cc -c -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native    -I../elina_auxiliary -o elina_scalar_arith.o elina_scalar_arith.c  -lmpfr  -lgmp -lm  -L../elina_auxiliary -lelinaux
# cc -c -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native    -I../elina_auxiliary -o elina_interval_arith.o elina_interval_arith.c  -lmpfr  -lgmp -lm  -L../elina_auxiliary -lelinaux
# cc -c -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native    -I../elina_auxiliary -o elina_coeff_arith.o elina_coeff_arith.c  -lmpfr  -lgmp -lm  -L../elina_auxiliary -lelinaux
# cc -c -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native    -I../elina_auxiliary -o elina_linexpr0_arith.o elina_linexpr0_arith.c  -lmpfr  -lgmp -lm  -L../elina_auxiliary -lelinaux
# cc -c -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native    -I../elina_auxiliary -o elina_linearize.o elina_linearize.c  -lmpfr  -lgmp -lm  -L../elina_auxiliary -lelinaux
# cc -c -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native    -I../elina_auxiliary -o elina_linearize_texpr.o elina_linearize_texpr.c  -lmpfr  -lgmp -lm  -L../elina_auxiliary -lelinaux
# cc -shared  -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native    -I../elina_auxiliary -o libelinalinearize.so elina_generic.o elina_scalar_arith.o elina_interval_arith.o  elina_coeff_arith.o elina_linexpr0_arith.o elina_linearize.o elina_linearize_texpr.o  -lmpfr  -lgmp -lm  -L../elina_auxiliary -lelinaux
# make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/elina.1.0/elina_linearize'
# (cd partitions_api; make all)
# make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/elina.1.0/partitions_api'
# cc -c -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native  -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native  -o comp_list.o comp_list.c 
# cc -c -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native  -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native  -o array_comp_list.o array_comp_list.c 
# cc -c -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native  -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native  -o intersection.o intersection.c 
# cc -c -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native  -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native  -o union.o union.c 
# cc -c -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native  -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native  -o extract.o extract.c 
# cc -shared  -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native  -o libpartitions.so comp_list.o array_comp_list.o intersection.o union.o extract.o  
# make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/elina.1.0/partitions_api'
# (cd elina_oct; make all)
# make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/elina.1.0/elina_oct'
# cc -c -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native  -I../elina_auxiliary -I../elina_linearize -I../partitions_api   -o opt_oct_closure_comp_sparse.o opt_oct_closure_comp_sparse.c -L../partitions_api -lpartitions -L../elina_auxiliary -lelinaux -L../elina_linearize -lelinalinearize  -lmpfr  -lgmp -lm
# cc -c -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native  -I../elina_auxiliary -I../elina_linearize -I../partitions_api   -o opt_oct_closure_dense_scalar.o opt_oct_closure_dense_scalar.c -L../partitions_api -lpartitions -L../elina_auxiliary -lelinaux -L../elina_linearize -lelinalinearize  -lmpfr  -lgmp -lm
# cc -c -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native  -I../elina_auxiliary -I../elina_linearize -I../partitions_api   -o opt_oct_nary.o opt_oct_nary.c -L../partitions_api -lpartitions -L../elina_auxiliary -lelinaux -L../elina_linearize -lelinalinearize  -lmpfr  -lgmp -lm 
# cc -c -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native  -I../elina_auxiliary -I../elina_linearize -I../partitions_api   -o opt_oct_resize.o opt_oct_resize.c -L../partitions_api -lpartitions -L../elina_auxiliary -lelinaux -L../elina_linearize -lelinalinearize  -lmpfr  -lgmp -lm 
# cc -c -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native  -I../elina_auxiliary -I../elina_linearize -I../partitions_api   -o opt_oct_predicate.o opt_oct_predicate.c -L../partitions_api -lpartitions -L../elina_auxiliary -lelinaux -L../elina_linearize -lelinalinearize  -lmpfr  -lgmp -lm 
# cc -c -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native  -I../elina_auxiliary -I../elina_linearize -I../partitions_api   -o opt_oct_representation.o opt_oct_representation.c -L../partitions_api -lpartitions -L../elina_auxiliary -lelinaux -L../elina_linearize -lelinalinearize  -lmpfr  -lgmp -lm 
# cc -c -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native  -I../elina_auxiliary -I../elina_linearize -I../partitions_api   -o opt_oct_transfer.o opt_oct_transfer.c -L../partitions_api -lpartitions -L../elina_auxiliary -lelinaux -L../elina_linearize -lelinalinearize  -lmpfr  -lgmp -lm 
# cc -c -Wcast-qual -Wswitch -Wall -Wextra -Wundef -Wcast-align -Wno-unused -U__STRICT_ANSI__ -fPIC -O3 -DNDEBUG -Werror-implicit-function-declaration -Wbad-function-cast -Wstrict-prototypes -std=c99 -g  -DNUM_LONGLONGRAT -DNUM_DOUBLE -DTHRESHOLD=0 -DTIMING -D_GNU_SOURCE -pthread -fno-tree-vectorize -m64 -march=native  -I../elina_auxiliary -I../elina_linearize -I../partitions_api   -o opt_oct_hmat.o opt_oct_hmat.c -L../partitions_api -lpartitions -L../elina_auxiliary -lelinaux -L../elina_linearize -lelinalinearize  -lmpfr  -lgmp -lm 
# opt_oct_closure_comp_sparse.c: In function 'strengthening_comp_list':
# opt_oct_closure_comp_sparse.c:55:39: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]
#    55 |                 for(unsigned i = 0; i < 2*comp_size; i++){
#       |                                       ^
# opt_oct_closure_comp_sparse.c: In function 'strengthning_int_comp_sparse':
# opt_oct_closure_comp_sparse.c:147:31: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]
#   147 |         for(unsigned i = 0; i < n; i++){
#       |                               ^
# opt_oct_transfer.c: In function 'opt_oct_assign_linexpr':
# opt_oct_transfer.c:34:7: warning: comparison of integer expressions of different signedness: 'elina_dim_t' {aka 'unsigned int'} and 'int' [-Wsign-compare]
#    34 |   if(d>=o->dim){
#       |       ^~
# opt_oct_transfer.c:47:32: warning: comparison of integer expressions of different signedness: 'int' and 'elina_dim_t' {aka 'unsigned int'} [-Wsign-compare]
#    47 |   if ((u.type!=OPT_UNARY || u.i!=d) && pr->funopt->algorithm>=0)
#       |                                ^~
# opt_oct_closure_comp_sparse.c: In function 'strengthning_comp_sparse':
# opt_oct_closure_comp_sparse.c:291:39: warning: comparison of integer expressions of different signedness: 'unsigned int' and 'int' [-Wsign-compare]
#   291 |                 for(unsigned i = 0; i < 2*comp_size; i++){
#       |                                       ^
# opt_oct_transfer.c: In function 'opt_oct_assign_linexpr_array':
# opt_oct_transfer.c:108:13: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
#   108 |   for (i=0;i<o->dim;i++) {
#       |             ^
# opt_oct_transfer.c:112:16: warning: comparison of integer expressions of different signedness: 'elina_dim_t' {aka 'unsigned int'} and 'int' [-Wsign-compare]
#   112 |     if(tdim[i] >= o->dim){
#       |                ^~
# opt_oct_transfer.c:167:13: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
#   167 |   for (i=0;i<o->dim;i++) {
#       |             ^
# opt_oct_hmat.c: In function 'forget_array_half':
# opt_oct_resize.c: In function 'opt_oct_add_dimensions':
# opt_oct_resize.c:89:26: warning: comparison of integer expressions of different signedness: 'elina_dim_t' {aka 'unsigned int'} and 'int' [-Wsign-compare]
#    89 |     if(dimchange->dim[i] > o->dim) return NULL;
#       |                          ^
# opt_oct_hmat.c:1051:42: warning: comparison of integer expressions of different signedness: 'int' and 'elina_dim_t' {aka 'unsigned int'} [-Wsign-compare]
#  1051 |                         for(int j = 0; j < (d/v_length)*v_length;j++){
#       |                                          ^
# opt_oct_transfer.c: In function 'opt_oct_meet_tcons_array':
# opt_oct_resize.c: In function 'opt_oct_remove_dimensions':
# opt_oct_hmat.c:1057:54: warning: comparison of integer expressions of different signedness: 'int' and 'elina_dim_t' {aka 'unsigned int'} [-Wsign-compare]
#  1057 |                 for(int j = (d/v_length)*v_length; j < d; j++){
#       |                                                      ^
# opt_oct_nary.c: In function 'opt_oct_meet_array':
# opt_oct_resize.c:151:38: warning: comparison of integer expressions of different signedness: 'elina_dim_t' {aka 'unsigned int'} and 'int' [-Wsign-compare]
#   151 |                 if(dimchange->dim[i] >= o->dim) return NULL;
#       |                                      ^~
# opt_oct_transfer.c:260:51: error: passing argument 7 of 'elina_generic_meet_intlinearize_tcons_array' from incompatible pointer type [-Wincompatible-pointer-types]
#   260 |                                                   &opt_oct_meet_lincons_array);
#       |                                                   ^~~~~~~~~~~~~~~~~~~~~~~~~~~
#       |                                                   |
#       |                                                   opt_oct_t * (*)(elina_manager_t *, bool,  opt_oct_t *, elina_lincons0_array_t *) {aka opt_oct_t * (*)(elina_manager_t *, char,  opt_oct_t *, elina_lincons0_array_t *)}
# opt_oct_nary.c:227:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
#   227 |   for (k=0;k<size;k++)
#       |   ^~~
# opt_oct_nary.c:230:5: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
#   230 |     r->m = opt_hmat_copy(tab[0]->closed ? tab[0]->closed : tab[0]->m,r->dim);
#       |     ^
# In file included from opt_oct.h:38,
#                  from opt_oct_internal.h:87,
#                  from opt_oct_hmat.h:31,
#                  from opt_oct_transfer.c:22:
# ../elina_linearize/elina_generic.h:112:50: note: expected 'void * (*)(elina_manager_t *, bool,  void *, elina_lincons0_array_t *)' {aka 'void * (*)(elina_manager_t *, char,  void *, elina_lincons0_array_t *)'} but argument is of type 'opt_oct_t * (*)(elina_manager_t *, bool,  opt_oct_t *, elina_lincons0_array_t *)' {aka 'opt_oct_t * (*)(elina_manager_t *, char,  opt_oct_t *, elina_lincons0_array_t *)'}
#   112 |                                          void* (*meet_lincons_array)(elina_manager_t*,
#       |                                          ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#   113 |                                                                      bool, void*,
#       |                                                                      ~~~~~~~~~~~~
#   114 |                                                                      elina_lincons0_array_t*));
#       |                                                                      ~~~~~~~~~~~~~~~~~~~~~~~~
# opt_oct_resize.c: In function 'opt_oct_permute_dimensions':
# opt_oct_resize.c:203:23: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
#   203 |   if(permutation->size!=o->dim)return NULL;
#       |                       ^~
# opt_oct_resize.c:210:33: warning: comparison of integer expressions of different signedness: 'elina_dim_t' {aka 'unsigned int'} and 'int' [-Wsign-compare]
#   210 |           if(permutation->dim[i]>=o->dim)return NULL;
#       |                                 ^~
# opt_oct_resize.c: In function 'opt_oct_expand':
# opt_oct_resize.c:250:26: warning: comparison of integer expressions of different signedness: 'elina_dim_t' {aka 'unsigned int'} and 'int' [-Wsign-compare]
#   250 |   elina_dim_t pos = (dim < o->intdim) ? o->intdim : o->dim;
#       |                          ^
# opt_oct_closure_dense_scalar.c: In function 'floyd_warshall_dense_scalar':
# opt_oct_closure_dense_scalar.c:257:1: warning: control reaches end of non-void function [-Wreturn-type]
#   257 | }
#       | ^
# opt_oct_hmat.c: In function 'opt_hmat_addrem_dimensions':
# opt_oct_transfer.c: In function 'opt_hmat_subst':
# opt_oct_hmat.c:1240:48: warning: comparison of integer expressions of different signedness: 'int' and 'elina_dim_t' {aka 'unsigned int'} [-Wsign-compare]
#  1240 |                         while((l < nb_pos) &&(i==pos[l])){
#       |                                                ^~
# opt_oct_transfer.c:319:36: warning: comparison of integer expressions of different signedness: 'int' and 'size_t' {aka 'long unsigned int'} [-Wsign-compare]
#   319 |   else if (u.type==OPT_UNARY && u.i!=d) {
#       |                                    ^~
# opt_oct_hmat.c:1271:46: warning: comparison of integer expressions of different signedness: 'int' and 'elina_dim_t' {aka 'unsigned int'} [-Wsign-compare]
#  1271 |                         if((l < nb_pos) && (i==pos[l])){
#       |                                              ^~
# opt_oct_nary.c: In function 'opt_oct_add_epsilon':
# opt_oct_hmat.c:1374:59: warning: operand of '?:' changes signedness from 'int' to 'elina_dim_t' {aka 'unsigned int'} due to unsignedness of other operand [-Wsign-compare]
#  1374 |               int last_org_j = ((j<nb_pos-1) ? pos[j+1] : dim)*2;
#       |                                                           ^~~
# opt_oct_nary.c:486:23: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
#   486 |             for (i=0;i<size;i++) {
#       |                       ^
# opt_oct_resize.c:398:10: warning: comparison of integer expressions of different signedness: 'elina_dim_t' {aka 'unsigned int'} and 'int' [-Wsign-compare]
#   398 |   if (dim<o->intdim) r->intdim += n;
#       |          ^
# opt_oct_transfer.c: In function 'opt_oct_substitute_linexpr':
# opt_oct_transfer.c:395:7: warning: comparison of integer expressions of different signedness: 'elina_dim_t' {aka 'unsigned int'} and 'int' [-Wsign-compare]
#   395 |   if(d>=o->dim){
#       |       ^~
# opt_oct_nary.c:510:27: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
#   510 |                 for (i=0;i<(size/v_length)*v_length;i++){
#       |                           ^
# opt_oct_resize.c: In function 'opt_oct_fold':
# opt_oct_nary.c:514:52: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
#   514 |                 for(i = (size/v_length)*v_length;i < size; i++){
#       |                                                    ^
# opt_oct_transfer.c:410:32: warning: comparison of integer expressions of different signedness: 'int' and 'elina_dim_t' {aka 'unsigned int'} [-Wsign-compare]
#   410 |   if ((u.type!=OPT_UNARY || u.i!=d) && pr->funopt->algorithm>=0)
#       |                                ^~
# opt_oct_resize.c:431:21: warning: comparison of integer expressions of different signedness: 'elina_dim_t' {aka 'unsigned int'} and 'int' [-Wsign-compare]
#   431 |     if(tdim[size-1] >= o->dim){
#       |                     ^~
# opt_oct_resize.c:479:31: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
#   479 |             for (j=tdim[0]+1;j<o->dim;j++) {
#       |                               ^
# opt_oct_transfer.c: In function 'opt_oct_substitute_linexpr_array':
# opt_oct_nary.c: In function 'opt_oct_add_epsilon_bin':
# opt_oct_transfer.c:480:13: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
#   480 |   for (i=0;i<o->dim;i++) d[i] = 0;
#       |             ^
# opt_oct_nary.c:639:23: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
#   639 |             for (i=0;i<size;i++) {
#       |                       ^
# opt_oct_transfer.c:482:15: warning: comparison of integer expressions of different signedness: 'elina_dim_t' {aka 'unsigned int'} and 'int' [-Wsign-compare]
#   482 |     if(tdim[i]>=o->dim){
#       |               ^~
# opt_oct_resize.c:559:36: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
#   559 |              for (j=2*(tdim[0]+1);j<2*o->dim;j++) {
#       |                                    ^
# opt_oct_nary.c:655:23: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
#   655 |             for (i=0;i<size;i++){
#       |                       ^
# opt_oct_resize.c:637:14: warning: comparison of integer expressions of different signedness: 'elina_dim_t' {aka 'unsigned int'} and 'int' [-Wsign-compare]
#   637 |   if (tdim[0]<r->intdim) r->intdim -= size-1;
#       |              ^
# opt_oct_hmat.c: In function 'opt_oct_uexpr_of_linexpr':
# opt_oct_hmat.c:1915:16: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
#  1915 |     if(e->size > dim)return u;
#       |                ^
# opt_oct_hmat.c:1916:15: warning: comparison of integer expressions of different signedness: 'int' and 'size_t' {aka 'long unsigned int'} [-Wsign-compare]
#  1916 |     for (i=0;i<e->size;i++) {
#       |               ^
# opt_oct_closure_comp_sparse.c: In function 'floyd_warshall_comp_dense':
# opt_oct_closure_comp_sparse.c:581:1: warning: control reaches end of non-void function [-Wreturn-type]
#   581 | }
#       | ^
# opt_oct_hmat.c:1931:15: warning: comparison of integer expressions of different signedness: 'int' and 'size_t' {aka 'long unsigned int'} [-Wsign-compare]
#  1931 |     for (i=0;i<e->size;i++) {
#       |               ^
# opt_oct_hmat.c:1934:11: warning: comparison of integer expressions of different signedness: 'elina_dim_t' {aka 'unsigned int'} and 'int' [-Wsign-compare]
#  1934 |       if(d>=dim)return u;
#       |           ^~
# opt_oct_closure_comp_sparse.c: In function 'strong_closure_comp_sparse':
# opt_oct_hmat.c:1898:10: warning: comparison of integer expressions of different signedness: 'elina_dim_t' {aka 'unsigned int'} and 'int' [-Wsign-compare]
#  1898 |   if (idx>=intdim) u.is_int = 0;                                        \
#       |          ^~
# opt_oct_hmat.c:1936:7: note: in expansion of macro 'CLASS_VAR'
#  1936 |       CLASS_VAR(d);
#       |       ^~~~~~~~~
# opt_oct_closure_comp_sparse.c:967:1: warning: control reaches end of non-void function [-Wreturn-type]
#   967 | }
#       | ^
# opt_oct_hmat.c: In function 'opt_hmat_add_lincons':
# opt_oct_hmat.c:2025:22: error: assignment to 'bool (*)(opt_oct_mat_t *, ...)' {aka 'char (*)(opt_oct_mat_t *, ...)'} from incompatible pointer type 'bool (*)(opt_oct_mat_t *, int,  int,  bool)' {aka 'char (*)(opt_oct_mat_t *, int,  int,  char)'} [-Wincompatible-pointer-types]
#  2025 |         incr_closure = &incremental_closure_comp_sparse;
#       |                      ^
# opt_oct_hmat.c:2040:30: error: assignment to 'bool (*)(opt_oct_mat_t *, ...)' {aka 'char (*)(opt_oct_mat_t *, ...)'} from incompatible pointer type 'bool (*)(opt_oct_mat_t *, int,  int,  bool)' {aka 'char (*)(opt_oct_mat_t *, int,  int,  char)'} [-Wincompatible-pointer-types]
#  2040 |                 incr_closure = &incremental_closure_opt_dense_scalar;
#       |                              ^
# opt_oct_hmat.c:2044:13: warning: comparison of integer expressions of different signedness: 'int' and 'size_t' {aka 'long unsigned int'} [-Wsign-compare]
#  2044 |   for (i=0;i<ar->size;i++) {
#       |             ^
# opt_oct_representation.c: In function 'opt_oct_hash':
# opt_oct_representation.c:266:15: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
#   266 |     for (i=0;i<2*o->dim;i++)
#       |               ^
# make[1]: *** [Makefile:103: opt_oct_transfer.o] Error 1
# make[1]: *** Waiting for unfinished jobs....
# opt_oct_predicate.c: In function 'opt_oct_to_box':
# opt_oct_predicate.c:157:15: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
#   157 |     for (i=0;i<o->dim;i++)
#       |               ^
# opt_oct_predicate.c:168:24: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
#   168 |              for (i=0;i<o->dim;i++){
#       |                        ^
# opt_oct_predicate.c:175:31: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
#   175 |                     for (i=0;i<comp_size;i++){
#       |                               ^
# opt_oct_predicate.c:185:20: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
#   185 |          for (i=0;i<o->dim;i++){
#       |                    ^
# opt_oct_predicate.c: In function 'opt_oct_bound_dimension':
# opt_oct_predicate.c:214:9: warning: comparison of integer expressions of different signedness: 'elina_dim_t' {aka 'unsigned int'} and 'int' [-Wsign-compare]
#   214 |   if(dim>=o->dim){
#       |         ^~
# opt_oct_predicate.c: In function 'opt_oct_sat_interval':
# opt_oct_predicate.c:344:10: warning: comparison of integer expressions of different signedness: 'elina_dim_t' {aka 'unsigned int'} and 'int' [-Wsign-compare]
#   344 |   if(dim >= o->dim){
#       |          ^~
# opt_oct_predicate.c: In function 'opt_oct_is_dimension_unconstrained':
# opt_oct_predicate.c:396:9: warning: comparison of integer expressions of different signedness: 'elina_dim_t' {aka 'unsigned int'} and 'int' [-Wsign-compare]
#   396 |   if(dim>=o->dim){
#       |         ^~
# opt_oct_predicate.c:458:19: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
#   458 |         for (i=0;i<2*o->dim;i++) {
#       |                   ^
# opt_oct_hmat.c: In function 'opt_hmat_assign':
# opt_oct_hmat.c:2931:22: error: assignment to 'bool (*)(opt_oct_mat_t *, ...)' {aka 'char (*)(opt_oct_mat_t *, ...)'} from incompatible pointer type 'bool (*)(opt_oct_mat_t *, int,  int,  bool)' {aka 'char (*)(opt_oct_mat_t *, int,  int,  char)'} [-Wincompatible-pointer-types]
#  2931 |         incr_closure = &incremental_closure_comp_sparse;
#       |                      ^
# opt_oct_hmat.c:2945:30: error: assignment to 'bool (*)(opt_oct_mat_t *, ...)' {aka 'char (*)(opt_oct_mat_t *, ...)'} from incompatible pointer type 'bool (*)(opt_oct_mat_t *, int,  int,  bool)' {aka 'char (*)(opt_oct_mat_t *, int,  int,  char)'} [-Wincompatible-pointer-types]
#  2945 |                 incr_closure = &incremental_closure_opt_dense_scalar;
#       |                              ^
# opt_oct_hmat.c:3047:36: warning: comparison of integer expressions of different signedness: 'int' and 'size_t' {aka 'long unsigned int'} [-Wsign-compare]
#  3047 |   else if (u.type==OPT_UNARY && u.i!=d) {
#       |                                    ^~
# make[1]: *** [Makefile:88: opt_oct_hmat.o] Error 1
# make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/elina.1.0/elina_oct'
# make: *** [Makefile:47: c] Error 2



<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build elina 1.0
+- 
+- The following changes have been performed
| - install apron           v0.9.15
| - install bigarray-compat 1.1.0
| - install camlidl         1.13-1
| - install conf-findutils  1
| - install conf-gmp-paths  1
| - install conf-mpfr-paths 1
| - install conf-perl       2
| - install ez-conf-lib     2
| - install mlgmpidl        1.3.0
| - install ocamlbuild      0.16.1
| - install ocamlfind       1.9.8
+- 

<><> conf-mpfr-paths.1 installed successfully <><><><><><><><><><><><><><><><><>
=> header file found in /usr/include
=> library file found in /usr/lib/x86_64-linux-gnu

<><> conf-gmp-paths.1 installed successfully ><><><><><><><><><><><><><><><><><>
=> header file found in /usr/include/x86_64-linux-gnu
=> library file found in /usr/lib/x86_64-linux-gnu
# To update the current shell environment, run: eval $(opam env)

The former state can be restored with:
    /usr/bin/opam switch import "/home/opam/.opam/5.4/.opam-switch/backup/state-20260413152405.export"
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
[WARNING] OPAMCONFIRMLEVEL was ignored because CLI 2.0 was requested and it was introduced in 2.1.
"/usr/bin/env" "bash" "-c" "opam reinstall elina.1.0;
        res=$?;
        test "$res" != 31 && exit "$res";
        export OPAMCLI=2.0;
        build_dir=$(opam var prefix)/.opam-switch/build;
        failed=$(ls "$build_dir");
        partial_fails="";
        for pkg in $failed; do
          if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then
            echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
          fi;
          test "$pkg" != 'elina.1.0' && partial_fails="$partial_fails $pkg";
        done;
        test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
        exit 1" failed with exit status 1
2026-04-13 15:25.30: Job failed: Failed: Build failed
2026-04-13 15:25.30: Log analysis:
2026-04-13 15:25.30: >>> 
[ERROR] The compilation of elina.1.0 failed at "make -j71".
 (score = 20)
2026-04-13 15:25.30: >>> 
# opt_oct_transfer.c:260:51: error: passing argument 7 of 'elina_generic_meet_intlinearize_tcons_array' from incompatible pointer type [-Wincompatible-pointer-types]
 (score = 30)
2026-04-13 15:25.30: >>> 
# opt_oct_hmat.c:2025:22: error: assignment to 'bool (*)(opt_oct_mat_t *, ...)' {aka 'char (*)(opt_oct_mat_t *, ...)'} from incompatible pointer type 'bool (*)(opt_oct_mat_t *, int,  int,  bool)' {aka 'char (*)(opt_oct_mat_t *, int,  int,  char)'} [-Wincompatible-pointer-types]
 (score = 30)
2026-04-13 15:25.30: >>> 
# opt_oct_hmat.c:2040:30: error: assignment to 'bool (*)(opt_oct_mat_t *, ...)' {aka 'char (*)(opt_oct_mat_t *, ...)'} from incompatible pointer type 'bool (*)(opt_oct_mat_t *, int,  int,  bool)' {aka 'char (*)(opt_oct_mat_t *, int,  int,  char)'} [-Wincompatible-pointer-types]
 (score = 30)
2026-04-13 15:25.30: >>> 
# opt_oct_hmat.c:2931:22: error: assignment to 'bool (*)(opt_oct_mat_t *, ...)' {aka 'char (*)(opt_oct_mat_t *, ...)'} from incompatible pointer type 'bool (*)(opt_oct_mat_t *, int,  int,  bool)' {aka 'char (*)(opt_oct_mat_t *, int,  int,  char)'} [-Wincompatible-pointer-types]
 (score = 30)
2026-04-13 15:25.30: >>> 
# opt_oct_hmat.c:2945:30: error: assignment to 'bool (*)(opt_oct_mat_t *, ...)' {aka 'char (*)(opt_oct_mat_t *, ...)'} from incompatible pointer type 'bool (*)(opt_oct_mat_t *, int,  int,  bool)' {aka 'char (*)(opt_oct_mat_t *, int,  int,  char)'} [-Wincompatible-pointer-types]
 (score = 30)
2026-04-13 15:25.30: passing argument 7 of 'elina_generic_meet_intlinearize_tcons_array' from incompatible pointer type [-Wincompatible-pointer-types]