Build:
  1. 0
2026-02-27 04:03.54: New job: test decimal.1.0.2 with ocaml-compiler.5.4.0~rc1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29451/head (09d7830dd4a7cd4cfc1725bd69ec5b222eae677d)
                              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/29451/head" && git reset --hard 09d7830d
git fetch origin master
git merge --no-edit 5abb4f44e937819c2e438ab71bc23607a7cad3da
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c
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 ocaml-compiler.5.4.0~rc1 5.4.0~rc1
RUN opam reinstall --update-invariant ocaml-compiler.5.4.0~rc1; \
    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" != 'ocaml-compiler.5.4.0~rc1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall decimal.1.0.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" != 'decimal.1.0.2' && 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 decimal.1.0.2) || true
RUN opam reinstall --with-test --verbose decimal.1.0.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" != 'decimal.1.0.2' && 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-02-27 04:03.54: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c-ocaml-compiler.5.4.0~rc1-decimal.1.0.2-09d7830dd4a7cd4cfc1725bd69ec5b222eae677d"
2026-02-27 04:03.54: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
 (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 ocaml-compiler.5.4.0~rc1 5.4.0~rc1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall --update-invariant ocaml-compiler.5.4.0~rc1;\
             \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\" != 'ocaml-compiler.5.4.0~rc1' && 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 decimal.1.0.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\" != 'decimal.1.0.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 (network host)
      (shell "(opam reinstall --with-test decimal.1.0.2) || true"))
 (run (shell  "opam reinstall --with-test --verbose decimal.1.0.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\" != 'decimal.1.0.2' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-02-27 04:03.54: Waiting for resource in pool OCluster
2026-03-02 01:10.08: Waiting for worker…
2026-03-02 01:13.53: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 5abb4f44e9 Merge pull request #29466 from mseri/release-doi2bib-0.9.1
Merge made by the 'ort' strategy.
 .../ocaml-base-compiler.3.07+1/opam                    |  1 +
 .../ocaml-base-compiler.3.07+2/opam                    |  1 +
 .../ocaml-base-compiler/ocaml-base-compiler.3.07/opam  |  1 +
 .../ocaml-base-compiler.3.08.0/opam                    |  1 +
 .../ocaml-base-compiler.3.08.1/opam                    |  1 +
 .../ocaml-base-compiler.3.08.2/opam                    |  1 +
 .../ocaml-base-compiler.3.08.3/opam                    |  1 +
 .../ocaml-base-compiler.3.08.4/opam                    |  1 +
 .../ocaml-base-compiler.3.09.0/opam                    |  1 +
 .../ocaml-base-compiler.3.09.1/opam                    |  1 +
 .../ocaml-base-compiler.3.09.2/opam                    |  1 +
 .../ocaml-base-compiler.3.09.3/opam                    |  1 +
 .../ocaml-base-compiler.3.10.0/opam                    |  1 +
 .../ocaml-base-compiler.3.10.1/opam                    |  1 +
 .../ocaml-base-compiler.3.10.2/opam                    |  1 +
 .../ocaml-base-compiler.3.11.0/opam                    |  1 +
 .../ocaml-base-compiler.3.11.1/opam                    |  1 +
 .../ocaml-base-compiler.3.11.2/opam                    |  1 +
 .../ocaml-base-compiler.3.12.0/opam                    |  1 +
 .../ocaml-base-compiler.3.12.1/opam                    |  1 +
 .../ocaml-base-compiler.4.00.0/opam                    |  1 +
 .../ocaml-base-compiler.4.00.1/opam                    |  1 +
 .../ocaml-base-compiler.4.01.0/opam                    |  1 +
 .../ocaml-base-compiler.4.02.0/opam                    |  1 +
 .../ocaml-base-compiler.4.02.1/opam                    |  1 +
 .../ocaml-base-compiler.4.02.2/opam                    |  1 +
 .../ocaml-base-compiler.4.02.3/opam                    |  1 +
 .../ocaml-base-compiler.4.03.0/opam                    |  1 +
 .../ocaml-base-compiler.4.04.0/opam                    |  1 +
 .../ocaml-base-compiler.4.04.1/opam                    |  1 +
 .../ocaml-base-compiler.4.04.2/opam                    |  1 +
 .../ocaml-base-compiler.4.05.0/opam                    |  1 +
 .../ocaml-base-compiler.4.06.0/opam                    |  1 +
 .../ocaml-base-compiler.4.06.1/opam                    |  1 +
 .../ocaml-base-compiler.4.07.0/opam                    |  1 +
 .../ocaml-base-compiler.4.07.1/opam                    |  1 +
 .../ocaml-base-compiler.4.08.0/opam                    |  1 +
 .../ocaml-base-compiler.4.08.1/opam                    |  1 +
 .../ocaml-base-compiler.4.09.0/opam                    |  1 +
 .../ocaml-base-compiler.4.09.1/opam                    |  1 +
 .../ocaml-base-compiler.4.10.0/opam                    |  1 +
 .../ocaml-base-compiler.4.10.1/opam                    |  1 +
 .../ocaml-base-compiler.4.10.2/opam                    |  1 +
 .../ocaml-base-compiler.4.11.0/opam                    |  1 +
 .../ocaml-base-compiler.4.11.1/opam                    |  1 +
 .../ocaml-base-compiler.4.11.2/opam                    |  1 +
 .../ocaml-base-compiler.4.12.0/opam                    |  1 +
 .../ocaml-base-compiler.4.12.1/opam                    |  1 +
 .../ocaml-base-compiler.4.13.0/opam                    |  1 +
 .../ocaml-base-compiler.4.13.1/opam                    |  1 +
 .../ocaml-base-compiler.4.14.0/opam                    |  1 +
 .../ocaml-base-compiler.4.14.1/opam                    |  1 +
 .../ocaml-base-compiler.4.14.2/opam                    |  1 +
 .../ocaml-base-compiler.4.14.2~rc1/opam                |  1 +
 .../ocaml-base-compiler.4.14.3/opam                    |  1 +
 .../ocaml-base-compiler/ocaml-base-compiler.5.0.0/opam |  5 ++++-
 .../ocaml-base-compiler/ocaml-base-compiler.5.1.0/opam |  5 ++++-
 .../ocaml-base-compiler/ocaml-base-compiler.5.1.1/opam |  5 ++++-
 .../ocaml-base-compiler/ocaml-base-compiler.5.2.0/opam |  5 ++++-
 .../ocaml-base-compiler/ocaml-base-compiler.5.2.1/opam |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.3.0/opam      |  1 +
 packages/ocaml-compiler/ocaml-compiler.5.3/opam        |  1 +
 packages/ocaml-compiler/ocaml-compiler.5.4.0/opam      |  1 +
 .../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam    |  1 +
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam     |  1 +
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam     |  1 +
 packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam  |  1 +
 packages/ocaml-compiler/ocaml-compiler.5.4.1/opam      |  1 +
 packages/ocaml-compiler/ocaml-compiler.5.4/opam        |  1 +
 .../ocaml-secondary-compiler.4.08.1-1/opam             |  1 +
 .../ocaml-secondary-compiler.4.08.1/opam               |  1 +
 .../ocaml-secondary-compiler.4.14.2/opam               |  1 +
 .../ocaml-variants.3.09.1+metaocaml/opam               |  1 +
 .../ocaml-variants.4.00.0+debug-runtime/opam           |  1 +
 packages/ocaml-variants/ocaml-variants.4.00.1+BER/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.00.1+PIC/opam |  1 +
 .../ocaml-variants.4.00.1+debug-runtime/opam           |  1 +
 .../ocaml-variants.4.00.1+open-types/opam              |  1 +
 .../ocaml-variants.4.00.1+raspberrypi/opam             |  1 +
 .../ocaml-variants.4.00.1+short-types/opam             |  1 +
 .../ocaml-variants/ocaml-variants.4.01.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.01.0+BER/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.01.0+PIC/opam |  1 +
 .../ocaml-variants.4.01.0+armv6-freebsd/opam           |  1 +
 packages/ocaml-variants/ocaml-variants.4.01.0+fp/opam  |  1 +
 packages/ocaml-variants/ocaml-variants.4.01.0+lsb/opam |  1 +
 .../ocaml-variants.4.01.0+musl+static/opam             |  1 +
 .../ocaml-variants/ocaml-variants.4.01.0+musl/opam     |  1 +
 .../ocaml-variants.4.01.0+open-types/opam              |  1 +
 .../ocaml-variants/ocaml-variants.4.01.0+profile/opam  |  1 +
 packages/ocaml-variants/ocaml-variants.4.02.0+PIC/opam |  1 +
 .../ocaml-variants.4.02.0+improved-errors/opam         |  1 +
 .../ocaml-variants/ocaml-variants.4.02.1+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.02.1+BER/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.02.1+PIC/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.02.1+fp/opam  |  1 +
 .../ocaml-variants.4.02.1+modular-implicits-ber/opam   |  1 +
 .../ocaml-variants.4.02.1+modular-implicits/opam       |  1 +
 .../ocaml-variants.4.02.1+musl+static/opam             |  1 +
 .../ocaml-variants/ocaml-variants.4.02.1+musl/opam     |  1 +
 .../ocaml-variants.4.02.2+improved-errors/opam         |  1 +
 .../ocaml-variants/ocaml-variants.4.02.3+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.02.3+PIC/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.02.3+buckle-1/opam |  1 +
 .../ocaml-variants.4.02.3+buckle-master/opam           |  1 +
 .../ocaml-variants.4.02.3+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.02.3+curried-constr/opam          |  1 +
 packages/ocaml-variants/ocaml-variants.4.02.3+fp/opam  |  1 +
 .../ocaml-variants.4.02.3+musl+static/opam             |  1 +
 .../ocaml-variants/ocaml-variants.4.02.3+musl/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.02.4+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.03.0+32bit/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.03.0+fPIC/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.03.0+flambda/opam  |  1 +
 .../ocaml-variants.4.03.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.03.0+fp/opam  |  1 +
 .../ocaml-variants.4.03.0+statistical-memprof/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.03.1+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.04.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.04.0+BER/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.04.0+afl/opam |  1 +
 .../ocaml-variants.4.04.0+bytecode-only/opam           |  1 +
 .../ocaml-variants/ocaml-variants.4.04.0+fPIC/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.04.0+flambda/opam  |  1 +
 .../ocaml-variants.4.04.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.04.0+fp/opam  |  1 +
 .../ocaml-variants.4.04.0+safe-string/opam             |  1 +
 .../ocaml-variants.4.04.0+spacetime/opam               |  1 +
 .../ocaml-variants.4.04.0+trunk+forced_lto/opam        |  1 +
 .../ocaml-variants/ocaml-variants.4.04.1+32bit/opam    |  1 +
 .../ocaml-variants.4.04.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.04.1+copatterns/opam              |  1 +
 .../ocaml-variants/ocaml-variants.4.04.1+fPIC/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.04.1+flambda/opam  |  1 +
 .../ocaml-variants.4.04.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.04.1+fp/opam  |  1 +
 .../ocaml-variants.4.04.1+safe-string/opam             |  1 +
 .../ocaml-variants.4.04.1+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.04.2+32bit/opam    |  1 +
 .../ocaml-variants.4.04.2+bytecode-only/opam           |  1 +
 .../ocaml-variants/ocaml-variants.4.04.2+fPIC/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.04.2+flambda/opam  |  1 +
 .../ocaml-variants.4.04.2+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.04.2+fp/opam  |  1 +
 .../ocaml-variants.4.04.2+safe-string/opam             |  1 +
 .../ocaml-variants.4.04.2+spacetime/opam               |  1 +
 .../ocaml-variants.4.04.2+statistical-memprof/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.04.3+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.05.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.05.0+afl/opam |  1 +
 .../ocaml-variants.4.05.0+bytecode-only/opam           |  1 +
 .../ocaml-variants/ocaml-variants.4.05.0+flambda/opam  |  1 +
 packages/ocaml-variants/ocaml-variants.4.05.0+lto/opam |  1 +
 .../ocaml-variants.4.05.0+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.05.0+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.05.0+safe-string/opam             |  1 +
 .../ocaml-variants.4.05.0+spacetime/opam               |  1 +
 .../ocaml-variants.4.05.0+statistical-memprof/opam     |  1 +
 .../ocaml-variants.4.05.1+trunk+afl/opam               |  1 +
 .../ocaml-variants.4.05.1+trunk+flambda/opam           |  1 +
 .../ocaml-variants.4.05.1+trunk+fp+flambda/opam        |  1 +
 .../ocaml-variants/ocaml-variants.4.05.1+trunk+fp/opam |  1 +
 .../ocaml-variants.4.05.1+trunk+safe-string/opam       |  1 +
 .../ocaml-variants/ocaml-variants.4.05.1+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.06.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.06.0+afl/opam |  1 +
 .../ocaml-variants.4.06.0+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.06.0+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.06.0+flambda/opam  |  1 +
 .../ocaml-variants.4.06.0+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.06.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.06.0+fp/opam  |  1 +
 .../ocaml-variants.4.06.0+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.06.0+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.06.0+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.06.0+spacetime/opam               |  1 +
 .../ocaml-variants.4.06.0+statistical-memprof/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.06.1+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.06.1+afl/opam |  1 +
 .../ocaml-variants.4.06.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.06.1+default-unsafe-string/opam   |  1 +
 .../ocaml-variants/ocaml-variants.4.06.1+flambda/opam  |  1 +
 .../ocaml-variants.4.06.1+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.06.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.06.1+fp/opam  |  1 +
 packages/ocaml-variants/ocaml-variants.4.06.1+lto/opam |  1 +
 .../ocaml-variants.4.06.1+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.06.1+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.06.1+no-flat-float-array/opam     |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.06.1+rescript/opam |  1 +
 .../ocaml-variants.4.06.1+statistical-memprof/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.06.1+termux/opam   |  1 +
 .../ocaml-variants.4.06.2+trunk+afl/opam               |  1 +
 .../ocaml-variants.4.06.2+trunk+flambda/opam           |  1 +
 .../ocaml-variants.4.06.2+trunk+force-safe-string/opam |  1 +
 .../ocaml-variants.4.06.2+trunk+fp+flambda/opam        |  1 +
 .../ocaml-variants/ocaml-variants.4.06.2+trunk+fp/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.06.2+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.07.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.07.0+afl/opam |  1 +
 .../ocaml-variants.4.07.0+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.07.0+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.07.0+flambda/opam  |  1 +
 .../ocaml-variants.4.07.0+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.07.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.07.0+fp/opam  |  1 +
 .../ocaml-variants.4.07.0+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.07.0+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.07.1+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.07.1+BER/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.07.1+afl/opam |  1 +
 .../ocaml-variants.4.07.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.07.1+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.07.1+flambda/opam  |  1 +
 .../ocaml-variants.4.07.1+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.07.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.07.1+fp/opam  |  1 +
 .../ocaml-variants.4.07.1+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.07.1+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.07.1+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.07.1+spacetime/opam               |  1 +
 .../ocaml-variants.4.07.1+statistical-memprof/opam     |  1 +
 .../ocaml-variants.4.07.2+trunk+afl/opam               |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants.4.07.2+trunk+flambda/opam           |  1 +
 .../ocaml-variants.4.07.2+trunk+fp+flambda/opam        |  1 +
 .../ocaml-variants/ocaml-variants.4.07.2+trunk+fp/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.07.2+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.08.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.08.0+afl/opam |  1 +
 .../ocaml-variants.4.08.0+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.08.0+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.08.0+flambda/opam  |  1 +
 .../ocaml-variants.4.08.0+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.08.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.08.0+fp/opam  |  1 +
 .../ocaml-variants.4.08.0+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.08.0+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.08.0+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.08.0+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.08.1+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.08.1+afl/opam |  1 +
 .../ocaml-variants.4.08.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.08.1+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.08.1+flambda/opam  |  1 +
 .../ocaml-variants.4.08.1+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.08.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.08.1+fp/opam  |  1 +
 .../ocaml-variants.4.08.1+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.08.1+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.08.1+spacetime/opam               |  1 +
 .../ocaml-variants.4.08.2+trunk+afl/opam               |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants.4.08.2+trunk+flambda/opam           |  1 +
 .../ocaml-variants.4.08.2+trunk+force-safe-string/opam |  1 +
 .../ocaml-variants.4.08.2+trunk+fp+flambda/opam        |  1 +
 .../ocaml-variants/ocaml-variants.4.08.2+trunk+fp/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.08.2+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.09.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.09.0+afl/opam |  1 +
 .../ocaml-variants.4.09.0+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.09.0+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.09.0+flambda/opam  |  1 +
 .../ocaml-variants.4.09.0+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.09.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.09.0+fp/opam  |  1 +
 .../ocaml-variants.4.09.0+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.09.0+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.09.0+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.09.0+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.09.1+32bit/opam    |  1 +
 .../ocaml-variants.4.09.1+afl+flambda/opam             |  1 +
 packages/ocaml-variants/ocaml-variants.4.09.1+afl/opam |  1 +
 .../ocaml-variants.4.09.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.09.1+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.09.1+flambda/opam  |  1 +
 .../ocaml-variants.4.09.1+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.09.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.09.1+fp/opam  |  1 +
 .../ocaml-variants.4.09.1+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.09.1+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.09.1+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.09.1+spacetime/opam               |  1 +
 .../ocaml-variants.4.09.2+trunk+afl/opam               |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants.4.09.2+trunk+flambda/opam           |  1 +
 .../ocaml-variants.4.09.2+trunk+fp+flambda/opam        |  1 +
 .../ocaml-variants/ocaml-variants.4.09.2+trunk+fp/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.09.2+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.10.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.10.0+afl/opam |  1 +
 .../ocaml-variants.4.10.0+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.10.0+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.10.0+flambda/opam  |  1 +
 .../ocaml-variants.4.10.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.10.0+fp/opam  |  1 +
 .../ocaml-variants.4.10.0+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.10.0+musl+static+flambda/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.10.0+nnpcheck/opam |  1 +
 .../ocaml-variants.4.10.0+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.10.0+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.10.1+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.10.1+afl/opam |  1 +
 .../ocaml-variants.4.10.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.10.1+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.10.1+flambda/opam  |  1 +
 .../ocaml-variants.4.10.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.10.1+fp/opam  |  1 +
 .../ocaml-variants.4.10.1+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.10.1+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.10.1+no-flat-float-array/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.10.1+rc1+afl/opam  |  1 +
 .../ocaml-variants.4.10.1+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.10.2+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.10.2+afl/opam |  1 +
 .../ocaml-variants.4.10.2+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.10.2+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.10.2+flambda/opam  |  1 +
 .../ocaml-variants.4.10.2+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.10.2+fp/opam  |  1 +
 .../ocaml-variants.4.10.2+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.10.2+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.10.2+no-flat-float-array/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.10.2+rescript/opam |  1 +
 .../ocaml-variants.4.10.2+spacetime/opam               |  1 +
 .../ocaml-variants.4.10.3+trunk+afl/opam               |  1 +
 .../ocaml-variants.4.10.3+trunk+flambda/opam           |  1 +
 .../ocaml-variants/ocaml-variants.4.10.3+trunk+fp/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.10.3+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.11.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.0+afl/opam |  1 +
 .../ocaml-variants.4.11.0+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.11.0+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.11.0+flambda/opam  |  1 +
 .../ocaml-variants.4.11.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.0+fp/opam  |  1 +
 .../ocaml-variants.4.11.0+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.11.0+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.11.0+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.11.0+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.11.1+32bit/opam    |  1 +
 .../ocaml-variants.4.11.1+BER+flambda/opam             |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.1+BER/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.1+afl/opam |  1 +
 .../ocaml-variants.4.11.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.11.1+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.11.1+flambda/opam  |  1 +
 .../ocaml-variants.4.11.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.1+fp/opam  |  1 +
 .../ocaml-variants.4.11.1+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.11.1+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.11.1+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.11.1+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.11.2+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.2+afl/opam |  1 +
 .../ocaml-variants.4.11.2+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.11.2+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.11.2+flambda/opam  |  1 +
 .../ocaml-variants.4.11.2+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.2+fp/opam  |  1 +
 .../ocaml-variants.4.11.2+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.11.2+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.11.2+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.11.2+spacetime/opam               |  1 +
 .../ocaml-variants.4.11.3+trunk+afl/opam               |  1 +
 .../ocaml-variants.4.11.3+trunk+flambda/opam           |  1 +
 .../ocaml-variants/ocaml-variants.4.11.3+trunk+fp/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.11.3+trunk/opam    |  1 +
 .../ocaml-variants.4.12.0+domains+effects/opam         |  1 +
 .../ocaml-variants/ocaml-variants.4.12.0+domains/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.12.0+options/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.12.1+options/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.12.2+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.13.0+options/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.13.1+options/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.13.2+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.14.0+options/opam  |  1 +
 packages/ocaml-variants/ocaml-variants.4.14.1+BER/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.14.1+options/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.14.2+options/opam  |  1 +
 .../ocaml-variants.4.14.2~rc1+options/opam             |  1 +
 .../ocaml-variants/ocaml-variants.4.14.3+options/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.14.4+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.5.0.0+options/opam   |  1 +
 packages/ocaml-variants/ocaml-variants.5.0.0+tsan/opam |  1 +
 .../ocaml-variants/ocaml-variants.5.0.1+trunk/opam     |  1 +
 .../ocaml-variants/ocaml-variants.5.1.0+options/opam   |  1 +
 packages/ocaml-variants/ocaml-variants.5.1.0+tsan/opam |  1 +
 .../ocaml-variants.5.1.1+effect-syntax/opam            |  1 +
 .../ocaml-variants.5.1.1+flambda2+trunk/opam           |  1 +
 .../ocaml-variants/ocaml-variants.5.1.1+flambda2/opam  |  1 +
 .../ocaml-variants/ocaml-variants.5.1.1+options/opam   |  1 +
 packages/ocaml-variants/ocaml-variants.5.1.1+tsan/opam |  1 +
 .../ocaml-variants/ocaml-variants.5.1.2+trunk/opam     |  1 +
 packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam |  1 +
 .../ocaml-variants/ocaml-variants.5.2.0+options/opam   |  1 +
 .../ocaml-variants.5.2.0+statmemprof/opam              |  1 +
 .../ocaml-variants/ocaml-variants.5.2.1+options/opam   |  1 +
 .../ocaml-variants.5.2.1~rc1+options/opam              |  1 +
 .../ocaml-variants/ocaml-variants.5.2.2+trunk/opam     |  1 +
 packages/ocaml-variants/ocaml-variants.5.3.0+BER/opam  |  1 +
 packages/ocamlbuild/ocamlbuild.0.14.0/opam             |  1 +
 packages/ocamlbuild/ocamlbuild.0.14.1/opam             |  1 +
 packages/ocamlbuild/ocamlbuild.0.14.2+win/opam         |  1 +
 packages/ocamlbuild/ocamlbuild.0.14.2/opam             |  1 +
 packages/ocamlbuild/ocamlbuild.0.14.3+win/opam         |  1 +
 packages/ocamlbuild/ocamlbuild.0.14.3/opam             |  1 +
 packages/ocamlbuild/ocamlbuild.0.15.0/opam             |  1 +
 packages/ocamlbuild/ocamlbuild.0.16.1/opam             |  1 +
 packages/ocamlfind/ocamlfind.1.8.0/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.8.1/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.9.1/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.9.2/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.9.3/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.9.5/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.9.6/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.9.8/opam                |  1 +
 packages/relocatable/relocatable.packages/opam         | 18 ++++++++++++++++++
 432 files changed, 464 insertions(+), 5 deletions(-)
 create mode 100644 packages/relocatable/relocatable.packages/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
2026-03-02 01:13.56 ---> using "3c18c9e472a4f76bc128dc0a5a1e21158ba3dbd0d6773ace6ec33f0cfe6fac9b" 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-03-02 01:13.56 ---> using "7a3442ad99cd957e3ce65df65cad40aee4354c6d524c7813b8b589bc410c187e" from cache

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

This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-02 01:13.56 ---> using "4214446d06a5b764dff5167574d07a5b4441731262795df63d7a3c5f64e1a189" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages    ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, 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.0
2026-03-02 01:13.56 ---> using "8bf276ecf196c09ac4fb294f887dce47d9744c212aabbbad5d313f0a4179272a" 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-03-02 01:13.56 ---> using "c04e3f046c8eaf07d3d8f4b30debe47a6f7742bcdbfbfeb4d464149613cd35cd" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-02 01:13.57 ---> using "f28d2d55603b70a3956974bde95e68526d52d43abb5c3f086de712d28b994566" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-02 01:13.57 ---> using "3775e9b8ca53e7a42e175e2f214e7d345a02bf22f9dd6d271ae720654f277192" 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 [113 kB]
- Fetched 203 kB in 0s (1904 kB/s)
- Reading package lists...
2026-03-02 01:13.57 ---> using "a6fcf1eb697bb2cbcd49a3ac591b228ed4dfb5d9211b39971561804e137638fa" from cache

/home/opam: (run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0~rc1 5.4.0~rc1"))
ocaml-compiler is now pinned to version 5.4.0~rc1
2026-03-02 01:13.57 ---> using "7f59afc8569d372cdff05a25219bb838bcd2ac1106223157c8c00d0d2de86f37" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall --update-invariant ocaml-compiler.5.4.0~rc1;\
                        \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\" != 'ocaml-compiler.5.4.0~rc1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ocaml-compiler.5.4.0~rc1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== remove 1 package
  - remove    ocaml-base-compiler 5.4.0 (pinned)              [conflicts with ocaml-compiler]
=== downgrade 1 package
  - downgrade ocaml-compiler      5.4.0 to 5.4.0~rc1 (pinned)
=== recompile 6 packages
  - recompile base-domains        base                        [uses ocaml]
  - recompile base-effects        base                        [uses ocaml]
  - recompile base-nnp            base                        [uses base-domains]
  - recompile ocaml               5.4.0                       [uses ocaml-base-compiler]
  - recompile ocaml-config        3                           [uses ocaml-base-compiler]
  - recompile opam-depext         1.2.3                       [uses ocaml]
=== install 1 package
  - install   ocaml-variants      5.4.0~rc1+options           [required by ocaml]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-compiler.5.4.0~rc1  (cached)
-> retrieved ocaml-config.3  (cached)
-> retrieved opam-depext.1.2.3  (cached)
-> removed   base-effects.base
-> removed   base-nnp.base
-> removed   base-domains.base
-> removed   opam-depext.1.2.3
-> removed   ocaml.5.4.0
-> removed   ocaml-config.3
-> removed   ocaml-base-compiler.5.4.0
-> removed   ocaml-compiler.5.4.0
-> installed ocaml-compiler.5.4.0~rc1
-> installed ocaml-variants.5.4.0~rc1+options
-> installed ocaml-config.3
-> installed ocaml.5.4.0
-> installed base-domains.base
-> installed base-effects.base
-> installed base-nnp.base
-> installed opam-depext.1.2.3
[NOTE] Switch invariant was updated to ["ocaml-variants" {= "5.4.0~rc1+options"}]
       Use `opam switch set-invariant' to change it.
Done.

<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# To update the current shell environment, run: eval $(opam env)
2026-03-02 01:13.57 ---> using "74f1d3c2ced61271e81f53a652eb1fc779b2788839e8821a36f8d5d64e64c908" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall decimal.1.0.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\" != 'decimal.1.0.2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
decimal.1.0.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 6 packages
  - install conf-gmp        5      [required by zarith]
  - install conf-pkg-config 4      [required by zarith]
  - install decimal         1.0.2
  - install dune            3.21.1 [required by decimal]
  - install ocamlfind       1.9.8  [required by zarith]
  - install zarith          1.14   [required by decimal]

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 ... 20654 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+deb13u1) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved conf-gmp.5  (cached)
-> retrieved decimal.1.0.2  (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved dune.3.21.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved zarith.1.14  (cached)
-> installed ocamlfind.1.9.8
-> installed zarith.1.14
-> installed dune.3.21.1
-> installed decimal.1.0.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 01:14.22 ---> saved as "b003cd3d6503ef1d9a5f06fc6e247ab2262e0e566d2e4809f0daed0d14c379ab"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test decimal.1.0.2) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile decimal            1.0.2
=== install 14 packages
  - install   alcotest           1.9.1  [required by decimal]
  - install   angstrom           0.16.1 [required by decimal]
  - install   astring            0.8.5  [required by alcotest]
  - install   bigstringaf        0.10.0 [required by angstrom]
  - install   cmdliner           2.1.0  [required by alcotest]
  - install   csexp              1.5.2  [required by dune-configurator]
  - install   dune-configurator  3.21.1 [required by bigstringaf]
  - install   fmt                0.11.0 [required by alcotest]
  - install   ocaml-syntax-shims 1.0.0  [required by alcotest, angstrom]
  - install   ocamlbuild         0.16.1 [required by fmt, astring, uutf]
  - 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 angstrom.0.16.1  (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved bigstringaf.0.10.0  (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0  (https://opam.ocaml.org/cache)
-> retrieved csexp.1.5.2  (https://opam.ocaml.org/cache)
-> retrieved decimal.1.0.2  (https://opam.ocaml.org/cache)
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.21.1  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (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)
-> installed cmdliner.2.1.0
-> 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 dune-configurator.3.21.1
-> installed re.1.14.0
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> removed   decimal.1.0.2
-> 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 decimal.1.0.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 01:14.43 ---> saved as "8847a533fc6a059ea985dc7bbf4dce18eac4572b156321b557a493b7b9115f8c"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [decimal.1.0.2: extract]
-> retrieved decimal.1.0.2  (cached)
Processing  2/4: [decimal: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "decimal" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/decimal.1.0.2)
- (cd _build/default/test && ./decimal_test.exe)
- Test file: data/abs.decTest
- Test file version: 2.59
- 
- precision=9
- round=half_up
- e_max=384
- e_min=-383
- absx001: abs 1 = 1
- absx002: abs -1 = 1
- absx003: abs 1.00 = 1.00
- absx004: abs -1.00 = 1.00
- absx005: abs 0 = 0
- absx006: abs 0.00 = 0.00
- absx007: abs 00.0 = 0.0
- absx008: abs 00.00 = 0.00
- absx009: abs 00 = 0
- absx010: abs -2 = 2
- absx011: abs 2 = 2
- absx012: abs -2.00 = 2.00
- absx013: abs 2.00 = 2.00
- absx014: abs -0 = 0
- absx015: abs -0.00 = 0.00
- absx016: abs -00.0 = 0.0
- absx017: abs -00.00 = 0.00
- absx018: abs -00 = 0
- absx020: abs -2000000 = 2000000
- absx021: abs 2000000 = 2000000
- precision=7
- absx022: abs -2000000 = 2000000
- absx023: abs 2000000 = 2000000
- precision=6
- absx024: abs -2000000 = 2.00000E+6 rounded
- absx025: abs 2000000 = 2.00000E+6 rounded
- precision=3
- absx026: abs -2000000 = 2.00E+6 rounded
- absx027: abs 2000000 = 2.00E+6 rounded
- absx030: abs +0.1 = 0.1
- absx031: abs -0.1 = 0.1
- absx032: abs +0.01 = 0.01
- absx033: abs -0.01 = 0.01
- absx034: abs +0.001 = 0.001
- absx035: abs -0.001 = 0.001
- absx036: abs +0.000001 = 0.000001
- absx037: abs -0.000001 = 0.000001
- absx038: abs +0.000000000001 = 1E-12
- absx039: abs -0.000000000001 = 1E-12
- precision=9
- absx040: abs 2.1 = 2.1
- absx041: abs -100 = 100
- absx042: abs 101.5 = 101.5
- absx043: abs -101.5 = 101.5
- precision=9
- absx060: abs -56267E-10 = 0.0000056267
- absx061: abs -56267E-5 = 0.56267
- absx062: abs -56267E-2 = 562.67
- absx063: abs -56267E-1 = 5626.7
- absx065: abs -56267E-0 = 56267
- e_max=999999999
- e_min=-999999999
- precision=3
- absx120: abs 9.999E+999999999 = Infinity inexact overflow rounded
- precision=3
- e_max=999
- e_min=-999
- absx210: abs 1.00E-999 = 1.00E-999
- absx211: abs 0.1E-999 = 1E-1000 subnormal
- absx212: abs 0.10E-999 = 1.0E-1000 subnormal
- absx213: abs 0.100E-999 = 1.0E-1000 subnormal rounded
- absx214: abs 0.01E-999 = 1E-1001 subnormal
- absx215: abs 0.999E-999 = 1.00E-999 inexact rounded subnormal underflow
- absx216: abs 0.099E-999 = 1.0E-1000 inexact rounded subnormal underflow
- absx217: abs 0.009E-999 = 1E-1001 inexact rounded subnormal underflow
- absx218: abs 0.001E-999 = 0E-1001 inexact rounded subnormal underflow clamped
- absx219: abs 0.0009E-999 = 0E-1001 inexact rounded subnormal underflow clamped
- absx220: abs 0.0001E-999 = 0E-1001 inexact rounded subnormal underflow clamped
- absx230: abs -1.00E-999 = 1.00E-999
- absx231: abs -0.1E-999 = 1E-1000 subnormal
- absx232: abs -0.10E-999 = 1.0E-1000 subnormal
- absx233: abs -0.100E-999 = 1.0E-1000 subnormal rounded
- absx234: abs -0.01E-999 = 1E-1001 subnormal
- absx235: abs -0.999E-999 = 1.00E-999 inexact rounded subnormal underflow
- absx236: abs -0.099E-999 = 1.0E-1000 inexact rounded subnormal underflow
- absx237: abs -0.009E-999 = 1E-1001 inexact rounded subnormal underflow
- absx238: abs -0.001E-999 = 0E-1001 inexact rounded subnormal underflow clamped
- absx239: abs -0.0009E-999 = 0E-1001 inexact rounded subnormal underflow clamped
- absx240: abs -0.0001E-999 = 0E-1001 inexact rounded subnormal underflow clamped
- e_max=999
- e_min=-999
- precision=9
- absx301: abs 12345678000 = 1.23456780E+10 rounded
- absx302: abs 1234567800 = 1.23456780E+9 rounded
- absx303: abs 1234567890 = 1.23456789E+9 rounded
- absx304: abs 1234567891 = 1.23456789E+9 inexact rounded
- absx305: abs 12345678901 = 1.23456789E+10 inexact rounded
- absx306: abs 1234567896 = 1.23456790E+9 inexact rounded
- precision=15
- absx321: abs 12345678000 = 12345678000
- absx322: abs 1234567800 = 1234567800
- absx323: abs 1234567890 = 1234567890
- absx324: abs 1234567891 = 1234567891
- absx325: abs 12345678901 = 12345678901
- absx326: abs 1234567896 = 1234567896
- precision=9
- absx520: abs Inf = Infinity
- absx521: abs -Inf = Infinity
- absx522: abs NaN = NaN
- absx523: abs sNaN = NaN invalid_operation
- absx524: abs NaN22 = NaN22
- absx525: abs sNaN33 = NaN33 invalid_operation
- absx526: abs -NaN22 = -NaN22
- absx527: abs -sNaN33 = -NaN33 invalid_operation
- absx900: abs # = NaN invalid_operationTest file: data/add.decTest
- Test file version: 2.59
- 
- precision=9
- round=half_up
- e_max=384
- e_min=-383
- addx001: 1 + 1 = 2
- addx002: 2 + 3 = 5
- addx003: 5.75 + 3.3 = 9.05
- addx004: 5 + -3 = 2
- addx005: -5 + -3 = -8
- addx006: -7 + 2.5 = -4.5
- addx007: 0.7 + 0.3 = 1.0
- addx008: 1.25 + 1.25 = 2.50
- addx009: 1.23456789 + 1.00000000 = 2.23456789
- addx010: 1.23456789 + 1.00000011 = 2.23456800
- addx011: 0.4444444444 + 0.5555555555 = 1.00000000 inexact rounded
- addx012: 0.4444444440 + 0.5555555555 = 1.00000000 inexact rounded
- addx013: 0.4444444444 + 0.5555555550 = 0.999999999 inexact rounded
- addx014: 0.44444444449 + 0 = 0.444444444 inexact rounded
- addx015: 0.444444444499 + 0 = 0.444444444 inexact rounded
- addx016: 0.4444444444999 + 0 = 0.444444444 inexact rounded
- addx017: 0.4444444445000 + 0 = 0.444444445 inexact rounded
- addx018: 0.4444444445001 + 0 = 0.444444445 inexact rounded
- addx019: 0.444444444501 + 0 = 0.444444445 inexact rounded
- addx020: 0.44444444451 + 0 = 0.444444445 inexact rounded
- addx021: 0 + 1 = 1
- addx022: 1 + 1 = 2
- addx023: 2 + 1 = 3
- addx024: 3 + 1 = 4
- addx025: 4 + 1 = 5
- addx026: 5 + 1 = 6
- addx027: 6 + 1 = 7
- addx028: 7 + 1 = 8
- addx029: 8 + 1 = 9
- addx030: 9 + 1 = 10
- addx031: 0.9998 + 0.0000 = 0.9998
- addx032: 0.9998 + 0.0001 = 0.9999
- addx033: 0.9998 + 0.0002 = 1.0000
- addx034: 0.9998 + 0.0003 = 1.0001
- addx035: 70 + 10000e+9 = 1.00000000E+13 inexact rounded
- addx036: 700 + 10000e+9 = 1.00000000E+13 inexact rounded
- addx037: 7000 + 10000e+9 = 1.00000000E+13 inexact rounded
- addx038: 70000 + 10000e+9 = 1.00000001E+13 inexact rounded
- addx039: 700000 + 10000e+9 = 1.00000007E+13 rounded
- addx040: 10000e+9 + 70 = 1.00000000E+13 inexact rounded
- addx041: 10000e+9 + 700 = 1.00000000E+13 inexact rounded
- addx042: 10000e+9 + 7000 = 1.00000000E+13 inexact rounded
- addx044: 10000e+9 + 70000 = 1.00000001E+13 inexact rounded
- addx045: 10000e+9 + 700000 = 1.00000007E+13 rounded
- precision=15
- addx046: 10000e+9 + 7 = 10000000000007
- addx047: 10000e+9 + 70 = 10000000000070
- addx048: 10000e+9 + 700 = 10000000000700
- addx049: 10000e+9 + 7000 = 10000000007000
- addx050: 10000e+9 + 70000 = 10000000070000
- addx051: 10000e+9 + 700000 = 10000000700000
- addx052: 10000e+9 + 7000000 = 10000007000000
- addx053: 12 + 7.00 = 19.00
- addx054: 1.3 + -1.07 = 0.23
- addx055: 1.3 + -1.30 = 0.00
- addx056: 1.3 + -2.07 = -0.77
- addx057: 1E+2 + 1E+4 = 1.01E+4
- precision=6
- addx060: 10000e+9 + 70000 = 1.00000E+13 inexact rounded
- addx061: 1 + 0.0001 = 1.0001
- addx062: 1 + 0.00001 = 1.00001
- addx063: 1 + 0.000001 = 1.00000 inexact rounded
- addx064: 1 + 0.0000001 = 1.00000 inexact rounded
- addx065: 1 + 0.00000001 = 1.00000 inexact rounded
- addx070: 1 + 0 = 1
- addx071: 1 + 0. = 1
- addx072: 1 + .0 = 1.0
- addx073: 1 + 0.0 = 1.0
- addx074: 1 + 0.00 = 1.00
- addx075: 0 + 1 = 1
- addx076: 0. + 1 = 1
- addx077: .0 + 1 = 1.0
- addx078: 0.0 + 1 = 1.0
- addx079: 0.00 + 1 = 1.00
- precision=9
- addx080: 999999998 + 1 = 999999999
- addx081: 999999999 + 1 = 1.00000000E+9 rounded
- addx082: 99999999 + 1 = 100000000
- addx083: 9999999 + 1 = 10000000
- addx084: 999999 + 1 = 1000000
- addx085: 99999 + 1 = 100000
- addx086: 9999 + 1 = 10000
- addx087: 999 + 1 = 1000
- addx088: 99 + 1 = 100
- addx089: 9 + 1 = 10
- addx090: -56267E-10 + 0 = -0.0000056267
- addx091: -56267E-6 + 0 = -0.056267
- addx092: -56267E-5 + 0 = -0.56267
- addx093: -56267E-4 + 0 = -5.6267
- addx094: -56267E-3 + 0 = -56.267
- addx095: -56267E-2 + 0 = -562.67
- addx096: -56267E-1 + 0 = -5626.7
- addx097: -56267E-0 + 0 = -56267
- addx098: -5E-10 + 0 = -5E-10
- addx099: -5E-7 + 0 = -5E-7
- addx100: -5E-6 + 0 = -0.000005
- addx101: -5E-5 + 0 = -0.00005
- addx102: -5E-4 + 0 = -0.0005
- addx103: -5E-1 + 0 = -0.5
- addx104: -5E0 + 0 = -5
- addx105: -5E1 + 0 = -50
- addx106: -5E5 + 0 = -500000
- addx107: -5E8 + 0 = -500000000
- addx108: -5E9 + 0 = -5.00000000E+9 rounded
- addx109: -5E10 + 0 = -5.00000000E+10 rounded
- addx110: -5E11 + 0 = -5.00000000E+11 rounded
- addx111: -5E100 + 0 = -5.00000000E+100 rounded
- addx113: 0 + -56267E-10 = -0.0000056267
- addx114: 0 + -56267E-6 = -0.056267
- addx116: 0 + -56267E-5 = -0.56267
- addx117: 0 + -56267E-4 = -5.6267
- addx119: 0 + -56267E-3 = -56.267
- addx120: 0 + -56267E-2 = -562.67
- addx121: 0 + -56267E-1 = -5626.7
- addx122: 0 + -56267E-0 = -56267
- addx123: 0 + -5E-10 = -5E-10
- addx124: 0 + -5E-7 = -5E-7
- addx125: 0 + -5E-6 = -0.000005
- addx126: 0 + -5E-5 = -0.00005
- addx127: 0 + -5E-4 = -0.0005
- addx128: 0 + -5E-1 = -0.5
- addx129: 0 + -5E0 = -5
- addx130: 0 + -5E1 = -50
- addx131: 0 + -5E5 = -500000
- addx132: 0 + -5E8 = -500000000
- addx133: 0 + -5E9 = -5.00000000E+9 rounded
- addx134: 0 + -5E10 = -5.00000000E+10 rounded
- addx135: 0 + -5E11 = -5.00000000E+11 rounded
- addx136: 0 + -5E100 = -5.00000000E+100 rounded
- addx137: 1 + 0E-12 = 1.00000000 rounded
- addx138: -1 + 0E-12 = -1.00000000 rounded
- addx139: 0E-12 + 1 = 1.00000000 rounded
- addx140: 0E-12 + -1 = -1.00000000 rounded
- addx141: 1E+4 + 0.0000 = 10000.0000
- addx142: 1E+4 + 0.00000 = 10000.0000 rounded
- addx143: 0.000 + 1E+5 = 100000.000
- addx144: 0.0000 + 1E+5 = 100000.000 rounded
- addx146: 00.0 + 0 = 0.0
- addx147: 0.00 + 0 = 0.00
- addx148: 0 + 0.00 = 0.00
- addx149: 0 + 00.0 = 0.0
- addx150: 00.0 + 0.00 = 0.00
- addx151: 0.00 + 00.0 = 0.00
- addx152: 3 + .3 = 3.3
- addx153: 3. + .3 = 3.3
- addx154: 3.0 + .3 = 3.3
- addx155: 3.00 + .3 = 3.30
- addx156: 3 + 3 = 6
- addx157: 3 + +3 = 6
- addx158: 3 + -3 = 0
- addx159: 0.3 + -0.3 = 0.0
- addx160: 0.03 + -0.03 = 0.00
- precision=15
- addx161: 1E+12 + -1 = 999999999999
- addx162: 1E+12 + 1.11 = 1000000000001.11
- addx163: 1.11 + 1E+12 = 1000000000001.11
- addx164: -1 + 1E+12 = 999999999999
- addx165: 7E+12 + -1 = 6999999999999
- addx166: 7E+12 + 1.11 = 7000000000001.11
- addx167: 1.11 + 7E+12 = 7000000000001.11
- addx168: -1 + 7E+12 = 6999999999999
- addx170: 0.444444444444444 + 0.555555555555563 = 1.00000000000001 inexact rounded
- addx171: 0.444444444444444 + 0.555555555555562 = 1.00000000000001 inexact rounded
- addx172: 0.444444444444444 + 0.555555555555561 = 1.00000000000001 inexact rounded
- addx173: 0.444444444444444 + 0.555555555555560 = 1.00000000000000 inexact rounded
- addx174: 0.444444444444444 + 0.555555555555559 = 1.00000000000000 inexact rounded
- addx175: 0.444444444444444 + 0.555555555555558 = 1.00000000000000 inexact rounded
- addx176: 0.444444444444444 + 0.555555555555557 = 1.00000000000000 inexact rounded
- addx177: 0.444444444444444 + 0.555555555555556 = 1.00000000000000 rounded
- addx178: 0.444444444444444 + 0.555555555555555 = 0.999999999999999
- addx179: 0.444444444444444 + 0.555555555555554 = 0.999999999999998
- addx180: 0.444444444444444 + 0.555555555555553 = 0.999999999999997
- addx181: 0.444444444444444 + 0.555555555555552 = 0.999999999999996
- addx182: 0.444444444444444 + 0.555555555555551 = 0.999999999999995
- addx183: 0.444444444444444 + 0.555555555555550 = 0.999999999999994
- precision=9
- round=half_up
- addx200: 123456789 + 0 = 123456789
- addx201: 123456789 + 0.000000001 = 123456789 inexact rounded
- addx202: 123456789 + 0.000001 = 123456789 inexact rounded
- addx203: 123456789 + 0.1 = 123456789 inexact rounded
- addx204: 123456789 + 0.4 = 123456789 inexact rounded
- addx205: 123456789 + 0.49 = 123456789 inexact rounded
- addx206: 123456789 + 0.499999 = 123456789 inexact rounded
- addx207: 123456789 + 0.499999999 = 123456789 inexact rounded
- addx208: 123456789 + 0.5 = 123456790 inexact rounded
- addx209: 123456789 + 0.500000001 = 123456790 inexact rounded
- addx210: 123456789 + 0.500001 = 123456790 inexact rounded
- addx211: 123456789 + 0.51 = 123456790 inexact rounded
- addx212: 123456789 + 0.6 = 123456790 inexact rounded
- addx213: 123456789 + 0.9 = 123456790 inexact rounded
- addx214: 123456789 + 0.99999 = 123456790 inexact rounded
- addx215: 123456789 + 0.999999999 = 123456790 inexact rounded
- addx216: 123456789 + 1 = 123456790
- addx217: 123456789 + 1.000000001 = 123456790 inexact rounded
- addx218: 123456789 + 1.00001 = 123456790 inexact rounded
- addx219: 123456789 + 1.1 = 123456790 inexact rounded
- round=half_even
- addx220: 123456789 + 0 = 123456789
- addx221: 123456789 + 0.000000001 = 123456789 inexact rounded
- addx222: 123456789 + 0.000001 = 123456789 inexact rounded
- addx223: 123456789 + 0.1 = 123456789 inexact rounded
- addx224: 123456789 + 0.4 = 123456789 inexact rounded
- addx225: 123456789 + 0.49 = 123456789 inexact rounded
- addx226: 123456789 + 0.499999 = 123456789 inexact rounded
- addx227: 123456789 + 0.499999999 = 123456789 inexact rounded
- addx228: 123456789 + 0.5 = 123456790 inexact rounded
- addx229: 123456789 + 0.500000001 = 123456790 inexact rounded
- addx230: 123456789 + 0.500001 = 123456790 inexact rounded
- addx231: 123456789 + 0.51 = 123456790 inexact rounded
- addx232: 123456789 + 0.6 = 123456790 inexact rounded
- addx233: 123456789 + 0.9 = 123456790 inexact rounded
- addx234: 123456789 + 0.99999 = 123456790 inexact rounded
- addx235: 123456789 + 0.999999999 = 123456790 inexact rounded
- addx236: 123456789 + 1 = 123456790
- addx237: 123456789 + 1.00000001 = 123456790 inexact rounded
- addx238: 123456789 + 1.00001 = 123456790 inexact rounded
- addx239: 123456789 + 1.1 = 123456790 inexact rounded
- addx240: 123456788 + 0.499999999 = 123456788 inexact rounded
- addx241: 123456788 + 0.5 = 123456788 inexact rounded
- addx242: 123456788 + 0.500000001 = 123456789 inexact rounded
- round=down
- addx250: 123456789 + 0 = 123456789
- addx251: 123456789 + 0.000000001 = 123456789 inexact rounded
- addx252: 123456789 + 0.000001 = 123456789 inexact rounded
- addx253: 123456789 + 0.1 = 123456789 inexact rounded
- addx254: 123456789 + 0.4 = 123456789 inexact rounded
- addx255: 123456789 + 0.49 = 123456789 inexact rounded
- addx256: 123456789 + 0.499999 = 123456789 inexact rounded
- addx257: 123456789 + 0.499999999 = 123456789 inexact rounded
- addx258: 123456789 + 0.5 = 123456789 inexact rounded
- addx259: 123456789 + 0.500000001 = 123456789 inexact rounded
- addx260: 123456789 + 0.500001 = 123456789 inexact rounded
- addx261: 123456789 + 0.51 = 123456789 inexact rounded
- addx262: 123456789 + 0.6 = 123456789 inexact rounded
- addx263: 123456789 + 0.9 = 123456789 inexact rounded
- addx264: 123456789 + 0.99999 = 123456789 inexact rounded
- addx265: 123456789 + 0.999999999 = 123456789 inexact rounded
- addx266: 123456789 + 1 = 123456790
- addx267: 123456789 + 1.00000001 = 123456790 inexact rounded
- addx268: 123456789 + 1.00001 = 123456790 inexact rounded
- addx269: 123456789 + 1.1 = 123456790 inexact rounded
- precision=3
- round=half_up
- addx270: 12345678900000 + 9999999999999 = 2.23E+13 inexact rounded
- addx271: 9999999999999 + 12345678900000 = 2.23E+13 inexact rounded
- addx272: 12E+3 + 3444 = 1.54E+4 inexact rounded
- addx273: 12E+3 + 3446 = 1.54E+4 inexact rounded
- addx274: 12E+3 + 3449.9 = 1.54E+4 inexact rounded
- addx275: 12E+3 + 3450.0 = 1.55E+4 inexact rounded
- addx276: 12E+3 + 3450.1 = 1.55E+4 inexact rounded
- addx277: 12E+3 + 3454 = 1.55E+4 inexact rounded
- addx278: 12E+3 + 3456 = 1.55E+4 inexact rounded
- addx281: 3444 + 12E+3 = 1.54E+4 inexact rounded
- addx282: 3446 + 12E+3 = 1.54E+4 inexact rounded
- addx283: 3449.9 + 12E+3 = 1.54E+4 inexact rounded
- addx284: 3450.0 + 12E+3 = 1.55E+4 inexact rounded
- addx285: 3450.1 + 12E+3 = 1.55E+4 inexact rounded
- addx286: 3454 + 12E+3 = 1.55E+4 inexact rounded
- addx287: 3456 + 12E+3 = 1.55E+4 inexact rounded
- round=half_down
- addx291: 3444 + 12E+3 = 1.54E+4 inexact rounded
- addx292: 3446 + 12E+3 = 1.54E+4 inexact rounded
- addx293: 3449.9 + 12E+3 = 1.54E+4 inexact rounded
- addx294: 3450.0 + 12E+3 = 1.54E+4 inexact rounded
- addx295: 3450.1 + 12E+3 = 1.55E+4 inexact rounded
- addx296: 3454 + 12E+3 = 1.55E+4 inexact rounded
- addx297: 3456 + 12E+3 = 1.55E+4 inexact rounded
- round=half_up
- addx301: -1 + 1 = 0
- addx302: 0 + 1 = 1
- addx303: 1 + 1 = 2
- addx304: 12 + 1 = 13
- addx305: 98 + 1 = 99
- addx306: 99 + 1 = 100
- addx307: 100 + 1 = 101
- addx308: 101 + 1 = 102
- addx309: -1 + -1 = -2
- addx310: 0 + -1 = -1
- addx311: 1 + -1 = 0
- addx312: 12 + -1 = 11
- addx313: 98 + -1 = 97
- addx314: 99 + -1 = 98
- addx315: 100 + -1 = 99
- addx316: 101 + -1 = 100
- addx321: -0.01 + 0.01 = 0.00
- addx322: 0.00 + 0.01 = 0.01
- addx323: 0.01 + 0.01 = 0.02
- addx324: 0.12 + 0.01 = 0.13
- addx325: 0.98 + 0.01 = 0.99
- addx326: 0.99 + 0.01 = 1.00
- addx327: 1.00 + 0.01 = 1.01
- addx328: 1.01 + 0.01 = 1.02
- addx329: -0.01 + -0.01 = -0.02
- addx330: 0.00 + -0.01 = -0.01
- addx331: 0.01 + -0.01 = 0.00
- addx332: 0.12 + -0.01 = 0.11
- addx333: 0.98 + -0.01 = 0.97
- addx334: 0.99 + -0.01 = 0.98
- addx335: 1.00 + -0.01 = 0.99
- addx336: 1.01 + -0.01 = 1.00
- precision=9
- addx340: 1E+3 + 0 = 1000
- addx341: 1E+8 + 0 = 100000000
- addx342: 1E+9 + 0 = 1.00000000E+9 rounded
- addx343: 1E+10 + 0 = 1.00000000E+10 rounded
- addx344: 1E+3 + 1 = 1001
- addx345: 1E+8 + 1 = 100000001
- addx346: 1E+9 + 1 = 1.00000000E+9 inexact rounded
- addx347: 1E+10 + 1 = 1.00000000E+10 inexact rounded
- addx348: 1E+3 + 7 = 1007
- addx349: 1E+8 + 7 = 100000007
- addx350: 1E+9 + 7 = 1.00000001E+9 inexact rounded
- addx351: 1E+10 + 7 = 1.00000000E+10 inexact rounded
- precision=7
- round=half_up
- e_max=92
- e_min=-92
- addx361: 0E+50 + 10000E+1 = 1.0000E+5
- addx362: 10000E+1 + 0E-50 = 100000.0 rounded
- addx363: 10000E+1 + 10000E-50 = 100000.0 rounded inexact
- addx364: 9.999999E+92 + -9.999999E+92 = 0E+86
- round=half_down
- precision=10
- addx370: 99999999 + 81512 = 100081511
- precision=6
- addx371: 99999999 + 81512 = 1.00082E+8 rounded inexact
- round=half_up
- precision=10
- addx372: 99999999 + 81512 = 100081511
- precision=6
- addx373: 99999999 + 81512 = 1.00082E+8 rounded inexact
- round=half_even
- precision=10
- addx374: 99999999 + 81512 = 100081511
- precision=6
- addx375: 99999999 + 81512 = 1.00082E+8 rounded inexact
- precision=9
- e_max=999999999
- e_min=-999999999
- addx400: 1 + 77e-7 = 1.0000077
- addx401: 1 + 77e-8 = 1.00000077
- addx402: 1 + 77e-9 = 1.00000008 inexact rounded
- addx403: 1 + 77e-10 = 1.00000001 inexact rounded
- addx404: 1 + 77e-11 = 1.00000000 inexact rounded
- addx405: 1 + 77e-12 = 1.00000000 inexact rounded
- addx406: 1 + 77e-999 = 1.00000000 inexact rounded
- addx407: 1 + 77e-9999999 = 1.00000000 inexact rounded
- addx410: 10 + 77e-7 = 10.0000077
- addx411: 10 + 77e-8 = 10.0000008 inexact rounded
- addx412: 10 + 77e-9 = 10.0000001 inexact rounded
- addx413: 10 + 77e-10 = 10.0000000 inexact rounded
- addx414: 10 + 77e-11 = 10.0000000 inexact rounded
- addx415: 10 + 77e-12 = 10.0000000 inexact rounded
- addx416: 10 + 77e-999 = 10.0000000 inexact rounded
- addx417: 10 + 77e-9999999 = 10.0000000 inexact rounded
- addx420: 77e-7 + 1 = 1.0000077
- addx421: 77e-8 + 1 = 1.00000077
- addx422: 77e-9 + 1 = 1.00000008 inexact rounded
- addx423: 77e-10 + 1 = 1.00000001 inexact rounded
- addx424: 77e-11 + 1 = 1.00000000 inexact rounded
- addx425: 77e-12 + 1 = 1.00000000 inexact rounded
- addx426: 77e-999 + 1 = 1.00000000 inexact rounded
- addx427: 77e-9999999 + 1 = 1.00000000 inexact rounded
- addx430: 77e-7 + 10 = 10.0000077
- addx431: 77e-8 + 10 = 10.0000008 inexact rounded
- addx432: 77e-9 + 10 = 10.0000001 inexact rounded
- addx433: 77e-10 + 10 = 10.0000000 inexact rounded
- addx434: 77e-11 + 10 = 10.0000000 inexact rounded
- addx435: 77e-12 + 10 = 10.0000000 inexact rounded
- addx436: 77e-999 + 10 = 10.0000000 inexact rounded
- addx437: 77e-9999999 + 10 = 10.0000000 inexact rounded
- addx440: 1 + -77e-7 = 0.9999923
- addx441: 1 + -77e-8 = 0.99999923
- addx442: 1 + -77e-9 = 0.999999923
- addx443: 1 + -77e-10 = 0.999999992 inexact rounded
- addx444: 1 + -77e-11 = 0.999999999 inexact rounded
- addx445: 1 + -77e-12 = 1.00000000 inexact rounded
- addx446: 1 + -77e-999 = 1.00000000 inexact rounded
- addx447: 1 + -77e-9999999 = 1.00000000 inexact rounded
- addx450: 10 + -77e-7 = 9.9999923
- addx451: 10 + -77e-8 = 9.99999923
- addx452: 10 + -77e-9 = 9.99999992 inexact rounded
- addx453: 10 + -77e-10 = 9.99999999 inexact rounded
- addx454: 10 + -77e-11 = 10.0000000 inexact rounded
- addx455: 10 + -77e-12 = 10.0000000 inexact rounded
- addx456: 10 + -77e-999 = 10.0000000 inexact rounded
- addx457: 10 + -77e-9999999 = 10.0000000 inexact rounded
- addx460: -77e-7 + 1 = 0.9999923
- addx461: -77e-8 + 1 = 0.99999923
- addx462: -77e-9 + 1 = 0.999999923
- addx463: -77e-10 + 1 = 0.999999992 inexact rounded
- addx464: -77e-11 + 1 = 0.999999999 inexact rounded
- addx465: -77e-12 + 1 = 1.00000000 inexact rounded
- addx466: -77e-999 + 1 = 1.00000000 inexact rounded
- addx467: -77e-9999999 + 1 = 1.00000000 inexact rounded
- addx470: -77e-7 + 10 = 9.9999923
- addx471: -77e-8 + 10 = 9.99999923
- addx472: -77e-9 + 10 = 9.99999992 inexact rounded
- addx473: -77e-10 + 10 = 9.99999999 inexact rounded
- addx474: -77e-11 + 10 = 10.0000000 inexact rounded
- addx475: -77e-12 + 10 = 10.0000000 inexact rounded
- addx476: -77e-999 + 10 = 10.0000000 inexact rounded
- addx477: -77e-9999999 + 10 = 10.0000000 inexact rounded
- addx480: -1 + 77e-7 = -0.9999923
- addx481: -1 + 77e-8 = -0.99999923
- addx482: -1 + 77e-9 = -0.999999923
- addx483: -1 + 77e-10 = -0.999999992 inexact rounded
- addx484: -1 + 77e-11 = -0.999999999 inexact rounded
- addx485: -1 + 77e-12 = -1.00000000 inexact rounded
- addx486: -1 + 77e-999 = -1.00000000 inexact rounded
- addx487: -1 + 77e-9999999 = -1.00000000 inexact rounded
- addx490: -10 + 77e-7 = -9.9999923
- addx491: -10 + 77e-8 = -9.99999923
- addx492: -10 + 77e-9 = -9.99999992 inexact rounded
- addx493: -10 + 77e-10 = -9.99999999 inexact rounded
- addx494: -10 + 77e-11 = -10.0000000 inexact rounded
- addx495: -10 + 77e-12 = -10.0000000 inexact rounded
- addx496: -10 + 77e-999 = -10.0000000 inexact rounded
- addx497: -10 + 77e-9999999 = -10.0000000 inexact rounded
- addx500: 77e-7 + -1 = -0.9999923
- addx501: 77e-8 + -1 = -0.99999923
- addx502: 77e-9 + -1 = -0.999999923
- addx503: 77e-10 + -1 = -0.999999992 inexact rounded
- addx504: 77e-11 + -1 = -0.999999999 inexact rounded
- addx505: 77e-12 + -1 = -1.00000000 inexact rounded
- addx506: 77e-999 + -1 = -1.00000000 inexact rounded
- addx507: 77e-9999999 + -1 = -1.00000000 inexact rounded
- addx510: 77e-7 + -10 = -9.9999923
- addx511: 77e-8 + -10 = -9.99999923
- addx512: 77e-9 + -10 = -9.99999992 inexact rounded
- addx513: 77e-10 + -10 = -9.99999999 inexact rounded
- addx514: 77e-11 + -10 = -10.0000000 inexact rounded
- addx515: 77e-12 + -10 = -10.0000000 inexact rounded
- addx516: 77e-999 + -10 = -10.0000000 inexact rounded
- addx517: 77e-9999999 + -10 = -10.0000000 inexact rounded
- e_max=999
- e_min=-999
- precision=9
- addx521: 12345678000 + 0 = 1.23456780E+10 rounded
- addx522: 0 + 12345678000 = 1.23456780E+10 rounded
- addx523: 1234567800 + 0 = 1.23456780E+9 rounded
- addx524: 0 + 1234567800 = 1.23456780E+9 rounded
- addx525: 1234567890 + 0 = 1.23456789E+9 rounded
- addx526: 0 + 1234567890 = 1.23456789E+9 rounded
- addx527: 1234567891 + 0 = 1.23456789E+9 inexact rounded
- addx528: 0 + 1234567891 = 1.23456789E+9 inexact rounded
- addx529: 12345678901 + 0 = 1.23456789E+10 inexact rounded
- addx530: 0 + 12345678901 = 1.23456789E+10 inexact rounded
- addx531: 1234567896 + 0 = 1.23456790E+9 inexact rounded
- addx532: 0 + 1234567896 = 1.23456790E+9 inexact rounded
- precision=15
- addx541: 12345678000 + 0 = 12345678000
- addx542: 0 + 12345678000 = 12345678000
- addx543: 1234567800 + 0 = 1234567800
- addx544: 0 + 1234567800 = 1234567800
- addx545: 1234567890 + 0 = 1234567890
- addx546: 0 + 1234567890 = 1234567890
- addx547: 1234567891 + 0 = 1234567891
- addx548: 0 + 1234567891 = 1234567891
- addx549: 12345678901 + 0 = 12345678901
- addx550: 0 + 12345678901 = 12345678901
- addx551: 1234567896 + 0 = 1234567896
- addx552: 0 + 1234567896 = 1234567896
- precision=16
- e_max=394
- e_min=-393
- round=down
- addx561: 1e-398 + 9.000000000000000E+384 = 9.000000000000000E+384 inexact rounded
- addx562: 0 + 9.000000000000000E+384 = 9.000000000000000E+384 rounded
- precision=16
- e_max=384
- e_min=-383
- round=down
- addx563: 1e-388 + 9.000000000000000E+374 = 9.000000000000000E+374 inexact rounded
- addx564: 0 + 9.000000000000000E+374 = 9.000000000000000E+374 rounded
- precision=9
- round=half_up
- addx601: 123456789 + 0.000001 = 123456789 inexact rounded
- round=half_even
- addx602: 123456789 + 0.000001 = 123456789 inexact rounded
- round=half_down
- addx603: 123456789 + 0.000001 = 123456789 inexact rounded
- round=floor
- addx604: 123456789 + 0.000001 = 123456789 inexact rounded
- round=ceiling
- addx605: 123456789 + 0.000001 = 123456790 inexact rounded
- round=up
- addx606: 123456789 + 0.000001 = 123456790 inexact rounded
- round=down
- addx607: 123456789 + 0.000001 = 123456789 inexact rounded
- round=half_up
- addx611: 123456789 + -0.000001 = 123456789 inexact rounded
- round=half_even
- addx612: 123456789 + -0.000001 = 123456789 inexact rounded
- round=half_down
- addx613: 123456789 + -0.000001 = 123456789 inexact rounded
- round=floor
- addx614: 123456789 + -0.000001 = 123456788 inexact rounded
- round=ceiling
- addx615: 123456789 + -0.000001 = 123456789 inexact rounded
- round=up
- addx616: 123456789 + -0.000001 = 123456789 inexact rounded
- round=down
- addx617: 123456789 + -0.000001 = 123456788 inexact rounded
- round=half_up
- addx621: 123456789 + 0.499999 = 123456789 inexact rounded
- round=half_even
- addx622: 123456789 + 0.499999 = 123456789 inexact rounded
- round=half_down
- addx623: 123456789 + 0.499999 = 123456789 inexact rounded
- round=floor
- addx624: 123456789 + 0.499999 = 123456789 inexact rounded
- round=ceiling
- addx625: 123456789 + 0.499999 = 123456790 inexact rounded
- round=up
- addx626: 123456789 + 0.499999 = 123456790 inexact rounded
- round=down
- addx627: 123456789 + 0.499999 = 123456789 inexact rounded
- round=half_up
- addx631: 123456789 + -0.499999 = 123456789 inexact rounded
- round=half_even
- addx632: 123456789 + -0.499999 = 123456789 inexact rounded
- round=half_down
- addx633: 123456789 + -0.499999 = 123456789 inexact rounded
- round=floor
- addx634: 123456789 + -0.499999 = 123456788 inexact rounded
- round=ceiling
- addx635: 123456789 + -0.499999 = 123456789 inexact rounded
- round=up
- addx636: 123456789 + -0.499999 = 123456789 inexact rounded
- round=down
- addx637: 123456789 + -0.499999 = 123456788 inexact rounded
- round=half_up
- addx641: 123456789 + 0.500001 = 123456790 inexact rounded
- round=half_even
- addx642: 123456789 + 0.500001 = 123456790 inexact rounded
- round=half_down
- addx643: 123456789 + 0.500001 = 123456790 inexact rounded
- round=floor
- addx644: 123456789 + 0.500001 = 123456789 inexact rounded
- round=ceiling
- addx645: 123456789 + 0.500001 = 123456790 inexact rounded
- round=up
- addx646: 123456789 + 0.500001 = 123456790 inexact rounded
- round=down
- addx647: 123456789 + 0.500001 = 123456789 inexact rounded
- round=half_up
- addx651: 123456789 + -0.500001 = 123456788 inexact rounded
- round=half_even
- addx652: 123456789 + -0.500001 = 123456788 inexact rounded
- round=half_down
- addx653: 123456789 + -0.500001 = 123456788 inexact rounded
- round=floor
- addx654: 123456789 + -0.500001 = 123456788 inexact rounded
- round=ceiling
- addx655: 123456789 + -0.500001 = 123456789 inexact rounded
- round=up
- addx656: 123456789 + -0.500001 = 123456789 inexact rounded
- round=down
- addx657: 123456789 + -0.500001 = 123456788 inexact rounded
- round=half_up
- precision=37
- addx660: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 98471174166.42211023638922337114834538
- precision=36
- addx661: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 98471174166.4221102363892233711483454 inexact rounded
- precision=35
- addx662: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 98471174166.422110236389223371148345 inexact rounded
- precision=34
- addx663: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 98471174166.42211023638922337114835 inexact rounded
- precision=33
- addx664: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 98471174166.4221102363892233711483 inexact rounded
- precision=32
- addx665: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 98471174166.422110236389223371148 inexact rounded
- precision=31
- addx666: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 98471174166.42211023638922337115 inexact rounded
- precision=30
- addx667: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 98471174166.4221102363892233711 inexact rounded
- precision=29
- addx668: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 98471174166.422110236389223371 inexact rounded
- precision=28
- addx669: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 98471174166.42211023638922337 inexact rounded
- precision=27
- addx670: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 98471174166.4221102363892234 inexact rounded
- precision=26
- addx671: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 98471174166.422110236389223 inexact rounded
- precision=25
- addx672: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 98471174166.42211023638922 inexact rounded
- precision=24
- addx673: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 98471174166.4221102363892 inexact rounded
- precision=23
- addx674: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 98471174166.422110236389 inexact rounded
- precision=22
- addx675: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 98471174166.42211023639 inexact rounded
- precision=21
- addx676: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 98471174166.4221102364 inexact rounded
- precision=20
- addx677: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 98471174166.422110236 inexact rounded
- precision=19
- addx678: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 98471174166.42211024 inexact rounded
- precision=18
- addx679: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 98471174166.4221102 inexact rounded
- precision=17
- addx680: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 98471174166.422110 inexact rounded
- precision=16
- addx681: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 98471174166.42211 inexact rounded
- precision=15
- addx682: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 98471174166.4221 inexact rounded
- precision=14
- addx683: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 98471174166.422 inexact rounded
- precision=13
- addx684: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 98471174166.42 inexact rounded
- precision=12
- addx685: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 98471174166.4 inexact rounded
- precision=11
- addx686: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 98471174166 inexact rounded
- precision=10
- addx687: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 9.847117417E+10 inexact rounded
- precision=9
- addx688: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 9.84711742E+10 inexact rounded
- precision=8
- addx689: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 9.8471174E+10 inexact rounded
- precision=7
- addx690: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 9.847117E+10 inexact rounded
- precision=6
- addx691: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 9.84712E+10 inexact rounded
- precision=5
- addx692: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 9.8471E+10 inexact rounded
- precision=4
- addx693: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 9.847E+10 inexact rounded
- precision=3
- addx694: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 9.85E+10 inexact rounded
- precision=2
- addx695: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 9.8E+10 inexact rounded
- precision=1
- addx696: 98471198160.56524417578665886060 + -23994.14313393939743548945165462 = 1E+11 inexact rounded
- round=half_up
- precision=9
- addx701: 5.00 + 1.00E-3 = 5.00100
- addx702: 00.00 + 0.000 = 0.000
- addx703: 00.00 + 0E-3 = 0.000
- addx704: 0E-3 + 00.00 = 0.000
- addx710: 0E+3 + 00.00 = 0.00
- addx711: 0E+3 + 00.0 = 0.0
- addx712: 0E+3 + 00. = 0
- addx713: 0E+3 + 00.E+1 = 0E+1
- addx714: 0E+3 + 00.E+2 = 0E+2
- addx715: 0E+3 + 00.E+3 = 0E+3
- addx716: 0E+3 + 00.E+4 = 0E+3
- addx717: 0E+3 + 00.E+5 = 0E+3
- addx718: 0E+3 + -00.0 = 0.0
- addx719: 0E+3 + -00. = 0
- addx731: 0E+3 + -00.E+1 = 0E+1
- addx720: 00.00 + 0E+3 = 0.00
- addx721: 00.0 + 0E+3 = 0.0
- addx722: 00. + 0E+3 = 0
- addx723: 00.E+1 + 0E+3 = 0E+1
- addx724: 00.E+2 + 0E+3 = 0E+2
- addx725: 00.E+3 + 0E+3 = 0E+3
- addx726: 00.E+4 + 0E+3 = 0E+3
- addx727: 00.E+5 + 0E+3 = 0E+3
- addx728: -00.00 + 0E+3 = 0.00
- addx729: -00.0 + 0E+3 = 0.0
- addx730: -00. + 0E+3 = 0
- addx732: 0 + 0 = 0
- addx733: 0 + -0 = 0
- addx734: -0 + 0 = 0
- addx735: -0 + -0 = -0
- addx736: 1 + -1 = 0
- addx737: -1 + -1 = -2
- addx738: 1 + 1 = 2
- addx739: -1 + 1 = 0
- addx741: 0 + -1 = -1
- addx742: -0 + -1 = -1
- addx743: 0 + 1 = 1
- addx744: -0 + 1 = 1
- addx745: -1 + 0 = -1
- addx746: -1 + -0 = -1
- addx747: 1 + 0 = 1
- addx748: 1 + -0 = 1
- addx751: 0.0 + -1 = -1.0
- addx752: -0.0 + -1 = -1.0
- addx753: 0.0 + 1 = 1.0
- addx754: -0.0 + 1 = 1.0
- addx755: -1.0 + 0 = -1.0
- addx756: -1.0 + -0 = -1.0
- addx757: 1.0 + 0 = 1.0
- addx758: 1.0 + -0 = 1.0
- addx761: 0 + -1.0 = -1.0
- addx762: -0 + -1.0 = -1.0
- addx763: 0 + 1.0 = 1.0
- addx764: -0 + 1.0 = 1.0
- addx765: -1 + 0.0 = -1.0
- addx766: -1 + -0.0 = -1.0
- addx767: 1 + 0.0 = 1.0
- addx768: 1 + -0.0 = 1.0
- addx771: 0.0 + -1.0 = -1.0
- addx772: -0.0 + -1.0 = -1.0
- addx773: 0.0 + 1.0 = 1.0
- addx774: -0.0 + 1.0 = 1.0
- addx775: -1.0 + 0.0 = -1.0
- addx776: -1.0 + -0.0 = -1.0
- addx777: 1.0 + 0.0 = 1.0
- addx778: 1.0 + -0.0 = 1.0
- addx780: -Inf + -Inf = -Infinity
- addx781: -Inf + -1000 = -Infinity
- addx782: -Inf + -1 = -Infinity
- addx783: -Inf + -0 = -Infinity
- addx784: -Inf + 0 = -Infinity
- addx785: -Inf + 1 = -Infinity
- addx786: -Inf + 1000 = -Infinity
- addx787: -1000 + -Inf = -Infinity
- addx788: -Inf + -Inf = -Infinity
- addx789: -1 + -Inf = -Infinity
- addx790: -0 + -Inf = -Infinity
- addx791: 0 + -Inf = -Infinity
- addx792: 1 + -Inf = -Infinity
- addx793: 1000 + -Inf = -Infinity
- addx794: Inf + -Inf = NaN invalid_operation
- addx800: Inf + -Inf = NaN invalid_operation
- addx801: Inf + -1000 = Infinity
- addx802: Inf + -1 = Infinity
- addx803: Inf + -0 = Infinity
- addx804: Inf + 0 = Infinity
- addx805: Inf + 1 = Infinity
- addx806: Inf + 1000 = Infinity
- addx807: Inf + Inf = Infinity
- addx808: -1000 + Inf = Infinity
- addx809: -Inf + Inf = NaN invalid_operation
- addx810: -1 + Inf = Infinity
- addx811: -0 + Inf = Infinity
- addx812: 0 + Inf = Infinity
- addx813: 1 + Inf = Infinity
- addx814: 1000 + Inf = Infinity
- addx815: Inf + Inf = Infinity
- addx821: NaN + -Inf = NaN
- addx822: NaN + -1000 = NaN
- addx823: NaN + -1 = NaN
- addx824: NaN + -0 = NaN
- addx825: NaN + 0 = NaN
- addx826: NaN + 1 = NaN
- addx827: NaN + 1000 = NaN
- addx828: NaN + Inf = NaN
- addx829: NaN + NaN = NaN
- addx830: -Inf + NaN = NaN
- addx831: -1000 + NaN = NaN
- addx832: -1 + NaN = NaN
- addx833: -0 + NaN = NaN
- addx834: 0 + NaN = NaN
- addx835: 1 + NaN = NaN
- addx836: 1000 + NaN = NaN
- addx837: Inf + NaN = NaN
- addx841: sNaN + -Inf = NaN invalid_operation
- addx842: sNaN + -1000 = NaN invalid_operation
- addx843: sNaN + -1 = NaN invalid_operation
- addx844: sNaN + -0 = NaN invalid_operation
- addx845: sNaN + 0 = NaN invalid_operation
- addx846: sNaN + 1 = NaN invalid_operation
- addx847: sNaN + 1000 = NaN invalid_operation
- addx848: sNaN + NaN = NaN invalid_operation
- addx849: sNaN + sNaN = NaN invalid_operation
- addx850: NaN + sNaN = NaN invalid_operation
- addx851: -Inf + sNaN = NaN invalid_operation
- addx852: -1000 + sNaN = NaN invalid_operation
- addx853: -1 + sNaN = NaN invalid_operation
- addx854: -0 + sNaN = NaN invalid_operation
- addx855: 0 + sNaN = NaN invalid_operation
- addx856: 1 + sNaN = NaN invalid_operation
- addx857: 1000 + sNaN = NaN invalid_operation
- addx858: Inf + sNaN = NaN invalid_operation
- addx859: NaN + sNaN = NaN invalid_operation
- addx861: NaN1 + -Inf = NaN1
- addx862: +NaN2 + -1000 = NaN2
- addx863: NaN3 + 1000 = NaN3
- addx864: NaN4 + Inf = NaN4
- addx865: NaN5 + +NaN6 = NaN5
- addx866: -Inf + NaN7 = NaN7
- addx867: -1000 + NaN8 = NaN8
- addx868: 1000 + NaN9 = NaN9
- addx869: Inf + +NaN10 = NaN10
- addx871: sNaN11 + -Inf = NaN11 invalid_operation
- addx872: sNaN12 + -1000 = NaN12 invalid_operation
- addx873: sNaN13 + 1000 = NaN13 invalid_operation
- addx874: sNaN14 + NaN17 = NaN14 invalid_operation
- addx875: sNaN15 + sNaN18 = NaN15 invalid_operation
- addx876: NaN16 + sNaN19 = NaN19 invalid_operation
- addx877: -Inf + +sNaN20 = NaN20 invalid_operation
- addx878: -1000 + sNaN21 = NaN21 invalid_operation
- addx879: 1000 + sNaN22 = NaN22 invalid_operation
- addx880: Inf + sNaN23 = NaN23 invalid_operation
- addx881: +NaN25 + +sNaN24 = NaN24 invalid_operation
- addx882: -NaN26 + NaN28 = -NaN26
- addx883: -sNaN27 + sNaN29 = -NaN27 invalid_operation
- addx884: 1000 + -NaN30 = -NaN30
- addx885: 1000 + -sNaN31 = -NaN31 invalid_operation
- e_max=999999999
- e_min=-999999999
- precision=9
- addx890: 1E+999999999 + 9E+999999999 = Infinity overflow inexact rounded
- addx891: 9E+999999999 + 1E+999999999 = Infinity overflow inexact rounded
- addx892: -1.1E-999999999 + 1E-999999999 = -1E-1000000000 subnormal
- addx893: 1E-999999999 + -1.1e-999999999 = -1E-1000000000 subnormal
- addx894: -1.0001E-999999999 + 1E-999999999 = -1E-1000000003 subnormal
- addx895: 1E-999999999 + -1.0001e-999999999 = -1E-1000000003 subnormal
- addx896: -1E+999999999 + -9E+999999999 = -Infinity overflow inexact rounded
- addx897: -9E+999999999 + -1E+999999999 = -Infinity overflow inexact rounded
- addx898: +1.1E-999999999 + -1E-999999999 = 1E-1000000000 subnormal
- addx899: -1E-999999999 + +1.1e-999999999 = 1E-1000000000 subnormal
- addx900: +1.0001E-999999999 + -1E-999999999 = 1E-1000000003 subnormal
- addx901: -1E-999999999 + +1.0001e-999999999 = 1E-1000000003 subnormal
- addx902: -1E+999999999 + +9E+999999999 = 8E+999999999
- addx903: -9E+999999999 + +1E+999999999 = -8E+999999999
- precision=3
- addx904: 0 + -9.999E+999999999 = -Infinity inexact overflow rounded
- addx905: -9.999E+999999999 + 0 = -Infinity inexact overflow rounded
- addx906: 0 + 9.999E+999999999 = Infinity inexact overflow rounded
- addx907: 9.999E+999999999 + 0 = Infinity inexact overflow rounded
- precision=3
- e_max=999
- e_min=-999
- addx910: 1.00E-999 + 0 = 1.00E-999
- addx911: 0.1E-999 + 0 = 1E-1000 subnormal
- addx912: 0.10E-999 + 0 = 1.0E-1000 subnormal
- addx913: 0.100E-999 + 0 = 1.0E-1000 subnormal rounded
- addx914: 0.01E-999 + 0 = 1E-1001 subnormal
- addx915: 0.999E-999 + 0 = 1.00E-999 inexact rounded subnormal underflow
- addx916: 0.099E-999 + 0 = 1.0E-1000 inexact rounded subnormal underflow
- addx917: 0.009E-999 + 0 = 1E-1001 inexact rounded subnormal underflow
- addx918: 0.001E-999 + 0 = 0E-1001 inexact rounded subnormal underflow clamped
- addx919: 0.0009E-999 + 0 = 0E-1001 inexact rounded subnormal underflow clamped
- addx920: 0.0001E-999 + 0 = 0E-1001 inexact rounded subnormal underflow clamped
- addx930: -1.00E-999 + 0 = -1.00E-999
- addx931: -0.1E-999 + 0 = -1E-1000 subnormal
- addx932: -0.10E-999 + 0 = -1.0E-1000 subnormal
- addx933: -0.100E-999 + 0 = -1.0E-1000 subnormal rounded
- addx934: -0.01E-999 + 0 = -1E-1001 subnormal
- addx935: -0.999E-999 + 0 = -1.00E-999 inexact rounded subnormal underflow
- addx936: -0.099E-999 + 0 = -1.0E-1000 inexact rounded subnormal underflow
- addx937: -0.009E-999 + 0 = -1E-1001 inexact rounded subnormal underflow
- addx938: -0.001E-999 + 0 = -0E-1001 inexact rounded subnormal underflow clamped
- addx939: -0.0009E-999 + 0 = -0E-1001 inexact rounded subnormal underflow clamped
- addx940: -0.0001E-999 + 0 = -0E-1001 inexact rounded subnormal underflow clamped
- addx950: 1.00E-999 + 0.1E-999 = 1.10E-999
- addx951: 0.1E-999 + 0.1E-999 = 2E-1000 subnormal
- addx952: 0.10E-999 + 0.1E-999 = 2.0E-1000 subnormal
- addx953: 0.100E-999 + 0.1E-999 = 2.0E-1000 subnormal rounded
- addx954: 0.01E-999 + 0.1E-999 = 1.1E-1000 subnormal
- addx955: 0.999E-999 + 0.1E-999 = 1.10E-999 inexact rounded
- addx956: 0.099E-999 + 0.1E-999 = 2.0E-1000 inexact rounded subnormal underflow
- addx957: 0.009E-999 + 0.1E-999 = 1.1E-1000 inexact rounded subnormal underflow
- addx958: 0.001E-999 + 0.1E-999 = 1.0E-1000 inexact rounded subnormal underflow
- addx959: 0.0009E-999 + 0.1E-999 = 1.0E-1000 inexact rounded subnormal underflow
- addx960: 0.0001E-999 + 0.1E-999 = 1.0E-1000 inexact rounded subnormal underflow
- addx961: 1.00E-999 + -0.1E-999 = 9.0E-1000 subnormal
- addx962: 0.1E-999 + -0.1E-999 = 0E-1000
- addx963: 0.10E-999 + -0.1E-999 = 0E-1001
- addx964: 0.100E-999 + -0.1E-999 = 0E-1001 clamped
- addx965: 0.01E-999 + -0.1E-999 = -9E-1001 subnormal
- addx966: 0.999E-999 + -0.1E-999 = 9.0E-1000 inexact rounded subnormal underflow
- addx967: 0.099E-999 + -0.1E-999 = -0E-1001 inexact rounded subnormal underflow clamped
- addx968: 0.009E-999 + -0.1E-999 = -9E-1001 inexact rounded subnormal underflow
- addx969: 0.001E-999 + -0.1E-999 = -1.0E-1000 inexact rounded subnormal underflow
- addx970: 0.0009E-999 + -0.1E-999 = -1.0E-1000 inexact rounded subnormal underflow
- addx971: 0.0001E-999 + -0.1E-999 = -1.0E-1000 inexact rounded subnormal underflow
- e_max=384
- e_min=-383
- precision=8
- addx566: 99999061735E-394 + 0E-394 = 9.999906E-384 inexact rounded underflow subnormal
- precision=7
- addx567: 99999061735E-394 + 0E-394 = 9.99991E-384 inexact rounded underflow subnormal
- precision=6
- addx568: 99999061735E-394 + 0E-394 = 9.9999E-384 inexact rounded underflow subnormal
- precision=16
- round=half_up
- e_max=384
- e_min=-383
- addx571: 1E-383 + 0 = 1E-383
- addx572: 1E-384 + 0 = 1E-384 subnormal
- addx573: 1E-383 + 1E-384 = 1.1E-383
- addx574: 1E-383 - 1E-384 = 9E-384 subnormal
- addx575: 1E-383 - 1E-398 = 9.99999999999999E-384 subnormal
- addx576: 1E-383 - 1E-398 = 9.99999999999999E-384 subnormal
- addx577: 1E-383 - 1E-399 = 1.000000000000000E-383 underflow inexact subnormal rounded
- addx578: 1E-383 - 1E-400 = 1.000000000000000E-383 underflow inexact subnormal rounded
- addx579: 1E-383 - 1E-401 = 1.000000000000000E-383 underflow inexact subnormal rounded
- addx580: 1E-383 - 1E-402 = 1.000000000000000E-383 underflow inexact subnormal rounded
- precision=7
- round=half_up
- e_max=96
- e_min=-95
- addx972: 
- addx973: 9.999999E+96 + 1 = 9.999999E+96 inexact rounded
- addx974: 9999999E+90 + 1 = 9.999999E+96 inexact rounded
- addx975: 9999999E+90 + 1E+90 = Infinity overflow inexact rounded
- addx976: 9999999E+90 + 9E+89 = Infinity overflow inexact rounded
- addx977: 9999999E+90 + 8E+89 = Infinity overflow inexact rounded
- addx978: 9999999E+90 + 7E+89 = Infinity overflow inexact rounded
- addx979: 9999999E+90 + 6E+89 = Infinity overflow inexact rounded
- addx980: 9999999E+90 + 5E+89 = Infinity overflow inexact rounded
- addx981: 9999999E+90 + 4E+89 = 9.999999E+96 inexact rounded
- addx982: 9999999E+90 + 3E+89 = 9.999999E+96 inexact rounded
- addx983: 9999999E+90 + 2E+89 = 9.999999E+96 inexact rounded
- addx984: 9999999E+90 + 1E+89 = 9.999999E+96 inexact rounded
- addx985: 
- addx986: -9.999999E+96 + -1 = -9.999999E+96 inexact rounded
- addx987: -9999999E+90 + -1 = -9.999999E+96 inexact rounded
- addx988: -9999999E+90 + -1E+90 = -Infinity overflow inexact rounded
- addx989: -9999999E+90 + -9E+89 = -Infinity overflow inexact rounded
- addx990: -9999999E+90 + -8E+89 = -Infinity overflow inexact rounded
- addx991: -9999999E+90 + -7E+89 = -Infinity overflow inexact rounded
- addx992: -9999999E+90 + -6E+89 = -Infinity overflow inexact rounded
- addx993: -9999999E+90 + -5E+89 = -Infinity overflow inexact rounded
- addx994: -9999999E+90 + -4E+89 = -9.999999E+96 inexact rounded
- addx995: -9999999E+90 + -3E+89 = -9.999999E+96 inexact rounded
- addx996: -9999999E+90 + -2E+89 = -9.999999E+96 inexact rounded
- addx997: -9999999E+90 + -1E+89 = -9.999999E+96 inexact rounded
- precision=5
- e_max=79
- e_min=-79
- addx1001: 1.52444E-80 + 0 = 1.524E-80 inexact rounded subnormal underflow
- addx1002: 1.52445E-80 + 0 = 1.524E-80 inexact rounded subnormal underflow
- addx1003: 1.52446E-80 + 0 = 1.524E-80 inexact rounded subnormal underflow
- addx1004: 0 + 1.52444E-80 = 1.524E-80 inexact rounded subnormal underflow
- addx1005: 0 + 1.52445E-80 = 1.524E-80 inexact rounded subnormal underflow
- addx1006: 0 + 1.52446E-80 = 1.524E-80 inexact rounded subnormal underflow
- addx1011: 1.52444E-80 + 1E-100 = 1.524E-80 inexact rounded subnormal underflow
- addx1012: 1.52445E-80 + 1E-100 = 1.524E-80 inexact rounded subnormal underflow
- addx1013: 1.52446E-80 + 1E-100 = 1.524E-80 inexact rounded subnormal underflow
- addx1014: 1E-100 + 1.52444E-80 = 1.524E-80 inexact rounded subnormal underflow
- addx1015: 1E-100 + 1.52445E-80 = 1.524E-80 inexact rounded subnormal underflow
- addx1016: 1E-100 + 1.52446E-80 = 1.524E-80 inexact rounded subnormal underflow
- addx1021: 1.52443E-80 + 1.00001E-80 = 2.524E-80 inexact rounded subnormal underflow
- addx1022: 1.52444E-80 + 1.00001E-80 = 2.524E-80 inexact rounded subnormal underflow
- addx1023: 1.52445E-80 + 1.00001E-80 = 2.524E-80 inexact rounded subnormal underflow
- addx1024: 1.00001E-80 + 1.52443E-80 = 2.524E-80 inexact rounded subnormal underflow
- addx1025: 1.00001E-80 + 1.52444E-80 = 2.524E-80 inexact rounded subnormal underflow
- addx1026: 1.00001E-80 + 1.52445E-80 = 2.524E-80 inexact rounded subnormal underflow
- precision=16
- e_max=384
- e_min=-383
- round=down
- addx1100: 1e+2 + -1e-383 = 99.99999999999999 rounded inexact
- addx1101: 1e+1 + -1e-383 = 9.999999999999999 rounded inexact
- addx1103: +1 + -1e-383 = 0.9999999999999999 rounded inexact
- addx1104: 1e-1 + -1e-383 = 0.09999999999999999 rounded inexact
- addx1105: 1e-2 + -1e-383 = 0.009999999999999999 rounded inexact
- addx1106: 1e-3 + -1e-383 = 0.0009999999999999999 rounded inexact
- addx1107: 1e-4 + -1e-383 = 0.00009999999999999999 rounded inexact
- addx1108: 1e-5 + -1e-383 = 0.000009999999999999999 rounded inexact
- addx1109: 1e-6 + -1e-383 = 9.999999999999999E-7 rounded inexact
- round=ceiling
- addx1110: -1e+2 + +1e-383 = -99.99999999999999 rounded inexact
- addx1111: -1e+1 + +1e-383 = -9.999999999999999 rounded inexact
- addx1113: -1 + +1e-383 = -0.9999999999999999 rounded inexact
- addx1114: -1e-1 + +1e-383 = -0.09999999999999999 rounded inexact
- addx1115: -1e-2 + +1e-383 = -0.009999999999999999 rounded inexact
- addx1116: -1e-3 + +1e-383 = -0.0009999999999999999 rounded inexact
- addx1117: -1e-4 + +1e-383 = -0.00009999999999999999 rounded inexact
- addx1118: -1e-5 + +1e-383 = -0.000009999999999999999 rounded inexact
- addx1119: -1e-6 + +1e-383 = -9.999999999999999E-7 rounded inexact
- addx1120: +1e-383 + -1e+2 = -99.99999999999999 rounded inexact
- addx1121: +1e-383 + -1e+1 = -9.999999999999999 rounded inexact
- addx1123: +1e-383 + -1 = -0.9999999999999999 rounded inexact
- addx1124: +1e-383 + -1e-1 = -0.09999999999999999 rounded inexact
- addx1125: +1e-383 + -1e-2 = -0.009999999999999999 rounded inexact
- addx1126: +1e-383 + -1e-3 = -0.0009999999999999999 rounded inexact
- addx1127: +1e-383 + -1e-4 = -0.00009999999999999999 rounded inexact
- addx1128: +1e-383 + -1e-5 = -0.000009999999999999999 rounded inexact
- addx1129: +1e-383 + -1e-6 = -9.999999999999999E-7 rounded inexact
- round=down
- precision=7
- e_max=96
- e_min=-95
- addx1130: 1 + -1e-200 = 0.9999999 rounded inexact
- addx1131: 1.000000E-94 + -1e-200 = 9.999999E-95 rounded inexact
- addx1132: 1.000001E-95 + -1e-200 = 1.000000E-95 rounded inexact
- addx1133: 1.000000E-95 + -1e-200 = 9.99999E-96 rounded inexact subnormal underflow
- addx1134: 0.999999E-95 + -1e-200 = 9.99998E-96 rounded inexact subnormal underflow
- addx1135: 0.001000E-95 + -1e-200 = 9.99E-99 rounded inexact subnormal underflow
- addx1136: 0.000999E-95 + -1e-200 = 9.98E-99 rounded inexact subnormal underflow
- addx1137: 1.000000E-95 + -1e-101 = 9.99999E-96 subnormal
- addx1138: 10000E-101 + -1e-200 = 9.999E-98 subnormal inexact rounded underflow
- addx1139: 1000E-101 + -1e-200 = 9.99E-99 subnormal inexact rounded underflow
- addx1140: 100E-101 + -1e-200 = 9.9E-100 subnormal inexact rounded underflow
- addx1141: 10E-101 + -1e-200 = 9E-101 subnormal inexact rounded underflow
- addx1142: 1E-101 + -1e-200 = 0E-101 subnormal inexact rounded underflow clamped
- addx1143: 0E-101 + -1e-200 = -0E-101 subnormal inexact rounded underflow clamped
- addx1144: 1E-102 + -1e-200 = 0E-101 subnormal inexact rounded underflow clamped
- addx1151: 10000E-102 + -1e-200 = 9.99E-99 subnormal inexact rounded underflow
- addx1152: 1000E-102 + -1e-200 = 9.9E-100 subnormal inexact rounded underflow
- addx1153: 100E-102 + -1e-200 = 9E-101 subnormal inexact rounded underflow
- addx1154: 10E-102 + -1e-200 = 0E-101 subnormal inexact rounded underflow clamped
- addx1155: 1E-102 + -1e-200 = 0E-101 subnormal inexact rounded underflow clamped
- addx1156: 0E-102 + -1e-200 = -0E-101 subnormal inexact rounded underflow clamped
- addx1157: 1E-103 + -1e-200 = 0E-101 subnormal inexact rounded underflow clamped
- addx1160: 100E-105 + -1e-101 = -0E-101 subnormal inexact rounded underflow clamped
- addx1161: 100E-105 + -1e-201 = 0E-101 subnormal inexact rounded underflow clamped
- precision=15
- round=half_up
- e_max=384
- e_min=-383
- addx1200: 1E15 + -0.5 = 1.00000000000000E+15 inexact rounded
- addx1201: 1E15 + -0.50 = 1.00000000000000E+15 inexact rounded
- addx1210: 1E15 + -0.51 = 999999999999999 inexact rounded
- addx1211: 1E15 + -0.501 = 999999999999999 inexact rounded
- addx1212: 1E15 + -0.5001 = 999999999999999 inexact rounded
- addx1213: 1E15 + -0.50001 = 999999999999999 inexact rounded
- addx1214: 1E15 + -0.500001 = 999999999999999 inexact rounded
- addx1215: 1E15 + -0.5000001 = 999999999999999 inexact rounded
- addx1216: 1E15 + -0.50000001 = 999999999999999 inexact rounded
- addx1217: 1E15 + -0.500000001 = 999999999999999 inexact rounded
- addx1218: 1E15 + -0.5000000001 = 999999999999999 inexact rounded
- addx1219: 1E15 + -0.50000000001 = 999999999999999 inexact rounded
- addx1220: 1E15 + -0.500000000001 = 999999999999999 inexact rounded
- addx1221: 1E15 + -0.5000000000001 = 999999999999999 inexact rounded
- addx1222: 1E15 + -0.50000000000001 = 999999999999999 inexact rounded
- addx1223: 1E15 + -0.500000000000001 = 999999999999999 inexact rounded
- addx1224: 1E15 + -0.5000000000000001 = 999999999999999 inexact rounded
- addx1225: 1E15 + -0.5000000000000000 = 1.00000000000000E+15 inexact rounded
- addx1230: 1E15 + -5000000.000000001 = 999999995000000 inexact rounded
- precision=16
- addx1300: 1E16 + -0.5 = 1.000000000000000E+16 inexact rounded
- addx1310: 1E16 + -0.51 = 9999999999999999 inexact rounded
- addx1311: 1E16 + -0.501 = 9999999999999999 inexact rounded
- addx1312: 1E16 + -0.5001 = 9999999999999999 inexact rounded
- addx1313: 1E16 + -0.50001 = 9999999999999999 inexact rounded
- addx1314: 1E16 + -0.500001 = 9999999999999999 inexact rounded
- addx1315: 1E16 + -0.5000001 = 9999999999999999 inexact rounded
- addx1316: 1E16 + -0.50000001 = 9999999999999999 inexact rounded
- addx1317: 1E16 + -0.500000001 = 9999999999999999 inexact rounded
- addx1318: 1E16 + -0.5000000001 = 9999999999999999 inexact rounded
- addx1319: 1E16 + -0.50000000001 = 9999999999999999 inexact rounded
- addx1320: 1E16 + -0.500000000001 = 9999999999999999 inexact rounded
- addx1321: 1E16 + -0.5000000000001 = 9999999999999999 inexact rounded
- addx1322: 1E16 + -0.50000000000001 = 9999999999999999 inexact rounded
- addx1323: 1E16 + -0.500000000000001 = 9999999999999999 inexact rounded
- addx1324: 1E16 + -0.5000000000000001 = 9999999999999999 inexact rounded
- ...TRUNCATED BY DUNE...
- sqtx8112: sqrt(10000) = 1.0E+2 rounded
- sqtx8113: sqrt(10201) = 1.0E+2 inexact rounded
- precision=3
- sqtx8114: sqrt(841) = 29
- sqtx8115: sqrt(1600) = 40
- sqtx8116: sqrt(2209) = 47
- sqtx8117: sqrt(9604) = 98
- sqtx8118: sqrt(21316) = 146
- sqtx8119: sqrt(52441) = 229
- sqtx8120: sqrt(68644) = 262
- sqtx8121: sqrt(69696) = 264
- sqtx8122: sqrt(70225) = 265
- sqtx8123: sqrt(76729) = 277
- sqtx8124: sqrt(130321) = 361
- sqtx8125: sqrt(171396) = 414
- sqtx8126: sqrt(270400) = 520
- sqtx8127: sqrt(279841) = 529
- sqtx8128: sqrt(407044) = 638
- sqtx8129: sqrt(408321) = 639
- sqtx8130: sqrt(480249) = 693
- sqtx8131: sqrt(516961) = 719
- sqtx8132: sqrt(692224) = 832
- sqtx8133: sqrt(829921) = 911
- precision=6
- sqtx8134: sqrt(2.25E-12) = 0.0000015
- sqtx8135: sqrt(8.41E-14) = 2.9E-7
- sqtx8136: sqrt(6.241E-15) = 7.9E-8
- sqtx8137: sqrt(5.041E+13) = 7.1E+6
- sqtx8138: sqrt(4761) = 69
- sqtx8139: sqrt(1.369E+17) = 3.7E+8
- sqtx8140: sqrt(0.00002116) = 0.0046
- sqtx8141: sqrt(7.29E+4) = 2.7E+2
- sqtx8142: sqrt(4.624E-13) = 6.8E-7
- sqtx8143: sqrt(3.969E+5) = 6.3E+2
- sqtx8144: sqrt(3.73321E-11) = 0.00000611
- sqtx8145: sqrt(5.61001E+17) = 7.49E+8
- sqtx8146: sqrt(2.30400E-11) = 0.00000480
- sqtx8147: sqrt(4.30336E+17) = 6.56E+8
- sqtx8148: sqrt(0.057121) = 0.239
- sqtx8149: sqrt(7.225E+17) = 8.5E+8
- sqtx8150: sqrt(3.14721E+13) = 5.61E+6
- sqtx8151: sqrt(4.61041E+17) = 6.79E+8
- sqtx8152: sqrt(1.39876E-15) = 3.74E-8
- sqtx8153: sqrt(6.19369E-9) = 0.0000787
- sqtx8154: sqrt(1.620529E-10) = 0.00001273
- sqtx8155: sqrt(1177.1761) = 34.31
- sqtx8156: sqrt(67043344) = 8188
- sqtx8157: sqrt(4.84E+6) = 2.2E+3
- sqtx8158: sqrt(1.23904E+11) = 3.52E+5
- sqtx8159: sqrt(32604100) = 5710
- sqtx8160: sqrt(2.9757025E-11) = 0.000005455
- sqtx8161: sqrt(6.3760225E-9) = 0.00007985
- sqtx8162: sqrt(4.5198729E-11) = 0.000006723
- sqtx8163: sqrt(1.4745600E-11) = 0.000003840
- sqtx8164: sqrt(18964283.04) = 4354.8
- sqtx8165: sqrt(3.308895529E+13) = 5.7523E+6
- sqtx8166: sqrt(0.0028590409) = 0.05347
- sqtx8167: sqrt(3572.213824) = 59.768
- sqtx8168: sqrt(4.274021376E+15) = 6.5376E+7
- sqtx8169: sqrt(4455476.64) = 2110.8
- sqtx8170: sqrt(38.44) = 6.2
- sqtx8171: sqrt(68.558400) = 8.280
- sqtx8172: sqrt(715402009) = 26747
- sqtx8173: sqrt(93.373569) = 9.663
- sqtx8174: sqrt(2.62144000000E+15) = 5.12000E+7
- sqtx8175: sqrt(7.48225000000E+15) = 8.65000E+7
- sqtx8176: sqrt(3.38724000000E-9) = 0.0000582000
- sqtx8177: sqrt(5.64001000000E-13) = 7.51000E-7
- sqtx8178: sqrt(5.06944000000E-15) = 7.12000E-8
- sqtx8179: sqrt(4.95616000000E+17) = 7.04000E+8
- sqtx8180: sqrt(0.0000242064000000) = 0.00492000
- sqtx8181: sqrt(1.48996000000E-15) = 3.86000E-8
- sqtx8182: sqrt(9.37024000000E+17) = 9.68000E+8
- sqtx8183: sqrt(7128900.0000) = 2670.00
- sqtx8184: sqrt(8.2311610000E-10) = 0.0000286900
- sqtx8185: sqrt(482747040000) = 694800
- sqtx8186: sqrt(4.14478440000E+17) = 6.43800E+8
- sqtx8187: sqrt(5.10510250000E-7) = 0.000714500
- sqtx8188: sqrt(355096.810000) = 595.900
- sqtx8189: sqrt(14288400.0000) = 3780.00
- sqtx8190: sqrt(3.36168040000E-15) = 5.79800E-8
- sqtx8191: sqrt(1.70899560000E-13) = 4.13400E-7
- sqtx8192: sqrt(0.0000378348010000) = 0.00615100
- sqtx8193: sqrt(2.00972890000E-13) = 4.48300E-7
- sqtx8194: sqrt(4.07222659600E-13) = 6.38140E-7
- sqtx8195: sqrt(131486012100) = 362610
- sqtx8196: sqrt(818192611600) = 904540
- sqtx8197: sqrt(9.8558323600E+16) = 3.13940E+8
- sqtx8198: sqrt(5641.06144900) = 75.1070
- sqtx8199: sqrt(4.58789475600E+17) = 6.77340E+8
- sqtx8200: sqrt(3.21386948100E-9) = 0.0000566910
- sqtx8201: sqrt(3.9441960000E-8) = 0.000198600
- sqtx8202: sqrt(242723.728900) = 492.670
- sqtx8203: sqrt(1874.89000000) = 43.3000
- sqtx8204: sqrt(2.56722595684E+15) = 5.06678E+7
- sqtx8205: sqrt(3.96437714689E-17) = 6.29633E-9
- sqtx8206: sqrt(3.80106774784E-17) = 6.16528E-9
- sqtx8207: sqrt(1.42403588496E-13) = 3.77364E-7
- sqtx8208: sqrt(4604.84388100) = 67.8590
- sqtx8209: sqrt(2157100869.16) = 46444.6
- sqtx8210: sqrt(355288570.81) = 18849.1
- sqtx8211: sqrt(4.69775901604E-11) = 0.00000685402
- sqtx8212: sqrt(8.22115770436E+17) = 9.06706E+8
- sqtx8213: sqrt(7.16443744900E+15) = 8.46430E+7
- sqtx8214: sqrt(9.48995498896E+15) = 9.74164E+7
- sqtx8215: sqrt(0.0000419091801129) = 0.00647373
- sqtx8216: sqrt(5862627996.84) = 76567.8
- sqtx8217: sqrt(9369537.3409) = 3060.97
- sqtx8218: sqrt(7.74792529729E+17) = 8.80223E+8
- sqtx8219: sqrt(1.08626931396E+17) = 3.29586E+8
- sqtx8220: sqrt(8.89584739684E-7) = 0.000943178
- sqtx8221: sqrt(4.0266040896E-18) = 2.00664E-9
- sqtx8222: sqrt(9.27669480336E-7) = 0.000963156
- sqtx8223: sqrt(0.00225497717956) = 0.0474866
- precision=1
- sqtx8224: sqrt(225) = 2E+1 inexact rounded
- sqtx8225: sqrt(625) = 2E+1 inexact rounded
- sqtx8226: sqrt(1225) = 4E+1 inexact rounded
- sqtx8227: sqrt(2025) = 4E+1 inexact rounded
- sqtx8228: sqrt(3025) = 6E+1 inexact rounded
- sqtx8229: sqrt(4225) = 6E+1 inexact rounded
- sqtx8230: sqrt(5625) = 8E+1 inexact rounded
- sqtx8231: sqrt(7225) = 8E+1 inexact rounded
- sqtx8232: sqrt(9025) = 1E+2 inexact rounded
- precision=2
- sqtx8233: sqrt(11025) = 1.0E+2 inexact rounded
- sqtx8234: sqrt(13225) = 1.2E+2 inexact rounded
- sqtx8235: sqrt(15625) = 1.2E+2 inexact rounded
- sqtx8236: sqrt(18225) = 1.4E+2 inexact rounded
- sqtx8237: sqrt(21025) = 1.4E+2 inexact rounded
- sqtx8238: sqrt(24025) = 1.6E+2 inexact rounded
- sqtx8239: sqrt(27225) = 1.6E+2 inexact rounded
- sqtx8240: sqrt(30625) = 1.8E+2 inexact rounded
- sqtx8241: sqrt(34225) = 1.8E+2 inexact rounded
- sqtx8242: sqrt(38025) = 2.0E+2 inexact rounded
- sqtx8243: sqrt(42025) = 2.0E+2 inexact rounded
- sqtx8244: sqrt(46225) = 2.2E+2 inexact rounded
- sqtx8245: sqrt(50625) = 2.2E+2 inexact rounded
- sqtx8246: sqrt(55225) = 2.4E+2 inexact rounded
- sqtx8247: sqrt(60025) = 2.4E+2 inexact rounded
- sqtx8248: sqrt(65025) = 2.6E+2 inexact rounded
- sqtx8249: sqrt(70225) = 2.6E+2 inexact rounded
- sqtx8250: sqrt(75625) = 2.8E+2 inexact rounded
- sqtx8251: sqrt(81225) = 2.8E+2 inexact rounded
- sqtx8252: sqrt(87025) = 3.0E+2 inexact rounded
- sqtx8253: sqrt(93025) = 3.0E+2 inexact rounded
- sqtx8254: sqrt(99225) = 3.2E+2 inexact rounded
- sqtx8255: sqrt(105625) = 3.2E+2 inexact rounded
- sqtx8256: sqrt(112225) = 3.4E+2 inexact rounded
- sqtx8257: sqrt(119025) = 3.4E+2 inexact rounded
- sqtx8258: sqrt(126025) = 3.6E+2 inexact rounded
- sqtx8259: sqrt(133225) = 3.6E+2 inexact rounded
- sqtx8260: sqrt(140625) = 3.8E+2 inexact rounded
- sqtx8261: sqrt(148225) = 3.8E+2 inexact rounded
- sqtx8262: sqrt(156025) = 4.0E+2 inexact rounded
- sqtx8263: sqrt(164025) = 4.0E+2 inexact rounded
- sqtx8264: sqrt(172225) = 4.2E+2 inexact rounded
- sqtx8265: sqrt(180625) = 4.2E+2 inexact rounded
- sqtx8266: sqrt(189225) = 4.4E+2 inexact rounded
- sqtx8267: sqrt(198025) = 4.4E+2 inexact rounded
- sqtx8268: sqrt(207025) = 4.6E+2 inexact rounded
- sqtx8269: sqrt(216225) = 4.6E+2 inexact rounded
- sqtx8270: sqrt(225625) = 4.8E+2 inexact rounded
- sqtx8271: sqrt(235225) = 4.8E+2 inexact rounded
- sqtx8272: sqrt(245025) = 5.0E+2 inexact rounded
- sqtx8273: sqrt(255025) = 5.0E+2 inexact rounded
- sqtx8274: sqrt(265225) = 5.2E+2 inexact rounded
- sqtx8275: sqrt(275625) = 5.2E+2 inexact rounded
- sqtx8276: sqrt(286225) = 5.4E+2 inexact rounded
- sqtx8277: sqrt(297025) = 5.4E+2 inexact rounded
- sqtx8278: sqrt(308025) = 5.6E+2 inexact rounded
- sqtx8279: sqrt(319225) = 5.6E+2 inexact rounded
- sqtx8280: sqrt(330625) = 5.8E+2 inexact rounded
- sqtx8281: sqrt(342225) = 5.8E+2 inexact rounded
- sqtx8282: sqrt(354025) = 6.0E+2 inexact rounded
- sqtx8283: sqrt(366025) = 6.0E+2 inexact rounded
- sqtx8284: sqrt(378225) = 6.2E+2 inexact rounded
- sqtx8285: sqrt(390625) = 6.2E+2 inexact rounded
- sqtx8286: sqrt(403225) = 6.4E+2 inexact rounded
- sqtx8287: sqrt(416025) = 6.4E+2 inexact rounded
- sqtx8288: sqrt(429025) = 6.6E+2 inexact rounded
- sqtx8289: sqrt(442225) = 6.6E+2 inexact rounded
- sqtx8290: sqrt(455625) = 6.8E+2 inexact rounded
- sqtx8291: sqrt(469225) = 6.8E+2 inexact rounded
- sqtx8292: sqrt(483025) = 7.0E+2 inexact rounded
- sqtx8293: sqrt(497025) = 7.0E+2 inexact rounded
- sqtx8294: sqrt(511225) = 7.2E+2 inexact rounded
- sqtx8295: sqrt(525625) = 7.2E+2 inexact rounded
- sqtx8296: sqrt(540225) = 7.4E+2 inexact rounded
- sqtx8297: sqrt(555025) = 7.4E+2 inexact rounded
- sqtx8298: sqrt(570025) = 7.6E+2 inexact rounded
- sqtx8299: sqrt(585225) = 7.6E+2 inexact rounded
- sqtx8300: sqrt(600625) = 7.8E+2 inexact rounded
- sqtx8301: sqrt(616225) = 7.8E+2 inexact rounded
- sqtx8302: sqrt(632025) = 8.0E+2 inexact rounded
- sqtx8303: sqrt(648025) = 8.0E+2 inexact rounded
- sqtx8304: sqrt(664225) = 8.2E+2 inexact rounded
- sqtx8305: sqrt(680625) = 8.2E+2 inexact rounded
- sqtx8306: sqrt(697225) = 8.4E+2 inexact rounded
- sqtx8307: sqrt(714025) = 8.4E+2 inexact rounded
- sqtx8308: sqrt(731025) = 8.6E+2 inexact rounded
- sqtx8309: sqrt(748225) = 8.6E+2 inexact rounded
- sqtx8310: sqrt(765625) = 8.8E+2 inexact rounded
- sqtx8311: sqrt(783225) = 8.8E+2 inexact rounded
- sqtx8312: sqrt(801025) = 9.0E+2 inexact rounded
- sqtx8313: sqrt(819025) = 9.0E+2 inexact rounded
- sqtx8314: sqrt(837225) = 9.2E+2 inexact rounded
- sqtx8315: sqrt(855625) = 9.2E+2 inexact rounded
- sqtx8316: sqrt(874225) = 9.4E+2 inexact rounded
- sqtx8317: sqrt(893025) = 9.4E+2 inexact rounded
- sqtx8318: sqrt(912025) = 9.6E+2 inexact rounded
- sqtx8319: sqrt(931225) = 9.6E+2 inexact rounded
- sqtx8320: sqrt(950625) = 9.8E+2 inexact rounded
- sqtx8321: sqrt(970225) = 9.8E+2 inexact rounded
- sqtx8322: sqrt(990025) = 1.0E+3 inexact rounded
- precision=6
- sqtx8323: sqrt(88975734963025) = 9.43270E+6 inexact rounded
- sqtx8324: sqrt(71085555000625) = 8.43122E+6 inexact rounded
- sqtx8325: sqrt(39994304.051025) = 6324.10 inexact rounded
- sqtx8326: sqrt(0.000007327172265625) = 0.00270688 inexact rounded
- sqtx8327: sqrt(1.0258600439025E-13) = 3.20290E-7 inexact rounded
- sqtx8328: sqrt(0.0034580574275625) = 0.0588052 inexact rounded
- sqtx8329: sqrt(7.6842317700625E-7) = 0.000876598 inexact rounded
- sqtx8330: sqrt(1263834495.2025) = 35550.4 inexact rounded
- sqtx8331: sqrt(433970666460.25) = 658764 inexact rounded
- sqtx8332: sqrt(4.5879286230625E-7) = 0.000677342 inexact rounded
- sqtx8333: sqrt(0.0029305603306225) = 0.0541346 inexact rounded
- sqtx8334: sqrt(70218282.733225) = 8379.64 inexact rounded
- sqtx8335: sqrt(11942519.082025) = 3455.80 inexact rounded
- sqtx8336: sqrt(0.0021230668905625) = 0.0460768 inexact rounded
- sqtx8337: sqrt(0.90081833411025) = 0.949114 inexact rounded
- sqtx8338: sqrt(5.5104120936225E-17) = 7.42322E-9 inexact rounded
- sqtx8339: sqrt(0.10530446854225) = 0.324506 inexact rounded
- sqtx8340: sqrt(8.706069866025E-14) = 2.95060E-7 inexact rounded
- sqtx8341: sqrt(23838.58800625) = 154.398 inexact rounded
- sqtx8342: sqrt(0.0013426911275625) = 0.0366428 inexact rounded
- precision=2
- sqtx8343: sqrt(2.5E-21) = 0E-10 underflow subnormal inexact rounded clamped
- sqtx8344: sqrt(2.25E-20) = 2E-10 underflow subnormal inexact rounded
- sqtx8345: sqrt(6.25E-20) = 2E-10 underflow subnormal inexact rounded
- sqtx8346: sqrt(1.225E-19) = 4E-10 underflow subnormal inexact rounded
- sqtx8347: sqrt(2.025E-19) = 4E-10 underflow subnormal inexact rounded
- sqtx8348: sqrt(3.025E-19) = 6E-10 underflow subnormal inexact rounded
- sqtx8349: sqrt(4.225E-19) = 6E-10 underflow subnormal inexact rounded
- sqtx8350: sqrt(5.625E-19) = 8E-10 underflow subnormal inexact rounded
- sqtx8351: sqrt(7.225E-19) = 8E-10 underflow subnormal inexact rounded
- sqtx8352: sqrt(9.025E-19) = 1.0E-9 underflow subnormal inexact rounded
- precision=3
- sqtx8353: sqrt(2.5E-23) = 0E-11 underflow subnormal inexact rounded clamped
- sqtx8354: sqrt(2.25E-22) = 2E-11 underflow subnormal inexact rounded
- sqtx8355: sqrt(6.25E-22) = 2E-11 underflow subnormal inexact rounded
- sqtx8356: sqrt(1.225E-21) = 4E-11 underflow subnormal inexact rounded
- sqtx8357: sqrt(2.025E-21) = 4E-11 underflow subnormal inexact rounded
- sqtx8358: sqrt(3.025E-21) = 6E-11 underflow subnormal inexact rounded
- sqtx8359: sqrt(4.225E-21) = 6E-11 underflow subnormal inexact rounded
- sqtx8360: sqrt(5.625E-21) = 8E-11 underflow subnormal inexact rounded
- sqtx8361: sqrt(7.225E-21) = 8E-11 underflow subnormal inexact rounded
- sqtx8362: sqrt(9.025E-21) = 1.0E-10 underflow subnormal inexact rounded
- sqtx8363: sqrt(1.1025E-20) = 1.0E-10 underflow subnormal inexact rounded
- sqtx8364: sqrt(1.3225E-20) = 1.2E-10 underflow subnormal inexact rounded
- sqtx8365: sqrt(1.5625E-20) = 1.2E-10 underflow subnormal inexact rounded
- sqtx8366: sqrt(1.8225E-20) = 1.4E-10 underflow subnormal inexact rounded
- sqtx8367: sqrt(2.1025E-20) = 1.4E-10 underflow subnormal inexact rounded
- sqtx8368: sqrt(2.4025E-20) = 1.6E-10 underflow subnormal inexact rounded
- sqtx8369: sqrt(2.7225E-20) = 1.6E-10 underflow subnormal inexact rounded
- sqtx8370: sqrt(3.0625E-20) = 1.8E-10 underflow subnormal inexact rounded
- sqtx8371: sqrt(3.4225E-20) = 1.8E-10 underflow subnormal inexact rounded
- sqtx8372: sqrt(3.8025E-20) = 2.0E-10 underflow subnormal inexact rounded
- sqtx8373: sqrt(4.2025E-20) = 2.0E-10 underflow subnormal inexact rounded
- sqtx8374: sqrt(4.6225E-20) = 2.2E-10 underflow subnormal inexact rounded
- sqtx8375: sqrt(5.0625E-20) = 2.2E-10 underflow subnormal inexact rounded
- sqtx8376: sqrt(5.5225E-20) = 2.4E-10 underflow subnormal inexact rounded
- sqtx8377: sqrt(6.0025E-20) = 2.4E-10 underflow subnormal inexact rounded
- sqtx8378: sqrt(6.5025E-20) = 2.6E-10 underflow subnormal inexact rounded
- sqtx8379: sqrt(7.0225E-20) = 2.6E-10 underflow subnormal inexact rounded
- sqtx8380: sqrt(7.5625E-20) = 2.8E-10 underflow subnormal inexact rounded
- sqtx8381: sqrt(8.1225E-20) = 2.8E-10 underflow subnormal inexact rounded
- sqtx8382: sqrt(8.7025E-20) = 3.0E-10 underflow subnormal inexact rounded
- sqtx8383: sqrt(9.3025E-20) = 3.0E-10 underflow subnormal inexact rounded
- sqtx8384: sqrt(9.9225E-20) = 3.2E-10 underflow subnormal inexact rounded
- precision=4
- sqtx8385: sqrt(2.5E-25) = 0E-12 underflow subnormal inexact rounded clamped
- sqtx8386: sqrt(2.25E-24) = 2E-12 underflow subnormal inexact rounded
- sqtx8387: sqrt(6.25E-24) = 2E-12 underflow subnormal inexact rounded
- sqtx8388: sqrt(1.225E-23) = 4E-12 underflow subnormal inexact rounded
- sqtx8389: sqrt(2.025E-23) = 4E-12 underflow subnormal inexact rounded
- sqtx8390: sqrt(3.025E-23) = 6E-12 underflow subnormal inexact rounded
- sqtx8391: sqrt(4.225E-23) = 6E-12 underflow subnormal inexact rounded
- sqtx8392: sqrt(5.625E-23) = 8E-12 underflow subnormal inexact rounded
- sqtx8393: sqrt(7.225E-23) = 8E-12 underflow subnormal inexact rounded
- sqtx8394: sqrt(9.025E-23) = 1.0E-11 underflow subnormal inexact rounded
- precision=5
- sqtx8395: sqrt(2.5E-27) = 0E-13 underflow subnormal inexact rounded clamped
- sqtx8396: sqrt(2.25E-26) = 2E-13 underflow subnormal inexact rounded
- sqtx8397: sqrt(6.25E-26) = 2E-13 underflow subnormal inexact rounded
- sqtx8398: sqrt(1.225E-25) = 4E-13 underflow subnormal inexact rounded
- sqtx8399: sqrt(2.025E-25) = 4E-13 underflow subnormal inexact rounded
- sqtx8400: sqrt(3.025E-25) = 6E-13 underflow subnormal inexact rounded
- sqtx8401: sqrt(4.225E-25) = 6E-13 underflow subnormal inexact rounded
- sqtx8402: sqrt(5.625E-25) = 8E-13 underflow subnormal inexact rounded
- sqtx8403: sqrt(7.225E-25) = 8E-13 underflow subnormal inexact rounded
- sqtx8404: sqrt(9.025E-25) = 1.0E-12 underflow subnormal inexact rounded
- sqtx8405: sqrt(1.1025E-24) = 1.0E-12 underflow subnormal inexact rounded
- sqtx8406: sqrt(1.3225E-24) = 1.2E-12 underflow subnormal inexact rounded
- sqtx8407: sqrt(1.5625E-24) = 1.2E-12 underflow subnormal inexact rounded
- sqtx8408: sqrt(1.8225E-24) = 1.4E-12 underflow subnormal inexact rounded
- sqtx8409: sqrt(2.1025E-24) = 1.4E-12 underflow subnormal inexact rounded
- sqtx8410: sqrt(2.4025E-24) = 1.6E-12 underflow subnormal inexact rounded
- sqtx8411: sqrt(2.7225E-24) = 1.6E-12 underflow subnormal inexact rounded
- sqtx8412: sqrt(3.0625E-24) = 1.8E-12 underflow subnormal inexact rounded
- sqtx8413: sqrt(3.4225E-24) = 1.8E-12 underflow subnormal inexact rounded
- sqtx8414: sqrt(3.8025E-24) = 2.0E-12 underflow subnormal inexact rounded
- sqtx8415: sqrt(4.2025E-24) = 2.0E-12 underflow subnormal inexact rounded
- sqtx8416: sqrt(4.6225E-24) = 2.2E-12 underflow subnormal inexact rounded
- sqtx8417: sqrt(5.0625E-24) = 2.2E-12 underflow subnormal inexact rounded
- sqtx8418: sqrt(5.5225E-24) = 2.4E-12 underflow subnormal inexact rounded
- sqtx8419: sqrt(6.0025E-24) = 2.4E-12 underflow subnormal inexact rounded
- sqtx8420: sqrt(6.5025E-24) = 2.6E-12 underflow subnormal inexact rounded
- sqtx8421: sqrt(7.0225E-24) = 2.6E-12 underflow subnormal inexact rounded
- sqtx8422: sqrt(7.5625E-24) = 2.8E-12 underflow subnormal inexact rounded
- sqtx8423: sqrt(8.1225E-24) = 2.8E-12 underflow subnormal inexact rounded
- sqtx8424: sqrt(8.7025E-24) = 3.0E-12 underflow subnormal inexact rounded
- sqtx8425: sqrt(9.3025E-24) = 3.0E-12 underflow subnormal inexact rounded
- sqtx8426: sqrt(9.9225E-24) = 3.2E-12 underflow subnormal inexact rounded
- precision=1
- sqtx8427: sqrt(227) = 2E+1 inexact rounded
- sqtx8428: sqrt(625) = 2E+1 inexact rounded
- sqtx8429: sqrt(1215) = 3E+1 inexact rounded
- sqtx8430: sqrt(2008) = 4E+1 inexact rounded
- sqtx8431: sqrt(2020) = 4E+1 inexact rounded
- sqtx8432: sqrt(2026) = 5E+1 inexact rounded
- sqtx8433: sqrt(2027) = 5E+1 inexact rounded
- sqtx8434: sqrt(2065) = 5E+1 inexact rounded
- sqtx8435: sqrt(2075) = 5E+1 inexact rounded
- sqtx8436: sqrt(2088) = 5E+1 inexact rounded
- sqtx8437: sqrt(3049) = 6E+1 inexact rounded
- sqtx8438: sqrt(3057) = 6E+1 inexact rounded
- sqtx8439: sqrt(3061) = 6E+1 inexact rounded
- sqtx8440: sqrt(3092) = 6E+1 inexact rounded
- sqtx8441: sqrt(4222) = 6E+1 inexact rounded
- sqtx8442: sqrt(5676) = 8E+1 inexact rounded
- sqtx8443: sqrt(5686) = 8E+1 inexact rounded
- sqtx8444: sqrt(7215) = 8E+1 inexact rounded
- sqtx8445: sqrt(9086) = 1E+2 inexact rounded
- sqtx8446: sqrt(9095) = 1E+2 inexact rounded
- precision=2
- sqtx8447: sqrt(1266) = 36 inexact rounded
- sqtx8448: sqrt(2552) = 51 inexact rounded
- sqtx8449: sqrt(5554) = 75 inexact rounded
- sqtx8450: sqrt(7832) = 88 inexact rounded
- sqtx8451: sqrt(13201) = 1.1E+2 inexact rounded
- sqtx8452: sqrt(15695) = 1.3E+2 inexact rounded
- sqtx8453: sqrt(18272) = 1.4E+2 inexact rounded
- sqtx8454: sqrt(21026) = 1.5E+2 inexact rounded
- sqtx8455: sqrt(24069) = 1.6E+2 inexact rounded
- sqtx8456: sqrt(34277) = 1.9E+2 inexact rounded
- sqtx8457: sqrt(46233) = 2.2E+2 inexact rounded
- sqtx8458: sqrt(46251) = 2.2E+2 inexact rounded
- sqtx8459: sqrt(46276) = 2.2E+2 inexact rounded
- sqtx8460: sqrt(70214) = 2.6E+2 inexact rounded
- sqtx8461: sqrt(81249) = 2.9E+2 inexact rounded
- sqtx8462: sqrt(81266) = 2.9E+2 inexact rounded
- sqtx8463: sqrt(93065) = 3.1E+2 inexact rounded
- sqtx8464: sqrt(93083) = 3.1E+2 inexact rounded
- sqtx8465: sqrt(99230) = 3.2E+2 inexact rounded
- sqtx8466: sqrt(99271) = 3.2E+2 inexact rounded
- precision=3
- sqtx8467: sqrt(11349) = 107 inexact rounded
- sqtx8468: sqrt(26738) = 164 inexact rounded
- sqtx8469: sqrt(31508) = 178 inexact rounded
- sqtx8470: sqrt(44734) = 212 inexact rounded
- sqtx8471: sqrt(44738) = 212 inexact rounded
- sqtx8472: sqrt(51307) = 227 inexact rounded
- sqtx8473: sqrt(62259) = 250 inexact rounded
- sqtx8474: sqrt(75901) = 276 inexact rounded
- sqtx8475: sqrt(76457) = 277 inexact rounded
- sqtx8476: sqrt(180287) = 425 inexact rounded
- sqtx8477: sqrt(202053) = 450 inexact rounded
- sqtx8478: sqrt(235747) = 486 inexact rounded
- sqtx8479: sqrt(256537) = 506 inexact rounded
- sqtx8480: sqrt(299772) = 548 inexact rounded
- sqtx8481: sqrt(415337) = 644 inexact rounded
- sqtx8482: sqrt(617067) = 786 inexact rounded
- sqtx8483: sqrt(628022) = 792 inexact rounded
- sqtx8484: sqrt(645629) = 804 inexact rounded
- sqtx8485: sqrt(785836) = 886 inexact rounded
- sqtx8486: sqrt(993066) = 997 inexact rounded
- precision=6
- sqtx8487: sqrt(14917781) = 3862.35 inexact rounded
- sqtx8488: sqrt(17237238) = 4151.78 inexact rounded
- sqtx8489: sqrt(18054463) = 4249.05 inexact rounded
- sqtx8490: sqrt(19990694) = 4471.10 inexact rounded
- sqtx8491: sqrt(29061855) = 5390.90 inexact rounded
- sqtx8492: sqrt(49166257) = 7011.87 inexact rounded
- sqtx8493: sqrt(53082086) = 7285.75 inexact rounded
- sqtx8494: sqrt(56787909) = 7535.78 inexact rounded
- sqtx8495: sqrt(81140019) = 9007.78 inexact rounded
- sqtx8496: sqrt(87977554) = 9379.64 inexact rounded
- sqtx8497: sqrt(93624683) = 9675.98 inexact rounded
- sqtx8498: sqrt(98732747) = 9936.44 inexact rounded
- sqtx8499: sqrt(99222813) = 9961.06 inexact rounded
- sqtx8500: sqrt(143883626) = 11995.2 inexact rounded
- sqtx8501: sqrt(180433301) = 13432.5 inexact rounded
- sqtx8502: sqrt(227034020) = 15067.6 inexact rounded
- sqtx8503: sqrt(283253992) = 16830.2 inexact rounded
- sqtx8504: sqrt(617047954) = 24840.4 inexact rounded
- sqtx8505: sqrt(736870094) = 27145.4 inexact rounded
- sqtx8506: sqrt(897322915) = 29955.3 inexact rounded
- precision=1
- sqtx8507: sqrt(1E-20) = 0E-9 underflow subnormal inexact rounded clamped
- sqtx8508: sqrt(1E-19) = 0E-9 underflow subnormal inexact rounded clamped
- sqtx8509: sqrt(1E-18) = 1E-9
- precision=2
- sqtx8510: sqrt(8.1E-19) = 9E-10 subnormal
- sqtx8511: sqrt(8.10E-19) = 9E-10 subnormal rounded
- sqtx8512: sqrt(9.0E-19) = 9E-10 underflow subnormal inexact rounded
- sqtx8513: sqrt(9.02E-19) = 9E-10 underflow subnormal inexact rounded
- sqtx8514: sqrt(9.03E-19) = 1.0E-9 underflow subnormal inexact rounded
- sqtx8515: sqrt(9.1E-19) = 1.0E-9 underflow subnormal inexact rounded
- sqtx8516: sqrt(9.9E-19) = 1.0E-9 underflow subnormal inexact rounded
- sqtx8517: sqrt(9.91E-19) = 1.0E-9 underflow subnormal inexact rounded
- sqtx8518: sqrt(9.92E-19) = 1.0E-9 underflow subnormal inexact rounded
- sqtx8519: sqrt(9.95E-19) = 1.0E-9 underflow subnormal inexact rounded
- sqtx8520: sqrt(9.98E-19) = 1.0E-9 underflow subnormal inexact rounded
- sqtx8521: sqrt(9.99E-19) = 1.0E-9 underflow subnormal inexact rounded
- sqtx8522: sqrt(1E-18) = 1E-9
- sqtx8523: sqrt(1.0E-18) = 1.0E-9
- sqtx8524: sqrt(1.00E-18) = 1.0E-9
- sqtx8525: sqrt(1.000E-18) = 1.0E-9 rounded
- sqtx8526: sqrt(1.0000E-18) = 1.0E-9 rounded
- sqtx8527: sqrt(1.01E-18) = 1.0E-9 inexact rounded
- sqtx8528: sqrt(1.02E-18) = 1.0E-9 inexact rounded
- sqtx8529: sqrt(1.1E-18) = 1.0E-9 inexact rounded
- precision=3
- sqtx8530: sqrt(8.1E-19) = 9E-10 subnormal
- sqtx8531: sqrt(8.10E-19) = 9.0E-10 subnormal
- sqtx8532: sqrt(8.100E-19) = 9.0E-10 subnormal
- sqtx8533: sqrt(8.1000E-19) = 9.0E-10 subnormal rounded
- sqtx8534: sqrt(9.9E-19) = 9.9E-10 underflow subnormal inexact rounded
- sqtx8535: sqrt(9.91E-19) = 1.00E-9 underflow subnormal inexact rounded
- sqtx8536: sqrt(9.99E-19) = 1.00E-9 underflow subnormal inexact rounded
- sqtx8537: sqrt(9.998E-19) = 1.00E-9 underflow subnormal inexact rounded
- sqtx8538: sqrt(1E-18) = 1E-9
- sqtx8539: sqrt(1.0E-18) = 1.0E-9
- sqtx8540: sqrt(1.00E-18) = 1.0E-9
- sqtx8541: sqrt(1.000E-18) = 1.00E-9
- sqtx8542: sqrt(1.0000E-18) = 1.00E-9
- sqtx8543: sqrt(1.00000E-18) = 1.00E-9 rounded
- sqtx8544: sqrt(1.000000E-18) = 1.00E-9 rounded
- sqtx8545: sqrt(1.01E-18) = 1.00E-9 inexact rounded
- sqtx8546: sqrt(1.02E-18) = 1.01E-9 inexact rounded
- precision=2
- sqtx8547: sqrt(1.21E-20) = 1E-10 underflow subnormal inexact rounded
- sqtx8548: sqrt(1.44E-20) = 1E-10 underflow subnormal inexact rounded
- sqtx8549: sqrt(9.61E-20) = 3E-10 underflow subnormal inexact rounded
- sqtx8550: sqrt(8.836E-19) = 9E-10 underflow subnormal inexact rounded
- sqtx8551: sqrt(9.216E-19) = 1.0E-9 underflow subnormal inexact rounded
- precision=3
- sqtx8552: sqrt(1.21E-22) = 1E-11 underflow subnormal inexact rounded
- sqtx8553: sqrt(1.21E-20) = 1.1E-10 subnormal
- sqtx8554: sqrt(1.96E-22) = 1E-11 underflow subnormal inexact rounded
- sqtx8555: sqrt(1.96E-20) = 1.4E-10 subnormal
- sqtx8556: sqrt(2.56E-22) = 2E-11 underflow subnormal inexact rounded
- sqtx8557: sqrt(4.00E-22) = 2E-11 subnormal rounded
- sqtx8558: sqrt(7.84E-22) = 3E-11 underflow subnormal inexact rounded
- sqtx8559: sqrt(9.801E-21) = 1.0E-10 underflow subnormal inexact rounded
- sqtx8560: sqrt(9.801E-19) = 9.9E-10 subnormal
- sqtx8561: sqrt(1.0201E-20) = 1.0E-10 underflow subnormal inexact rounded
- sqtx8562: sqrt(1.1025E-20) = 1.0E-10 underflow subnormal inexact rounded
- sqtx8563: sqrt(1.1236E-20) = 1.1E-10 underflow subnormal inexact rounded
- sqtx8564: sqrt(1.2996E-20) = 1.1E-10 underflow subnormal inexact rounded
- sqtx8565: sqrt(1.3225E-20) = 1.2E-10 underflow subnormal inexact rounded
- precision=2
- sqtx8566: sqrt(2.3E-21) = 0E-10 underflow subnormal inexact rounded clamped
- sqtx8567: sqrt(2.4E-21) = 0E-10 underflow subnormal inexact rounded clamped
- sqtx8568: sqrt(2.5E-21) = 0E-10 underflow subnormal inexact rounded clamped
- sqtx8569: sqrt(2.6E-21) = 1E-10 underflow subnormal inexact rounded
- sqtx8570: sqrt(2.7E-21) = 1E-10 underflow subnormal inexact rounded
- sqtx8571: sqrt(2.8E-21) = 1E-10 underflow subnormal inexact rounded
- sqtx8572: sqrt(2.2E-20) = 1E-10 underflow subnormal inexact rounded
- sqtx8573: sqrt(2.3E-20) = 2E-10 underflow subnormal inexact rounded
- sqtx8574: sqrt(2.4E-20) = 2E-10 underflow subnormal inexact rounded
- sqtx8575: sqrt(6.2E-20) = 2E-10 underflow subnormal inexact rounded
- sqtx8576: sqrt(6.3E-20) = 3E-10 underflow subnormal inexact rounded
- sqtx8577: sqrt(6.4E-20) = 3E-10 underflow subnormal inexact rounded
- sqtx8578: sqrt(6.5E-20) = 3E-10 underflow subnormal inexact rounded
- sqtx8579: sqrt(1.2E-19) = 3E-10 underflow subnormal inexact rounded
- sqtx8580: sqrt(2.0E-19) = 4E-10 underflow subnormal inexact rounded
- sqtx8581: sqrt(4.2E-19) = 6E-10 underflow subnormal inexact rounded
- sqtx8582: sqrt(5.6E-19) = 7E-10 underflow subnormal inexact rounded
- sqtx8583: sqrt(5.7E-19) = 8E-10 underflow subnormal inexact rounded
- sqtx8584: sqrt(9.0E-19) = 9E-10 underflow subnormal inexact rounded
- sqtx8585: sqrt(9.1E-19) = 1.0E-9 underflow subnormal inexact rounded
- precision=3
- sqtx8586: sqrt(2.6E-23) = 1E-11 underflow subnormal inexact rounded
- sqtx8587: sqrt(2.22E-22) = 1E-11 underflow subnormal inexact rounded
- sqtx8588: sqrt(6.07E-22) = 2E-11 underflow subnormal inexact rounded
- sqtx8589: sqrt(6.25E-22) = 2E-11 underflow subnormal inexact rounded
- sqtx8590: sqrt(6.45E-22) = 3E-11 underflow subnormal inexact rounded
- sqtx8591: sqrt(6.50E-22) = 3E-11 underflow subnormal inexact rounded
- sqtx8592: sqrt(1.22E-21) = 3E-11 underflow subnormal inexact rounded
- sqtx8593: sqrt(1.24E-21) = 4E-11 underflow subnormal inexact rounded
- sqtx8594: sqrt(4.18E-21) = 6E-11 underflow subnormal inexact rounded
- sqtx8595: sqrt(7.19E-21) = 8E-11 underflow subnormal inexact rounded
- sqtx8596: sqrt(8.94E-21) = 9E-11 underflow subnormal inexact rounded
- sqtx8597: sqrt(1.81E-20) = 1.3E-10 underflow subnormal inexact rounded
- sqtx8598: sqrt(4.64E-20) = 2.2E-10 underflow subnormal inexact rounded
- sqtx8599: sqrt(5.06E-20) = 2.2E-10 underflow subnormal inexact rounded
- sqtx8600: sqrt(5.08E-20) = 2.3E-10 underflow subnormal inexact rounded
- sqtx8601: sqrt(7.00E-20) = 2.6E-10 underflow subnormal inexact rounded
- sqtx8602: sqrt(1.81E-19) = 4.3E-10 underflow subnormal inexact rounded
- sqtx8603: sqrt(6.64E-19) = 8.1E-10 underflow subnormal inexact rounded
- sqtx8604: sqrt(7.48E-19) = 8.6E-10 underflow subnormal inexact rounded
- sqtx8605: sqrt(9.91E-19) = 1.00E-9 underflow subnormal inexact rounded
- precision=4
- sqtx8606: sqrt(6.24E-24) = 2E-12 underflow subnormal inexact rounded
- sqtx8607: sqrt(7.162E-23) = 8E-12 underflow subnormal inexact rounded
- sqtx8608: sqrt(7.243E-23) = 9E-12 underflow subnormal inexact rounded
- sqtx8609: sqrt(8.961E-23) = 9E-12 underflow subnormal inexact rounded
- sqtx8610: sqrt(9.029E-23) = 1.0E-11 underflow subnormal inexact rounded
- sqtx8611: sqrt(4.624E-22) = 2.2E-11 underflow subnormal inexact rounded
- sqtx8612: sqrt(5.980E-22) = 2.4E-11 underflow subnormal inexact rounded
- sqtx8613: sqrt(6.507E-22) = 2.6E-11 underflow subnormal inexact rounded
- sqtx8614: sqrt(1.483E-21) = 3.9E-11 underflow subnormal inexact rounded
- sqtx8615: sqrt(3.903E-21) = 6.2E-11 underflow subnormal inexact rounded
- sqtx8616: sqrt(8.733E-21) = 9.3E-11 underflow subnormal inexact rounded
- sqtx8617: sqrt(1.781E-20) = 1.33E-10 underflow subnormal inexact rounded
- sqtx8618: sqrt(6.426E-20) = 2.53E-10 underflow subnormal inexact rounded
- sqtx8619: sqrt(7.102E-20) = 2.66E-10 underflow subnormal inexact rounded
- sqtx8620: sqrt(7.535E-20) = 2.74E-10 underflow subnormal inexact rounded
- sqtx8621: sqrt(9.892E-20) = 3.15E-10 underflow subnormal inexact rounded
- sqtx8622: sqrt(1.612E-19) = 4.01E-10 underflow subnormal inexact rounded
- sqtx8623: sqrt(1.726E-19) = 4.15E-10 underflow subnormal inexact rounded
- sqtx8624: sqrt(1.853E-19) = 4.30E-10 underflow subnormal inexact rounded
- sqtx8625: sqrt(4.245E-19) = 6.52E-10 underflow subnormal inexact rounded
- precision=1
- sqtx8626: sqrt(1E+18) = 1E+9
- sqtx8627: sqrt(1E+19) = 3E+9 inexact rounded
- sqtx8628: sqrt(9E+19) = 9E+9 inexact rounded
- sqtx8629: sqrt(9.1E+19) = Infinity overflow inexact rounded
- sqtx8630: sqrt(1E+20) = Infinity overflow inexact rounded
- precision=2
- sqtx8631: sqrt(1E+18) = 1E+9
- sqtx8632: sqrt(1.0E+18) = 1.0E+9
- sqtx8633: sqrt(1.00E+18) = 1.0E+9
- sqtx8634: sqrt(1.000E+18) = 1.0E+9 rounded
- sqtx8635: sqrt(1E+20) = Infinity overflow inexact rounded
- clamp=true
- sqtx8636: sqrt(1E+18) = 1.0E+9 clamped
- sqtx8637: sqrt(1.0E+18) = 1.0E+9
- sqtx8638: sqrt(1E+20) = Infinity overflow inexact rounded
- clamp=false
- precision=6
- sqtx8639: sqrt(1E+18) = 1E+9
- sqtx8640: sqrt(1.0000000000E+18) = 1.00000E+9
- sqtx8641: sqrt(1.00000000000E+18) = 1.00000E+9 rounded
- sqtx8642: sqrt(1E+20) = Infinity overflow inexact rounded
- clamp=true
- sqtx8643: sqrt(1E+8) = 1E+4
- sqtx8644: sqrt(1E+10) = 1.0E+5 clamped
- sqtx8645: sqrt(1.0E+10) = 1.0E+5
- sqtx8646: sqrt(1E+12) = 1.00E+6 clamped
- sqtx8647: sqrt(1.0E+12) = 1.00E+6 clamped
- sqtx8648: sqrt(1.00E+12) = 1.00E+6 clamped
- sqtx8649: sqrt(1.000E+12) = 1.00E+6
- sqtx8650: sqrt(1E+18) = 1.00000E+9 clamped
- sqtx8651: sqrt(1.00000000E+18) = 1.00000E+9 clamped
- sqtx8652: sqrt(1.000000000E+18) = 1.00000E+9
- sqtx8653: sqrt(1E+20) = Infinity overflow inexact rounded
- clamp=false
- precision=3
- e_max=9
- e_min=-9
- sqtx8654: sqrt(10000000000) = 1.00E+5 rounded
- round=half_even
- precision=5
- e_max=999
- e_min=-999
- sqtx8700: sqrt(2.8073E-2000) = 1.675E-1000 underflow subnormal inexact rounded
- sqtx8701: sqrt(2.8883E-2000) = 1.699E-1000 underflow subnormal inexact rounded
- sqtx8702: sqrt(3.1524E-2000) = 1.775E-1000 underflow subnormal inexact rounded
- sqtx8703: sqrt(3.2382E-2000) = 1.799E-1000 underflow subnormal inexact rounded
- sqtx8704: sqrt(3.5175E-2000) = 1.875E-1000 underflow subnormal inexact rounded
- sqtx8705: sqrt(3.6081E-2000) = 1.899E-1000 underflow subnormal inexact rounded
- sqtx8706: sqrt(3.9026E-2000) = 1.975E-1000 underflow subnormal inexact rounded
- sqtx8707: sqrt(3.9980E-2000) = 1.999E-1000 underflow subnormal inexact rounded
- sqtx8708: sqrt(4.3077E-2000) = 2.075E-1000 underflow subnormal inexact rounded
- sqtx8709: sqrt(4.4079E-2000) = 2.099E-1000 underflow subnormal inexact rounded
- sqtx8710: sqrt(4.7328E-2000) = 2.175E-1000 underflow subnormal inexact rounded
- sqtx8711: sqrt(4.8378E-2000) = 2.199E-1000 underflow subnormal inexact rounded
- sqtx8712: sqrt(5.1779E-2000) = 2.275E-1000 underflow subnormal inexact rounded
- sqtx8713: sqrt(5.2877E-2000) = 2.299E-1000 underflow subnormal inexact rounded
- sqtx8714: sqrt(5.6430E-2000) = 2.375E-1000 underflow subnormal inexact rounded
- sqtx8715: sqrt(5.7576E-2000) = 2.399E-1000 underflow subnormal inexact rounded
- sqtx8716: sqrt(6.1281E-2000) = 2.475E-1000 underflow subnormal inexact rounded
- sqtx8717: sqrt(6.2475E-2000) = 2.499E-1000 underflow subnormal inexact rounded
- sqtx8718: sqrt(6.6332E-2000) = 2.575E-1000 underflow subnormal inexact rounded
- sqtx8719: sqrt(6.7574E-2000) = 2.599E-1000 underflow subnormal inexact rounded
- sqtx8720: sqrt(7.1583E-2000) = 2.675E-1000 underflow subnormal inexact rounded
- sqtx8721: sqrt(7.2873E-2000) = 2.699E-1000 underflow subnormal inexact rounded
- sqtx8722: sqrt(7.7034E-2000) = 2.775E-1000 underflow subnormal inexact rounded
- sqtx8723: sqrt(7.8372E-2000) = 2.799E-1000 underflow subnormal inexact rounded
- sqtx8724: sqrt(8.2685E-2000) = 2.875E-1000 underflow subnormal inexact rounded
- sqtx8725: sqrt(8.4071E-2000) = 2.899E-1000 underflow subnormal inexact rounded
- sqtx8726: sqrt(8.8536E-2000) = 2.975E-1000 underflow subnormal inexact rounded
- sqtx8727: sqrt(8.9970E-2000) = 2.999E-1000 underflow subnormal inexact rounded
- sqtx8728: sqrt(9.4587E-2000) = 3.075E-1000 underflow subnormal inexact rounded
- sqtx8729: sqrt(9.6069E-2000) = 3.099E-1000 underflow subnormal inexact rounded
- e_max=9
- e_min=-9
- precision=2
- sqtx9000: sqrt(9980.01) = 1.0E+2 inexact rounded
- precision=3
- sqtx9001: sqrt(9980.01) = 99.9
- precision=4
- sqtx9002: sqrt(9980.01) = 99.9
- precision=4
- sqtx9003: sqrt(11025) = 105
- precision=3
- sqtx9004: sqrt(11025) = 105
- precision=2
- sqtx9005: sqrt(11025) = 1.0E+2 inexact rounded
- precision=1
- sqtx9006: sqrt(11025) = 1E+2 inexact rounded
- precision=7
- sqtx9007: sqrt(1600000e1) = 4000
- precision=4
- sqtx9010: sqrt(0E-9) = 0.00000
- sqtx9011: sqrt(0E-10) = 0.00000
- sqtx9012: sqrt(0E-11) = 0.000000
- sqtx9013: sqrt(0E-12) = 0.000000
- sqtx9014: sqrt(0E-13) = 0E-7
- sqtx9015: sqrt(0E-14) = 0E-7
- sqtx9020: sqrt(0E-17) = 0E-9
- sqtx9021: sqrt(0E-20) = 0E-10
- sqtx9022: sqrt(0E-22) = 0E-11
- sqtx9023: sqrt(0E-24) = 0E-12
- sqtx9024: sqrt(0E-25) = 0E-12 clamped
- sqtx9025: sqrt(0E-26) = 0E-12 clamped
- sqtx9026: sqrt(0E-27) = 0E-12 clamped
- sqtx9027: sqrt(0E-28) = 0E-12 clamped
- sqtx9030: sqrt(0E+8) = 0E+4
- sqtx9031: sqrt(0E+10) = 0E+5
- sqtx9032: sqrt(0E+12) = 0E+6
- sqtx9033: sqrt(0E+14) = 0E+7
- sqtx9034: sqrt(0E+15) = 0E+7
- sqtx9035: sqrt(0E+16) = 0E+8
- sqtx9036: sqrt(0E+18) = 0E+9
- sqtx9037: sqrt(0E+19) = 0E+9
- sqtx9038: sqrt(0E+20) = 0E+9 clamped
- sqtx9039: sqrt(0E+21) = 0E+9 clamped
- sqtx9040: sqrt(0E+22) = 0E+9 clamped
- e_max=9
- e_min=-9
- precision=15
- clamp=true
- sqtx9045: sqrt(1) = 1.00000 clamped
- e_max=999
- e_min=-999
- precision=16
- sqtx9046: sqrt(10) = 3.162277660168379 inexact rounded
- sqtx9047: sqrt(10E-1) = 1.0
- sqtx9048: sqrt(10E-2) = 0.3162277660168379 inexact rounded
- sqtx9049: sqrt(10E-3) = 0.10
- e_max=999
- e_min=-999
- precision=400
- sqtx9050: sqrt(2) = 1.414213562373095048801688724209698078569671875376948073176679737990732478462107038850387534327641572735013846230912297024924836055850737212644121497099935831413222665927505592755799950501152782060571470109559971605970274534596862014728517418640889198609552329230484308714321450839762603627995251407989687253396546331808829640620615258352395054745750287759961729835575220337531857011354374603408498847 inexact rounded
- sqtx9051: sqrt(1089) = 33
- sqtx9052: sqrt(10.89) = 3.3
- sqtx9900: sqrt(#) = NaN invalid_operationTest file: data/scaleb.decTest
- Test file version: 2.59
- 
- precision=9
- round=half_up
- e_max=999
- e_min=-999
- scbx001: scaleb(7.50, 10) = 7.50E+10
- scbx002: scaleb(7.50, 3) = 7.50E+3
- scbx003: scaleb(7.50, 2) = 750
- scbx004: scaleb(7.50, 1) = 75.0
- scbx005: scaleb(7.50, 0) = 7.50
- scbx006: scaleb(7.50, -1) = 0.750
- scbx007: scaleb(7.50, -2) = 0.0750
- scbx008: scaleb(7.50, -10) = 7.50E-10
- scbx009: scaleb(-7.50, 3) = -7.50E+3
- scbx010: scaleb(-7.50, 2) = -750
- scbx011: scaleb(-7.50, 1) = -75.0
- scbx012: scaleb(-7.50, 0) = -7.50
- scbx013: scaleb(-7.50, -1) = -0.750
- scbx014: scaleb(Infinity, 1) = Infinity
- scbx015: scaleb(-Infinity, 2) = -Infinity
- scbx016: scaleb(Infinity, -1) = Infinity
- scbx017: scaleb(-Infinity, -2) = -Infinity
- scbx018: scaleb(10, Infinity) = NaN invalid_operation
- scbx019: scaleb(10, -Infinity) = NaN invalid_operation
- scbx021: scaleb(NaN, 1) = NaN
- scbx022: scaleb(-NaN, -1) = -NaN
- scbx023: scaleb(sNaN, 1) = NaN invalid_operation
- scbx024: scaleb(-sNaN, 1) = -NaN invalid_operation
- scbx025: scaleb(4, NaN) = NaN
- scbx026: scaleb(-Inf, -NaN) = -NaN
- scbx027: scaleb(4, sNaN) = NaN invalid_operation
- scbx028: scaleb(Inf, -sNaN) = -NaN invalid_operation
- scbx030: scaleb(1.23, 1) = 12.3
- scbx031: scaleb(1.23, 1.00) = NaN invalid_operation
- scbx032: scaleb(1.23, 1.1) = NaN invalid_operation
- scbx033: scaleb(1.23, 1.01) = NaN invalid_operation
- scbx034: scaleb(1.23, 0.01) = NaN invalid_operation
- scbx035: scaleb(1.23, 0.11) = NaN invalid_operation
- scbx036: scaleb(1.23, 0.999999999) = NaN invalid_operation
- scbx037: scaleb(1.23, -1) = 0.123
- scbx038: scaleb(1.23, -1.00) = NaN invalid_operation
- scbx039: scaleb(1.23, -1.1) = NaN invalid_operation
- scbx040: scaleb(1.23, -1.01) = NaN invalid_operation
- scbx041: scaleb(1.23, -0.01) = NaN invalid_operation
- scbx042: scaleb(1.23, -0.11) = NaN invalid_operation
- scbx043: scaleb(1.23, -0.999999999) = NaN invalid_operation
- scbx044: scaleb(1.23, 0.1) = NaN invalid_operation
- scbx045: scaleb(1.23, 1E+1) = NaN invalid_operation
- scbx046: scaleb(1.23, 1.1234E+6) = NaN invalid_operation
- scbx047: scaleb(1.23, 1.123E+4) = NaN invalid_operation
- scbx120: scaleb(1.23, 2015) = Infinity overflow inexact rounded
- scbx121: scaleb(1.23, 2016) = Infinity overflow inexact rounded
- scbx122: scaleb(1.23, 2017) = NaN invalid_operation
- scbx123: scaleb(1.23, 2018) = NaN invalid_operation
- scbx124: scaleb(1.23, -2015) = 0E-1007 underflow subnormal inexact rounded clamped
- scbx125: scaleb(1.23, -2016) = 0E-1007 underflow subnormal inexact rounded clamped
- scbx126: scaleb(1.23, -2017) = NaN invalid_operation
- scbx127: scaleb(1.23, -2018) = NaN invalid_operation
- scbx861: scaleb(NaN01, -Inf) = NaN1
- scbx862: scaleb(-NaN02, -1000) = -NaN2
- scbx863: scaleb(NaN03, 1000) = NaN3
- scbx864: scaleb(NaN04, Inf) = NaN4
- scbx865: scaleb(NaN05, NaN61) = NaN5
- scbx866: scaleb(-Inf, -NaN71) = -NaN71
- scbx867: scaleb(-1000, NaN81) = NaN81
- scbx868: scaleb(1000, NaN91) = NaN91
- scbx869: scaleb(Inf, NaN101) = NaN101
- scbx871: scaleb(sNaN011, -Inf) = NaN11 invalid_operation
- scbx872: scaleb(sNaN012, -1000) = NaN12 invalid_operation
- scbx873: scaleb(-sNaN013, 1000) = -NaN13 invalid_operation
- scbx874: scaleb(sNaN014, NaN171) = NaN14 invalid_operation
- scbx875: scaleb(sNaN015, sNaN181) = NaN15 invalid_operation
- scbx876: scaleb(NaN016, sNaN191) = NaN191 invalid_operation
- scbx877: scaleb(-Inf, sNaN201) = NaN201 invalid_operation
- scbx878: scaleb(-1000, sNaN211) = NaN211 invalid_operation
- scbx879: scaleb(1000, -sNaN221) = -NaN221 invalid_operation
- scbx880: scaleb(Inf, sNaN231) = NaN231 invalid_operation
- scbx881: scaleb(NaN025, sNaN241) = NaN241 invalid_operation
- scbx051: scaleb(7, -2) = 0.07
- scbx052: scaleb(-7, -2) = -0.07
- scbx053: scaleb(75, -2) = 0.75
- scbx054: scaleb(-75, -2) = -0.75
- scbx055: scaleb(7.50, -2) = 0.0750
- scbx056: scaleb(-7.50, -2) = -0.0750
- scbx057: scaleb(7.500, -2) = 0.07500
- scbx058: scaleb(-7.500, -2) = -0.07500
- scbx061: scaleb(7, -1) = 0.7
- scbx062: scaleb(-7, -1) = -0.7
- scbx063: scaleb(75, -1) = 7.5
- scbx064: scaleb(-75, -1) = -7.5
- scbx065: scaleb(7.50, -1) = 0.750
- scbx066: scaleb(-7.50, -1) = -0.750
- scbx067: scaleb(7.500, -1) = 0.7500
- scbx068: scaleb(-7.500, -1) = -0.7500
- scbx071: scaleb(7, 0) = 7
- scbx072: scaleb(-7, 0) = -7
- scbx073: scaleb(75, 0) = 75
- scbx074: scaleb(-75, 0) = -75
- scbx075: scaleb(7.50, 0) = 7.50
- scbx076: scaleb(-7.50, 0) = -7.50
- scbx077: scaleb(7.500, 0) = 7.500
- scbx078: scaleb(-7.500, 0) = -7.500
- scbx081: scaleb(7, 1) = 7E+1
- scbx082: scaleb(-7, 1) = -7E+1
- scbx083: scaleb(75, 1) = 7.5E+2
- scbx084: scaleb(-75, 1) = -7.5E+2
- scbx085: scaleb(7.50, 1) = 75.0
- scbx086: scaleb(-7.50, 1) = -75.0
- scbx087: scaleb(7.500, 1) = 75.00
- scbx088: scaleb(-7.500, 1) = -75.00
- scbx091: scaleb(7, 2) = 7E+2
- scbx092: scaleb(-7, 2) = -7E+2
- scbx093: scaleb(75, 2) = 7.5E+3
- scbx094: scaleb(-75, 2) = -7.5E+3
- scbx095: scaleb(7.50, 2) = 750
- scbx096: scaleb(-7.50, 2) = -750
- scbx097: scaleb(7.500, 2) = 750.0
- scbx098: scaleb(-7.500, 2) = -750.0
- scbx111: scaleb(0, 1) = 0E+1
- scbx112: scaleb(-0, 2) = -0E+2
- scbx113: scaleb(0E+4, 3) = 0E+7
- scbx114: scaleb(-0E+4, 4) = -0E+8
- scbx115: scaleb(0.0000, 5) = 0E+1
- scbx116: scaleb(-0.0000, 6) = -0E+2
- scbx117: scaleb(0E-141, 7) = 0E-134
- scbx118: scaleb(-0E-141, 8) = -0E-133
- scbx132: scaleb(9.99999999E+999, +999) = Infinity overflow inexact rounded
- scbx133: scaleb(9.99999999E+999, +10) = Infinity overflow inexact rounded
- scbx134: scaleb(9.99999999E+999, +1) = Infinity overflow inexact rounded
- scbx135: scaleb(9.99999999E+999, 0) = 9.99999999E+999
- scbx136: scaleb(9.99999999E+999, -1) = 9.99999999E+998
- scbx137: scaleb(1E-999, +1) = 1E-998
- scbx138: scaleb(1E-999, -0) = 1E-999
- scbx139: scaleb(1E-999, -1) = 1E-1000 subnormal
- scbx140: scaleb(1.00000000E-999, +1) = 1.00000000E-998
- scbx141: scaleb(1.00000000E-999, 0) = 1.00000000E-999
- scbx142: scaleb(1.00000000E-999, -1) = 1.0000000E-1000 subnormal rounded
- scbx143: scaleb(1E-1007, +1) = 1E-1006 subnormal
- scbx144: scaleb(1E-1007, -0) = 1E-1007 subnormal
- scbx145: scaleb(1E-1007, -1) = 0E-1007 underflow subnormal inexact rounded clamped
- scbx150: scaleb(-1E-1007, +1) = -1E-1006 subnormal
- scbx151: scaleb(-1E-1007, -0) = -1E-1007 subnormal
- scbx152: scaleb(-1E-1007, -1) = -0E-1007 underflow subnormal inexact rounded clamped
- scbx153: scaleb(-1.00000000E-999, +1) = -1.00000000E-998
- scbx154: scaleb(-1.00000000E-999, +0) = -1.00000000E-999
- scbx155: scaleb(-1.00000000E-999, -1) = -1.0000000E-1000 subnormal rounded
- scbx156: scaleb(-1E-999, +1) = -1E-998
- scbx157: scaleb(-1E-999, -0) = -1E-999
- scbx158: scaleb(-1E-999, -1) = -1E-1000 subnormal
- scbx159: scaleb(-9.99999999E+999, +1) = -Infinity overflow inexact rounded
- scbx160: scaleb(-9.99999999E+999, +0) = -9.99999999E+999
- scbx161: scaleb(-9.99999999E+999, -1) = -9.99999999E+998
- scbx162: scaleb(-9E+999, +1) = -Infinity overflow inexact rounded
- scbx163: scaleb(-1E+999, +1) = -Infinity overflow inexact rounded
- precision=34
- e_max=999999999
- e_min=-999999999Test file: data/shift.decTest
- Test file version: 2.59
- 
- precision=9
- round=half_up
- e_max=999
- e_min=-999
- shix001: shift(0, 0) = 0
- shix002: shift(0, 2) = 0
- shix003: shift(1, 2) = 100
- shix004: shift(1, 8) = 100000000
- shix005: shift(1, 9) = 0
- shix006: shift(1, -1) = 0
- shix007: shift(123456789, -1) = 12345678
- shix008: shift(123456789, -8) = 1
- shix009: shift(123456789, -9) = 0
- shix010: shift(0, -2) = 0
- shix011: shift(1, 1.5) = NaN invalid_operation
- shix012: shift(1, 1.0) = NaN invalid_operation
- shix013: shift(1, 0.1) = NaN invalid_operation
- shix014: shift(1, 0.0) = NaN invalid_operation
- shix015: shift(1, 1E+1) = NaN invalid_operation
- shix016: shift(1, 1E+99) = NaN invalid_operation
- shix017: shift(1, Inf) = NaN invalid_operation
- shix018: shift(1, -Inf) = NaN invalid_operation
- shix020: shift(1, -1000) = NaN invalid_operation
- shix021: shift(1, -10) = NaN invalid_operation
- shix022: shift(1, 10) = NaN invalid_operation
- shix023: shift(1, 1000) = NaN invalid_operation
- shix030: shift(123456789, -9) = 0
- shix031: shift(123456789, -8) = 1
- shix032: shift(123456789, -7) = 12
- shix033: shift(123456789, -6) = 123
- shix034: shift(123456789, -5) = 1234
- shix035: shift(123456789, -4) = 12345
- shix036: shift(123456789, -3) = 123456
- shix037: shift(123456789, -2) = 1234567
- shix038: shift(123456789, -1) = 12345678
- shix039: shift(123456789, -0) = 123456789
- shix040: shift(123456789, +0) = 123456789
- shix041: shift(123456789, +1) = 234567890
- shix042: shift(123456789, +2) = 345678900
- shix043: shift(123456789, +3) = 456789000
- shix044: shift(123456789, +4) = 567890000
- shix045: shift(123456789, +5) = 678900000
- shix046: shift(123456789, +6) = 789000000
- shix047: shift(123456789, +7) = 890000000
- shix048: shift(123456789, +8) = 900000000
- shix049: shift(123456789, +9) = 0
- shix051: shift(34, 8) = 400000000
- shix052: shift(12, 9) = 0
- shix053: shift(123456789, -2) = 1234567
- shix054: shift(123456789, 0) = 123456789
- shix055: shift(123456789, +2) = 345678900
- shix060: shift(0E-10, +9) = 0E-10
- shix061: shift(0E-10, -9) = 0E-10
- shix062: shift(0.000, +9) = 0.000
- shix063: shift(0.000, -9) = 0.000
- shix064: shift(0E+10, +9) = 0E+10
- shix065: shift(0E+10, -9) = 0E+10
- shix066: shift(-0E-10, +9) = -0E-10
- shix067: shift(-0E-10, -9) = -0E-10
- shix068: shift(-0.000, +9) = -0.000
- shix069: shift(-0.000, -9) = -0.000
- shix070: shift(-0E+10, +9) = -0E+10
- shix071: shift(-0E+10, -9) = -0E+10
- shix141: shift(9.99999999E+999, -1) = 9.9999999E+998
- shix142: shift(9.99999999E+999, -8) = 9E+991
- shix143: shift(9.99999999E+999, 1) = 9.99999990E+999
- shix144: shift(9.99999999E+999, 8) = 9.00000000E+999
- shix145: shift(1E-999, -1) = 0E-999
- shix146: shift(1E-999, -8) = 0E-999
- shix147: shift(1E-999, 1) = 1.0E-998
- shix148: shift(1E-999, 8) = 1.00000000E-991
- shix151: shift(1.00000000E-999, -1) = 1.0000000E-1000
- shix152: shift(1.00000000E-999, -8) = 1E-1007
- shix153: shift(1.00000000E-999, 1) = 0E-1007
- shix154: shift(1.00000000E-999, 8) = 0E-1007
- shix155: shift(9.00000000E-999, -1) = 9.0000000E-1000
- shix156: shift(9.00000000E-999, -8) = 9E-1007
- shix157: shift(9.00000000E-999, 1) = 0E-1007
- shix158: shift(9.00000000E-999, 8) = 0E-1007
- shix160: shift(1E-1007, -1) = 0E-1007
- shix161: shift(1E-1007, -8) = 0E-1007
- shix162: shift(1E-1007, 1) = 1.0E-1006
- shix163: shift(1E-1007, 8) = 1.00000000E-999
- shix171: shift(-9.99999999E+999, -1) = -9.9999999E+998
- shix172: shift(-9.99999999E+999, -8) = -9E+991
- shix173: shift(-9.99999999E+999, 1) = -9.99999990E+999
- shix174: shift(-9.99999999E+999, 8) = -9.00000000E+999
- shix175: shift(-1E-999, -1) = -0E-999
- shix176: shift(-1E-999, -8) = -0E-999
- shix177: shift(-1E-999, 1) = -1.0E-998
- shix178: shift(-1E-999, 8) = -1.00000000E-991
- shix181: shift(-1.00000000E-999, -1) = -1.0000000E-1000
- shix182: shift(-1.00000000E-999, -8) = -1E-1007
- shix183: shift(-1.00000000E-999, 1) = -0E-1007
- shix184: shift(-1.00000000E-999, 8) = -0E-1007
- shix185: shift(-9.00000000E-999, -1) = -9.0000000E-1000
- shix186: shift(-9.00000000E-999, -8) = -9E-1007
- shix187: shift(-9.00000000E-999, 1) = -0E-1007
- shix188: shift(-9.00000000E-999, 8) = -0E-1007
- shix190: shift(-1E-1007, -1) = -0E-1007
- shix191: shift(-1E-1007, -8) = -0E-1007
- shix192: shift(-1E-1007, 1) = -1.0E-1006
- shix193: shift(-1E-1007, 8) = -1.00000000E-999
- shix201: shift(-0, 0) = -0
- shix202: shift(-0, 2) = -0
- shix203: shift(-1, 2) = -100
- shix204: shift(-1, 8) = -100000000
- shix205: shift(-1, 9) = -0
- shix206: shift(-1, -1) = -0
- shix207: shift(-123456789, -1) = -12345678
- shix208: shift(-123456789, -8) = -1
- shix209: shift(-123456789, -9) = -0
- shix210: shift(-0, -2) = -0
- shix211: shift(-0, -0) = -0
- shix781: shift(-Inf, -8) = -Infinity
- shix782: shift(-Inf, -1) = -Infinity
- shix783: shift(-Inf, -0) = -Infinity
- shix784: shift(-Inf, 0) = -Infinity
- shix785: shift(-Inf, 1) = -Infinity
- shix786: shift(-Inf, 8) = -Infinity
- shix787: shift(-1000, -Inf) = NaN invalid_operation
- shix788: shift(-Inf, -Inf) = NaN invalid_operation
- shix789: shift(-1, -Inf) = NaN invalid_operation
- shix790: shift(-0, -Inf) = NaN invalid_operation
- shix791: shift(0, -Inf) = NaN invalid_operation
- shix792: shift(1, -Inf) = NaN invalid_operation
- shix793: shift(1000, -Inf) = NaN invalid_operation
- shix794: shift(Inf, -Inf) = NaN invalid_operation
- shix800: shift(Inf, -Inf) = NaN invalid_operation
- shix801: shift(Inf, -8) = Infinity
- shix802: shift(Inf, -1) = Infinity
- shix803: shift(Inf, -0) = Infinity
- shix804: shift(Inf, 0) = Infinity
- shix805: shift(Inf, 1) = Infinity
- shix806: shift(Inf, 8) = Infinity
- shix807: shift(Inf, Inf) = NaN invalid_operation
- shix808: shift(-1000, Inf) = NaN invalid_operation
- shix809: shift(-Inf, Inf) = NaN invalid_operation
- shix810: shift(-1, Inf) = NaN invalid_operation
- shix811: shift(-0, Inf) = NaN invalid_operation
- shix812: shift(0, Inf) = NaN invalid_operation
- shix813: shift(1, Inf) = NaN invalid_operation
- shix814: shift(1000, Inf) = NaN invalid_operation
- shix815: shift(Inf, Inf) = NaN invalid_operation
- shix821: shift(NaN, -Inf) = NaN
- shix822: shift(NaN, -1000) = NaN
- shix823: shift(NaN, -1) = NaN
- shix824: shift(NaN, -0) = NaN
- shix825: shift(NaN, 0) = NaN
- shix826: shift(NaN, 1) = NaN
- shix827: shift(NaN, 1000) = NaN
- shix828: shift(NaN, Inf) = NaN
- shix829: shift(NaN, NaN) = NaN
- shix830: shift(-Inf, NaN) = NaN
- shix831: shift(-1000, NaN) = NaN
- shix832: shift(-1, NaN) = NaN
- shix833: shift(-0, NaN) = NaN
- shix834: shift(0, NaN) = NaN
- shix835: shift(1, NaN) = NaN
- shix836: shift(1000, NaN) = NaN
- shix837: shift(Inf, NaN) = NaN
- shix841: shift(sNaN, -Inf) = NaN invalid_operation
- shix842: shift(sNaN, -1000) = NaN invalid_operation
- shix843: shift(sNaN, -1) = NaN invalid_operation
- shix844: shift(sNaN, -0) = NaN invalid_operation
- shix845: shift(sNaN, 0) = NaN invalid_operation
- shix846: shift(sNaN, 1) = NaN invalid_operation
- shix847: shift(sNaN, 1000) = NaN invalid_operation
- shix848: shift(sNaN, NaN) = NaN invalid_operation
- shix849: shift(sNaN, sNaN) = NaN invalid_operation
- shix850: shift(NaN, sNaN) = NaN invalid_operation
- shix851: shift(-Inf, sNaN) = NaN invalid_operation
- shix852: shift(-1000, sNaN) = NaN invalid_operation
- shix853: shift(-1, sNaN) = NaN invalid_operation
- shix854: shift(-0, sNaN) = NaN invalid_operation
- shix855: shift(0, sNaN) = NaN invalid_operation
- shix856: shift(1, sNaN) = NaN invalid_operation
- shix857: shift(1000, sNaN) = NaN invalid_operation
- shix858: shift(Inf, sNaN) = NaN invalid_operation
- shix859: shift(NaN, sNaN) = NaN invalid_operation
- shix861: shift(NaN1, -Inf) = NaN1
- shix862: shift(+NaN2, -1000) = NaN2
- shix863: shift(NaN3, 1000) = NaN3
- shix864: shift(NaN4, Inf) = NaN4
- shix865: shift(NaN5, +NaN6) = NaN5
- shix866: shift(-Inf, NaN7) = NaN7
- shix867: shift(-1000, NaN8) = NaN8
- shix868: shift(1000, NaN9) = NaN9
- shix869: shift(Inf, +NaN10) = NaN10
- shix871: shift(sNaN11, -Inf) = NaN11 invalid_operation
- shix872: shift(sNaN12, -1000) = NaN12 invalid_operation
- shix873: shift(sNaN13, 1000) = NaN13 invalid_operation
- shix874: shift(sNaN14, NaN17) = NaN14 invalid_operation
- shix875: shift(sNaN15, sNaN18) = NaN15 invalid_operation
- shix876: shift(NaN16, sNaN19) = NaN19 invalid_operation
- shix877: shift(-Inf, +sNaN20) = NaN20 invalid_operation
- shix878: shift(-1000, sNaN21) = NaN21 invalid_operation
- shix879: shift(1000, sNaN22) = NaN22 invalid_operation
- shix880: shift(Inf, sNaN23) = NaN23 invalid_operation
- shix881: shift(+NaN25, +sNaN24) = NaN24 invalid_operation
- shix882: shift(-NaN26, NaN28) = -NaN26
- shix883: shift(-sNaN27, sNaN29) = -NaN27 invalid_operation
- shix884: shift(1000, -NaN30) = -NaN30
- shix885: shift(1000, -sNaN31) = -NaN31 invalid_operation
- Testing `Decimal'.
- This run has ID `658P8MS9'.
- 
-   [OK]          of_yojson          0   int.
-   [OK]          of_yojson          1   int.
-   [OK]          of_yojson          2   float.
-   [OK]          of_yojson          3   float.
-   [OK]          of_yojson          4   string.
-   [OK]          of_yojson          5   other.
-   [OK]          to_yojson          0   pi.
-   [OK]          of_float           0   integral.
-   [OK]          of_float           1   nan.
-   [OK]          of_float           2   pos infinity.
-   [OK]          of_float           3   neg infinity.
-   [OK]          of_float           4   neg 0.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/decimal.1.0.2/_build/default/test/_build/_tests/Decimal'.
- Test Successful in 0.001s. 12 tests run.
-> compiled  decimal.1.0.2
-> removed   decimal.1.0.2
-> installed decimal.1.0.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 01:14.47 ---> saved as "17a08d391af694471c94a33c1cd38749babd7a59c8ac46973a50b90833afabf5"
Job succeeded
2026-03-02 01:14.53: Job succeeded