(not at the head of any monitored branch or PR)
2026-04-30 02:04.43: New job: test DAGaml.0.01 with dune.3.23.0~alpha2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29824/head (89a6ae888498500bf7c0fc05361da936fc6acacf)
                              on debian-13-ocaml-4.14/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29824/head" && git reset --hard 89a6ae88
git fetch origin master
git merge --no-edit d1c56642b8ca7e1166c90bfe0c74f38007bbad58
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn dune.3.23.0~alpha2 3.23.0~alpha2
RUN opam reinstall dune.3.23.0~alpha2; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'dune.3.23.0~alpha2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall DAGaml.0.01; \
    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" != 'DAGaml.0.01' && 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 DAGaml.0.01) || true
RUN opam reinstall --with-test --verbose DAGaml.0.01; \
    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" != 'DAGaml.0.01' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

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

2026-04-30 02:04.43: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353-dune.3.23.0~alpha2-DAGaml.0.01-89a6ae888498500bf7c0fc05361da936fc6acacf"
2026-04-30 02:04.43: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn dune.3.23.0~alpha2 3.23.0~alpha2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.23.0~alpha2;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'dune.3.23.0~alpha2' && 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 DAGaml.0.01;\
             \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\" != 'DAGaml.0.01' && 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 DAGaml.0.01) || true"))
 (run (shell  "opam reinstall --with-test --verbose DAGaml.0.01;\
             \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\" != 'DAGaml.0.01' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-04-30 02:04.43: Waiting for resource in pool OCluster
2026-04-30 08:44.49: Waiting for worker…
2026-04-30 08:46.58: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
Updating files:  57% (10838/18887)
Updating files:  58% (10955/18887)
Updating files:  59% (11144/18887)
Updating files:  60% (11333/18887)
Updating files:  61% (11522/18887)
Updating files:  62% (11710/18887)
Updating files:  63% (11899/18887)
Updating files:  64% (12088/18887)
Updating files:  65% (12277/18887)
Updating files:  66% (12466/18887)
Updating files:  67% (12655/18887)
Updating files:  68% (12844/18887)
Updating files:  69% (13033/18887)
Updating files:  70% (13221/18887)
Updating files:  71% (13410/18887)
Updating files:  72% (13599/18887)
Updating files:  73% (13788/18887)
Updating files:  74% (13977/18887)
Updating files:  75% (14166/18887)
Updating files:  76% (14355/18887)
Updating files:  77% (14543/18887)
Updating files:  78% (14732/18887)
Updating files:  79% (14921/18887)
Updating files:  80% (15110/18887)
Updating files:  81% (15299/18887)
Updating files:  82% (15488/18887)
Updating files:  83% (15677/18887)
Updating files:  84% (15866/18887)
Updating files:  85% (16054/18887)
Updating files:  86% (16243/18887)
Updating files:  87% (16432/18887)
Updating files:  88% (16621/18887)
Updating files:  89% (16810/18887)
Updating files:  90% (16999/18887)
Updating files:  91% (17188/18887)
Updating files:  92% (17377/18887)
Updating files:  93% (17565/18887)
Updating files:  94% (17754/18887)
Updating files:  95% (17943/18887)
Updating files:  96% (18132/18887)
Updating files:  97% (18321/18887)
Updating files:  98% (18510/18887)
Updating files:  99% (18699/18887)
Updating files: 100% (18887/18887)
Updating files: 100% (18887/18887), done.
HEAD is now at d1c56642b8 Merge pull request #29820 from jmid/core-0.17.1-bound
Merge made by the 'ort' strategy.
 .../chrome-trace/chrome-trace.3.23.0~alpha2/opam   | 39 +++++++++++
 .../dune-action-plugin.3.23.0~alpha2/opam          | 52 ++++++++++++++
 .../dune-action-trace.3.23.0~alpha2/opam           | 39 +++++++++++
 .../dune-build-info.3.23.0~alpha2/opam             | 45 ++++++++++++
 .../dune-configurator.3.23.0~alpha2/opam           | 49 +++++++++++++
 packages/dune-glob/dune-glob.3.23.0~alpha2/opam    | 42 ++++++++++++
 .../dune-private-libs.3.23.0~alpha2/opam           | 50 ++++++++++++++
 .../dune-rpc-lwt/dune-rpc-lwt.3.23.0~alpha2/opam   | 41 +++++++++++
 packages/dune-rpc/dune-rpc.3.23.0~alpha2/opam      | 44 ++++++++++++
 packages/dune-site/dune-site.3.23.0~alpha2/opam    | 37 ++++++++++
 packages/dune/dune.3.23.0~alpha2/opam              | 80 ++++++++++++++++++++++
 packages/dyn/dyn.3.23.0~alpha2/opam                | 40 +++++++++++
 packages/fs-io/fs-io.3.23.0~alpha2/opam            | 39 +++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.23.0~alpha2/opam  | 43 ++++++++++++
 packages/ordering/ordering.3.23.0~alpha2/opam      | 38 ++++++++++
 packages/stdune/stdune.3.23.0~alpha2/opam          | 46 +++++++++++++
 .../top-closure/top-closure.3.23.0~alpha2/opam     | 38 ++++++++++
 packages/xdg/xdg.3.23.0~alpha2/opam                | 39 +++++++++++
 18 files changed, 801 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.23.0~alpha2/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.23.0~alpha2/opam
 create mode 100644 packages/dune-action-trace/dune-action-trace.3.23.0~alpha2/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.23.0~alpha2/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.23.0~alpha2/opam
 create mode 100644 packages/dune-glob/dune-glob.3.23.0~alpha2/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.23.0~alpha2/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.23.0~alpha2/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.23.0~alpha2/opam
 create mode 100644 packages/dune-site/dune-site.3.23.0~alpha2/opam
 create mode 100644 packages/dune/dune.3.23.0~alpha2/opam
 create mode 100644 packages/dyn/dyn.3.23.0~alpha2/opam
 create mode 100644 packages/fs-io/fs-io.3.23.0~alpha2/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.23.0~alpha2/opam
 create mode 100644 packages/ordering/ordering.3.23.0~alpha2/opam
 create mode 100644 packages/stdune/stdune.3.23.0~alpha2/opam
 create mode 100644 packages/top-closure/top-closure.3.23.0~alpha2/opam
 create mode 100644 packages/xdg/xdg.3.23.0~alpha2/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353)
2026-04-30 08:47.03 ---> using "59750879172620501422dd230c4db220684ca7fe3e97409754eb72dcd3390183" from cache

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-30 08:47.03 ---> using "b9ebb375f27da820f646269f579489455309b96c19083cd92f7f6ddd05a4b5f2" from cache

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

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

Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-30 08:47.03 ---> using "a861010f9e8d58738e62217a8c0fc067b85ae67b915e1ef93e08d814bb3c914c" 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.1
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.3"}]
# compiler-packages    ocaml-base-compiler.4.14.3, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.3
2026-04-30 08:47.03 ---> using "a880c606232c92d84d818c349c45696fe9be139917bfa5f7b1065b497e8df441" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-04-30 08:47.03 ---> using "47c085e53aa5880966ff9fc1e1e12a4661255166181f7931a397db06034201cf" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-30 08:47.05 ---> using "4f46738dfb91aa0cd6670022d574de26b7ba05050d8f85957ea4872d96399e01" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-30 08:47.05 ---> using "f445e8c26fbca2dd0e343fb9cad949aab8e50ebe8f19361a10c799b6322ab39c" 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 [129 kB]
- Fetched 219 kB in 0s (1237 kB/s)
- Reading package lists...
2026-04-30 08:47.05 ---> using "b966a5b49a15ba3eb63ca44315c18e89b0e8b1ab5327a74622eb8f27705503f7" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.23.0~alpha2 3.23.0~alpha2"))
dune is now pinned to version 3.23.0~alpha2
2026-04-30 08:47.05 ---> using "25765793fc7cef20054e052a9de3d7d38466f3811e35fee48d28bad9710db3b2" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune.3.23.0~alpha2;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'dune.3.23.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dune.3.23.0~alpha2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install dune 3.23.0~alpha2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.23.0~alpha2  (cached)
-> installed dune.3.23.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 08:47.05 ---> using "8638839e5ae5cf3f1965d4f7cf42b88935780d5bcff7e41a79deffdd572bdcbf" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall DAGaml.0.01;\
                        \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\" != 'DAGaml.0.01' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
DAGaml.0.01 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 6 packages
  - install DAGaml     0.01
  - install GuaCaml    0.03.01 [required by DAGaml]
  - install mlbdd      0.7.3   [required by Snowflake]
  - install ocamlbuild 0.16.1  [required by DAGaml]
  - install ocamlfind  1.9.8   [required by DAGaml]
  - install Snowflake  0.02.02 [required by DAGaml]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved DAGaml.0.01  (https://opam.ocaml.org/cache)
-> retrieved GuaCaml.0.03.01  (https://opam.ocaml.org/cache)
-> retrieved mlbdd.0.7.3  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved Snowflake.0.02.02  (cached)
-> installed mlbdd.0.7.3
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed GuaCaml.0.03.01
-> installed Snowflake.0.02.02
-> installed DAGaml.0.01
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 08:50.41 ---> saved as "fbcf96f1928dd4b8ed0a111e9e14282ca584514e7464e015a364e6d2d13b2f2b"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test DAGaml.0.01) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile DAGaml 0.01

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved DAGaml.0.01  (https://opam.ocaml.org/cache)
-> removed   DAGaml.0.01
-> installed DAGaml.0.01
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 08:52.18 ---> saved as "176c55b164c83136884e6e243151fcd26eadaefeb60705c181269b91921cc97f"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [DAGaml.0.01: extract]
-> retrieved DAGaml.0.01  (cached)
Processing  2/4: [DAGaml: make]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" (CWD=/home/opam/.opam/4.14/.opam-switch/build/DAGaml.0.01)
- rm -rf bin || true &> /dev/null
- mkdir bin || true &> /dev/null
- (cd src && make)
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/DAGaml.0.01/src'
- rm -rf ../bin
- mkdir ../bin
- ./format.sh
- ocamlbuild -r -j 72   -Is src,core,ldd_model,io,conv,oops,circuits -use-ocamlfind -package GuaCaml -package unix\
-   test/noreg_ldd_B_o_u.native \
-   test/noreg_ldd_B_o_nu.native \
-   test/noreg_ldd_B_o_c10.native \
-   test/noreg_ldd_B_o_c10.d.byte \
-   test/noreg_ldd_B_o_uc0.native \
-   test/noreg_ldd_B_o_nucx.native \
-   test/noreg_ldd_B_u_nu.native \
-   test/noreg_ldd_B_u_nux.native \
-   test/noreg_ldd_B_u_nuc.native \
-   test/noreg_ldd_B_u_nuc.d.byte \
-   test/noreg_ldd_B_u_nucx.native \
-   test/noreg_ldd_B_u_nucx.d.byte
- + ocamlfind ocamlc -config
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules test/noreg_ldd_B_o_u.ml > test/noreg_ldd_B_o_u.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_o_u.ml > ldd_model/ldd_B_o_u.ml.depends
- + ocamlfind ocamldep -package GuaCaml -package unix -modules core/ariUbdag.ml > core/ariUbdag.ml.depends
- + ocamlfind ocamldep -package GuaCaml -package unix -modules core/udag.ml > core/udag.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I core -I circuits -I conv -I io -I ldd_model -I oops -I src -o core/udag.cmo core/udag.ml
- + ocamlfind ocamldep -package GuaCaml -package unix -modules core/ariUbdagTC.ml > core/ariUbdagTC.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I core -I circuits -I conv -I io -I ldd_model -I oops -I src -o core/ariUbdag.cmo core/ariUbdag.ml
- + ocamlfind ocamldep -package GuaCaml -package unix -modules circuits/cnax.ml > circuits/cnax.ml.depends
- + ocamlfind ocamldep -package GuaCaml -package unix -modules core/binUbdag.ml > core/binUbdag.ml.depends
- + ocamlfind ocamldep -package GuaCaml -package unix -modules core/binUbdagT.ml > core/binUbdagT.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I core -I circuits -I conv -I io -I ldd_model -I oops -I src -o core/binUbdag.cmo core/binUbdag.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules io/cnfTypes.ml > io/cnfTypes.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules io/ioTypes.ml > io/ioTypes.ml.depends
- + ocamlfind ocamldep -package GuaCaml -package unix -modules circuits/expr.ml > circuits/expr.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o circuits/expr.cmo circuits/expr.ml
- + ocamlfind ocamldep -package GuaCaml -package unix -modules circuits/nax.ml > circuits/nax.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I core -I circuits -I conv -I io -I ldd_model -I oops -I src -o core/binUbdagT.cmo core/binUbdagT.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules io/cmdTypes.ml > io/cmdTypes.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/ioTypes.cmo io/ioTypes.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/cmdTypes.cmo io/cmdTypes.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/cnfTypes.cmo io/cnfTypes.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o circuits/nax.cmo circuits/nax.ml
- + ocamlfind ocamldep -package GuaCaml -package unix -modules circuits/cnaxOops.ml > circuits/cnaxOops.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o circuits/cnax.cmo circuits/cnax.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules oops/loadCnf.ml > oops/loadCnf.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules io/cnfUtils.ml > io/cnfUtils.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules io/strDumpCnf.ml > io/strDumpCnf.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strDumpCnf.cmo io/strDumpCnf.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules oops/OOPS.ml > oops/OOPS.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules oops/QEOPS.ml > oops/QEOPS.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I oops -I circuits -I conv -I core -I io -I ldd_model -I src -o oops/OOPS.cmo oops/OOPS.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules io/strLoadCnf.ml > io/strLoadCnf.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/cnfUtils.cmo io/cnfUtils.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I oops -I circuits -I conv -I core -I io -I ldd_model -I src -o oops/QEOPS.cmo oops/QEOPS.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strLoadCnf.cmo io/strLoadCnf.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strLoadCnf.cmo io/strLoadCnf.ml
- File "io/strLoadCnf.ml", line 7, characters 26-34:
- 7 | let my_lexer (stream:char Stream.t) : BasicLexer.stream =
-                               ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCnf.ml", line 36, characters 8-19:
- 36 |   match Stream.peek stream with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCnf.ml", line 38, characters 4-15:
- 38 |     Stream.junk stream;
-          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCnf.ml", line 42, characters 4-15:
- 42 |     Stream.junk stream;
-          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCnf.ml", line 83, characters 28-45:
- 83 |   let cnf = load_qbf ~sort (Stream.of_channel file) in
-                                  ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCnf.ml", line 90, characters 24-41:
- 90 |   let cnf = load ~sort (Stream.of_channel file) in
-                              ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules oops/sUInt.ml > oops/sUInt.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules oops/vUInt.ml > oops/vUInt.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I oops -I circuits -I conv -I core -I io -I ldd_model -I src -o oops/loadCnf.cmo oops/loadCnf.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I oops -I circuits -I conv -I core -I io -I ldd_model -I src -o oops/sUInt.cmo oops/sUInt.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I oops -I circuits -I conv -I core -I io -I ldd_model -I src -o oops/vUInt.cmo oops/vUInt.ml
- + ocamlfind ocamldep -package GuaCaml -package unix -modules conv/convUtils.ml > conv/convUtils.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o circuits/cnaxOops.cmo circuits/cnaxOops.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules io/ioUtils.ml > io/ioUtils.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules io/strDumpVerilog.ml > io/strDumpVerilog.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/ioUtils.cmo io/ioUtils.ml
- + ocamlfind ocamldep -package GuaCaml -package unix -modules circuits/nnfExpr.ml > circuits/nnfExpr.ml.depends
- + ocamlfind ocamldep -package GuaCaml -package unix -modules circuits/rExpr.ml > circuits/rExpr.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o circuits/nnfExpr.cmo circuits/nnfExpr.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o circuits/rExpr.cmo circuits/rExpr.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strDumpVerilog.cmo io/strDumpVerilog.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_o_u_gops.ml > ldd_model/ldd_B_o_u_gops.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_o_u_types.ml > ldd_model/ldd_B_o_u_types.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/tacxTypes.ml > ldd_model/tacxTypes.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_u_types.cmo ldd_model/ldd_B_o_u_types.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/tacxTypes.cmo ldd_model/tacxTypes.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules oops/OfExprOfOops.ml > oops/OfExprOfOops.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules io/strLoadPla.ml > io/strLoadPla.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules io/strLoadVerilog.ml > io/strLoadVerilog.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strLoadPla.cmo io/strLoadPla.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strLoadVerilog.cmo io/strLoadVerilog.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strLoadPla.cmo io/strLoadPla.ml
- File "io/strLoadPla.ml", line 11, characters 28-36:
- 11 | let my_lexer stream : token Stream.t =
-                                  ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 14, characters 14-25:
- 14 |     try match Stream.next stream with
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 19, characters 28-39:
- 19 |   let rec spaces () = match Stream.peek stream with
-                                  ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 21, characters 40-51:
- 21 |   | Some head -> if is_space head then (Stream.junk stream; spaces ()) else ()
-                                              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 25, characters 26-37:
- 25 |     let rec aux s = match Stream.peek stream with
-                                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 30, characters 14-25:
- 30 |         else (Stream.junk stream; aux (c::s))
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 40, characters 10-21:
- 40 |     match Stream.peek stream with
-                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 50, characters 14-25:
- 50 |         then (Stream.junk stream; Sym head)
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 55, characters 2-13:
- 55 |   Stream.from aux
-        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 61, characters 17-28:
- 61 |       let char = Stream.next stream in
-                       ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 66, characters 5-16:
- 66 |   in Stream.from aux
-           ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 73, characters 34-45:
- 73 | let rec parse_leaf stream = match Stream.next stream with
-                                        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 91, characters 8-19:
- 91 |   match Stream.next stream with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 114, characters 31-42:
- 114 | let parse_ident stream = match Stream.next stream with
-                                      ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 119, characters 28-39:
- 119 |   let rec aux carry = match Stream.peek stream with
-                                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 124, characters 6-17:
- 124 |       Stream.junk stream;
-             ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 130, characters 8-19:
- 130 |   match Stream.next stream with
-               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 134, characters 37-48:
- 134 | let parse_braket_list stream = match Stream.next stream with
-                                            ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 138, characters 10-21:
- 138 |     match Stream.next stream with
-                 ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 145, characters 28-39:
- 145 |   let rec aux carry = match Stream.next stream with
-                                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 151, characters 35-46:
- 151 | let parse_semicolon stream = match Stream.next stream with
-                                          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 160, characters 29-40:
- 160 | let parse_kwd stream = match Stream.next stream with
-                                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 164, characters 29-40:
- 164 | let parse_sym stream = match Stream.next stream with
-                                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 178, characters 12-23:
- 178 |       match Stream.next stream with
-                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 230, characters 20-37:
- 230 |   let mexpr = load (Stream.of_channel fin) in
-                           ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strLoadVerilog.cmo io/strLoadVerilog.ml
- File "io/strLoadVerilog.ml", line 16, characters 28-36:
- 16 | let my_lexer stream : token Stream.t =
-                                  ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 18, characters 28-39:
- 18 |   let rec spaces () = match Stream.peek stream with
-                                  ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 20, characters 40-51:
- 20 |   | Some head -> if is_space head then (Stream.junk stream; spaces ()) else ()
-                                              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 35, characters 26-37:
- 35 |     let rec aux s = match Stream.peek stream with
-                                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 40, characters 14-25:
- 40 |         else (Stream.junk stream; aux (c::s))
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 50, characters 10-21:
- 50 |     match Stream.peek stream with
-                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 56, characters 12-23:
- 56 |       then (Stream.junk stream; Sym head)
-                  ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 60, characters 2-13:
- 60 |   Stream.from aux
-        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 67, characters 34-45:
- 67 | let rec parse_leaf stream = match Stream.next stream with
-                                        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 95, characters 8-19:
- 95 |   match Stream.next stream with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 118, characters 31-42:
- 118 | let parse_ident stream = match Stream.next stream with
-                                      ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 123, characters 28-39:
- 123 |   let rec aux carry = match Stream.peek stream with
-                                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 128, characters 6-17:
- 128 |       Stream.junk stream;
-             ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 134, characters 8-19:
- 134 |   match Stream.next stream with
-               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 138, characters 37-48:
- 138 | let parse_braket_list stream = match Stream.next stream with
-                                            ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 142, characters 10-21:
- 142 |     match Stream.next stream with
-                 ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 149, characters 35-46:
- 149 | let parse_semicolon stream = match Stream.next stream with
-                                          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 158, characters 29-40:
- 158 | let parse_kwd stream = match Stream.next stream with
-                                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 162, characters 29-40:
- 162 | let parse_sym stream = match Stream.next stream with
-                                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 177, characters 8-19:
- 177 |   match Stream.next stream with
-               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 215, characters 25-36:
- 215 |   let rec aux () = match Stream.next stream with
-                                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 243, characters 20-37:
- 243 |   let mexpr = load (Stream.of_channel fin) in
-                           ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules oops/OopsGcOfOops.ml > oops/OopsGcOfOops.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I core -I circuits -I conv -I io -I ldd_model -I oops -I src -o core/ariUbdagTC.cmo core/ariUbdagTC.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I conv -I circuits -I core -I io -I ldd_model -I oops -I src -o conv/convUtils.cmo conv/convUtils.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_u_gops.cmo ldd_model/ldd_B_o_u_gops.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I oops -I circuits -I conv -I core -I io -I ldd_model -I src -o oops/OfExprOfOops.cmo oops/OfExprOfOops.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I oops -I circuits -I conv -I core -I io -I ldd_model -I src -o oops/OopsGcOfOops.cmo oops/OopsGcOfOops.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_u.cmo ldd_model/ldd_B_o_u.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I test -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o test/noreg_ldd_B_o_u.cmo test/noreg_ldd_B_o_u.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I core -I circuits -I conv -I io -I ldd_model -I oops -I src -o core/udag.cmx core/udag.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I core -I circuits -I conv -I io -I ldd_model -I oops -I src -o core/ariUbdag.cmx core/ariUbdag.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I core -I circuits -I conv -I io -I ldd_model -I oops -I src -o core/binUbdag.cmx core/binUbdag.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o circuits/expr.cmx circuits/expr.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I core -I circuits -I conv -I io -I ldd_model -I oops -I src -o core/binUbdagT.cmx core/binUbdagT.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/ioTypes.cmx io/ioTypes.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/cmdTypes.cmx io/cmdTypes.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/cnfTypes.cmx io/cnfTypes.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o circuits/nax.cmx circuits/nax.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o circuits/cnax.cmx circuits/cnax.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strDumpCnf.cmx io/strDumpCnf.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I oops -I circuits -I conv -I core -I io -I ldd_model -I src -o oops/OOPS.cmx oops/OOPS.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/cnfUtils.cmx io/cnfUtils.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I oops -I circuits -I conv -I core -I io -I ldd_model -I src -o oops/QEOPS.cmx oops/QEOPS.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strLoadCnf.cmx io/strLoadCnf.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strLoadCnf.cmx io/strLoadCnf.ml
- File "io/strLoadCnf.ml", line 7, characters 26-34:
- 7 | let my_lexer (stream:char Stream.t) : BasicLexer.stream =
-                               ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCnf.ml", line 36, characters 8-19:
- 36 |   match Stream.peek stream with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCnf.ml", line 38, characters 4-15:
- 38 |     Stream.junk stream;
-          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCnf.ml", line 42, characters 4-15:
- 42 |     Stream.junk stream;
-          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCnf.ml", line 83, characters 28-45:
- 83 |   let cnf = load_qbf ~sort (Stream.of_channel file) in
-                                  ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCnf.ml", line 90, characters 24-41:
- 90 |   let cnf = load ~sort (Stream.of_channel file) in
-                              ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I oops -I circuits -I conv -I core -I io -I ldd_model -I src -o oops/loadCnf.cmx oops/loadCnf.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I oops -I circuits -I conv -I core -I io -I ldd_model -I src -o oops/sUInt.cmx oops/sUInt.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I oops -I circuits -I conv -I core -I io -I ldd_model -I src -o oops/vUInt.cmx oops/vUInt.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o circuits/cnaxOops.cmx circuits/cnaxOops.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/ioUtils.cmx io/ioUtils.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o circuits/nnfExpr.cmx circuits/nnfExpr.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o circuits/rExpr.cmx circuits/rExpr.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strDumpVerilog.cmx io/strDumpVerilog.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_u_types.cmx ldd_model/ldd_B_o_u_types.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/tacxTypes.cmx ldd_model/tacxTypes.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strLoadPla.cmx io/strLoadPla.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strLoadVerilog.cmx io/strLoadVerilog.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strLoadPla.cmx io/strLoadPla.ml
- File "io/strLoadPla.ml", line 11, characters 28-36:
- 11 | let my_lexer stream : token Stream.t =
-                                  ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 14, characters 14-25:
- 14 |     try match Stream.next stream with
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 19, characters 28-39:
- 19 |   let rec spaces () = match Stream.peek stream with
-                                  ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 21, characters 40-51:
- 21 |   | Some head -> if is_space head then (Stream.junk stream; spaces ()) else ()
-                                              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 25, characters 26-37:
- 25 |     let rec aux s = match Stream.peek stream with
-                                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 30, characters 14-25:
- 30 |         else (Stream.junk stream; aux (c::s))
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 40, characters 10-21:
- 40 |     match Stream.peek stream with
-                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 50, characters 14-25:
- 50 |         then (Stream.junk stream; Sym head)
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 55, characters 2-13:
- 55 |   Stream.from aux
-        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 61, characters 17-28:
- 61 |       let char = Stream.next stream in
-                       ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 66, characters 5-16:
- 66 |   in Stream.from aux
-           ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 73, characters 34-45:
- 73 | let rec parse_leaf stream = match Stream.next stream with
-                                        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 91, characters 8-19:
- 91 |   match Stream.next stream with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 114, characters 31-42:
- 114 | let parse_ident stream = match Stream.next stream with
-                                      ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 119, characters 28-39:
- 119 |   let rec aux carry = match Stream.peek stream with
-                                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 124, characters 6-17:
- 124 |       Stream.junk stream;
-             ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 130, characters 8-19:
- 130 |   match Stream.next stream with
-               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 134, characters 37-48:
- 134 | let parse_braket_list stream = match Stream.next stream with
-                                            ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 138, characters 10-21:
- 138 |     match Stream.next stream with
-                 ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 145, characters 28-39:
- 145 |   let rec aux carry = match Stream.next stream with
-                                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 151, characters 35-46:
- 151 | let parse_semicolon stream = match Stream.next stream with
-                                          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 160, characters 29-40:
- 160 | let parse_kwd stream = match Stream.next stream with
-                                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 164, characters 29-40:
- 164 | let parse_sym stream = match Stream.next stream with
-                                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 178, characters 12-23:
- 178 |       match Stream.next stream with
-                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 230, characters 20-37:
- 230 |   let mexpr = load (Stream.of_channel fin) in
-                           ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strLoadVerilog.cmx io/strLoadVerilog.ml
- File "io/strLoadVerilog.ml", line 16, characters 28-36:
- 16 | let my_lexer stream : token Stream.t =
-                                  ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 18, characters 28-39:
- 18 |   let rec spaces () = match Stream.peek stream with
-                                  ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 20, characters 40-51:
- 20 |   | Some head -> if is_space head then (Stream.junk stream; spaces ()) else ()
-                                              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 35, characters 26-37:
- 35 |     let rec aux s = match Stream.peek stream with
-                                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 40, characters 14-25:
- 40 |         else (Stream.junk stream; aux (c::s))
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 50, characters 10-21:
- 50 |     match Stream.peek stream with
-                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 56, characters 12-23:
- 56 |       then (Stream.junk stream; Sym head)
-                  ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 60, characters 2-13:
- 60 |   Stream.from aux
-        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 67, characters 34-45:
- 67 | let rec parse_leaf stream = match Stream.next stream with
-                                        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 95, characters 8-19:
- 95 |   match Stream.next stream with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 118, characters 31-42:
- 118 | let parse_ident stream = match Stream.next stream with
-                                      ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 123, characters 28-39:
- 123 |   let rec aux carry = match Stream.peek stream with
-                                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 128, characters 6-17:
- 128 |       Stream.junk stream;
-             ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 134, characters 8-19:
- 134 |   match Stream.next stream with
-               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 138, characters 37-48:
- 138 | let parse_braket_list stream = match Stream.next stream with
-                                            ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 142, characters 10-21:
- 142 |     match Stream.next stream with
-                 ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 149, characters 35-46:
- 149 | let parse_semicolon stream = match Stream.next stream with
-                                          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 158, characters 29-40:
- 158 | let parse_kwd stream = match Stream.next stream with
-                                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 162, characters 29-40:
- 162 | let parse_sym stream = match Stream.next stream with
-                                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 177, characters 8-19:
- 177 |   match Stream.next stream with
-               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 215, characters 25-36:
- 215 |   let rec aux () = match Stream.next stream with
-                                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 243, characters 20-37:
- 243 |   let mexpr = load (Stream.of_channel fin) in
-                           ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I core -I circuits -I conv -I io -I ldd_model -I oops -I src -o core/ariUbdagTC.cmx core/ariUbdagTC.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I conv -I circuits -I core -I io -I ldd_model -I oops -I src -o conv/convUtils.cmx conv/convUtils.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_u_gops.cmx ldd_model/ldd_B_o_u_gops.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I oops -I circuits -I conv -I core -I io -I ldd_model -I src -o oops/OfExprOfOops.cmx oops/OfExprOfOops.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I oops -I circuits -I conv -I core -I io -I ldd_model -I src -o oops/OopsGcOfOops.cmx oops/OopsGcOfOops.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_u.cmx ldd_model/ldd_B_o_u.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I test -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o test/noreg_ldd_B_o_u.cmx test/noreg_ldd_B_o_u.ml
- + ocamlfind ocamlopt -linkpkg -package Snowflake -package GuaCaml -package unix -I circuits -I core -I io -I oops -I conv -I ldd_model -I test circuits/expr.cmx core/udag.cmx core/binUbdag.cmx core/binUbdagT.cmx io/cmdTypes.cmx io/ioTypes.cmx circuits/nax.cmx io/cnfTypes.cmx circuits/cnax.cmx io/strDumpCnf.cmx io/cnfUtils.cmx io/strLoadCnf.cmx oops/OOPS.cmx oops/QEOPS.cmx oops/loadCnf.cmx oops/sUInt.cmx oops/vUInt.cmx circuits/cnaxOops.cmx circuits/nnfExpr.cmx circuits/rExpr.cmx io/ioUtils.cmx io/strDumpVerilog.cmx conv/convUtils.cmx core/ariUbdag.cmx core/ariUbdagTC.cmx io/strLoadPla.cmx io/strLoadVerilog.cmx ldd_model/ldd_B_o_u_types.cmx ldd_model/tacxTypes.cmx ldd_model/ldd_B_o_u_gops.cmx oops/OfExprOfOops.cmx oops/OopsGcOfOops.cmx ldd_model/ldd_B_o_u.cmx test/noreg_ldd_B_o_u.cmx -o test/noreg_ldd_B_o_u.native
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules test/noreg_ldd_B_o_nu.ml > test/noreg_ldd_B_o_nu.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_o_nu.ml > ldd_model/ldd_B_o_nu.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_o_nu_gops.ml > ldd_model/ldd_B_o_nu_gops.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_o_nu_types.ml > ldd_model/ldd_B_o_nu_types.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_nu_types.cmo ldd_model/ldd_B_o_nu_types.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_nu_gops.cmo ldd_model/ldd_B_o_nu_gops.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_nu.cmo ldd_model/ldd_B_o_nu.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I test -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o test/noreg_ldd_B_o_nu.cmo test/noreg_ldd_B_o_nu.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_nu_types.cmx ldd_model/ldd_B_o_nu_types.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_nu_gops.cmx ldd_model/ldd_B_o_nu_gops.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_nu.cmx ldd_model/ldd_B_o_nu.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I test -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o test/noreg_ldd_B_o_nu.cmx test/noreg_ldd_B_o_nu.ml
- + ocamlfind ocamlopt -linkpkg -package Snowflake -package GuaCaml -package unix -I circuits -I core -I io -I oops -I conv -I ldd_model -I test circuits/expr.cmx core/udag.cmx core/binUbdag.cmx core/binUbdagT.cmx io/cmdTypes.cmx io/ioTypes.cmx circuits/nax.cmx io/cnfTypes.cmx circuits/cnax.cmx io/strDumpCnf.cmx io/cnfUtils.cmx io/strLoadCnf.cmx oops/OOPS.cmx oops/QEOPS.cmx oops/loadCnf.cmx oops/sUInt.cmx oops/vUInt.cmx circuits/cnaxOops.cmx circuits/nnfExpr.cmx circuits/rExpr.cmx io/ioUtils.cmx io/strDumpVerilog.cmx conv/convUtils.cmx core/ariUbdag.cmx core/ariUbdagTC.cmx io/strLoadPla.cmx io/strLoadVerilog.cmx ldd_model/tacxTypes.cmx ldd_model/ldd_B_o_nu_types.cmx ldd_model/ldd_B_o_nu_gops.cmx ldd_model/ldd_B_o_u_types.cmx ldd_model/ldd_B_o_u_gops.cmx oops/OfExprOfOops.cmx oops/OopsGcOfOops.cmx ldd_model/ldd_B_o_u.cmx ldd_model/ldd_B_o_nu.cmx test/noreg_ldd_B_o_nu.cmx -o test/noreg_ldd_B_o_nu.native
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules test/noreg_ldd_B_o_c10.ml > test/noreg_ldd_B_o_c10.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_o_c10.ml > ldd_model/ldd_B_o_c10.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_o_c10_gops.ml > ldd_model/ldd_B_o_c10_gops.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_o_c10_types.ml > ldd_model/ldd_B_o_c10_types.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_c10_types.cmo ldd_model/ldd_B_o_c10_types.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_c10_gops.cmo ldd_model/ldd_B_o_c10_gops.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_c10.cmo ldd_model/ldd_B_o_c10.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I test -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o test/noreg_ldd_B_o_c10.cmo test/noreg_ldd_B_o_c10.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_c10_types.cmx ldd_model/ldd_B_o_c10_types.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_c10_gops.cmx ldd_model/ldd_B_o_c10_gops.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_c10.cmx ldd_model/ldd_B_o_c10.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I test -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o test/noreg_ldd_B_o_c10.cmx test/noreg_ldd_B_o_c10.ml
- + ocamlfind ocamlopt -linkpkg -package Snowflake -package GuaCaml -package unix -I circuits -I core -I io -I oops -I conv -I ldd_model -I test circuits/expr.cmx core/udag.cmx core/binUbdag.cmx core/binUbdagT.cmx io/cmdTypes.cmx io/ioTypes.cmx circuits/nax.cmx io/cnfTypes.cmx circuits/cnax.cmx io/strDumpCnf.cmx io/cnfUtils.cmx io/strLoadCnf.cmx oops/OOPS.cmx oops/QEOPS.cmx oops/loadCnf.cmx oops/sUInt.cmx oops/vUInt.cmx circuits/cnaxOops.cmx circuits/nnfExpr.cmx circuits/rExpr.cmx io/ioUtils.cmx io/strDumpVerilog.cmx conv/convUtils.cmx core/ariUbdag.cmx core/ariUbdagTC.cmx io/strLoadPla.cmx io/strLoadVerilog.cmx ldd_model/ldd_B_o_c10_types.cmx ldd_model/ldd_B_o_c10_gops.cmx oops/OfExprOfOops.cmx oops/OopsGcOfOops.cmx ldd_model/ldd_B_o_c10.cmx test/noreg_ldd_B_o_c10.cmx -o test/noreg_ldd_B_o_c10.native
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I test -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o test/noreg_ldd_B_o_c10.d.cmo test/noreg_ldd_B_o_c10.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_c10.d.cmo ldd_model/ldd_B_o_c10.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I core -I circuits -I conv -I io -I ldd_model -I oops -I src -o core/ariUbdag.d.cmo core/ariUbdag.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I core -I circuits -I conv -I io -I ldd_model -I oops -I src -o core/ariUbdagTC.d.cmo core/ariUbdagTC.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o circuits/cnax.d.cmo circuits/cnax.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o circuits/cnaxOops.d.cmo circuits/cnaxOops.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I conv -I circuits -I core -I io -I ldd_model -I oops -I src -o conv/convUtils.d.cmo conv/convUtils.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/ioTypes.d.cmo io/ioTypes.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_c10_gops.d.cmo ldd_model/ldd_B_o_c10_gops.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_c10_types.d.cmo ldd_model/ldd_B_o_c10_types.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I oops -I circuits -I conv -I core -I io -I ldd_model -I src -o oops/loadCnf.d.cmo oops/loadCnf.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I oops -I circuits -I conv -I core -I io -I ldd_model -I src -o oops/OOPS.d.cmo oops/OOPS.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I oops -I circuits -I conv -I core -I io -I ldd_model -I src -o oops/OfExprOfOops.d.cmo oops/OfExprOfOops.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I oops -I circuits -I conv -I core -I io -I ldd_model -I src -o oops/OopsGcOfOops.d.cmo oops/OopsGcOfOops.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I core -I circuits -I conv -I io -I ldd_model -I oops -I src -o core/udag.d.cmo core/udag.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I core -I circuits -I conv -I io -I ldd_model -I oops -I src -o core/binUbdag.d.cmo core/binUbdag.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I core -I circuits -I conv -I io -I ldd_model -I oops -I src -o core/binUbdagT.d.cmo core/binUbdagT.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/cnfTypes.d.cmo io/cnfTypes.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o circuits/nax.d.cmo circuits/nax.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o circuits/expr.d.cmo circuits/expr.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/cmdTypes.d.cmo io/cmdTypes.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I oops -I circuits -I conv -I core -I io -I ldd_model -I src -o oops/sUInt.d.cmo oops/sUInt.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I oops -I circuits -I conv -I core -I io -I ldd_model -I src -o oops/vUInt.d.cmo oops/vUInt.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/cnfUtils.d.cmo io/cnfUtils.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I oops -I circuits -I conv -I core -I io -I ldd_model -I src -o oops/QEOPS.d.cmo oops/QEOPS.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strLoadCnf.d.cmo io/strLoadCnf.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strLoadCnf.d.cmo io/strLoadCnf.ml
- File "io/strLoadCnf.ml", line 7, characters 26-34:
- 7 | let my_lexer (stream:char Stream.t) : BasicLexer.stream =
-                               ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCnf.ml", line 36, characters 8-19:
- 36 |   match Stream.peek stream with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCnf.ml", line 38, characters 4-15:
- 38 |     Stream.junk stream;
-          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCnf.ml", line 42, characters 4-15:
- 42 |     Stream.junk stream;
-          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCnf.ml", line 83, characters 28-45:
- 83 |   let cnf = load_qbf ~sort (Stream.of_channel file) in
-                                  ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCnf.ml", line 90, characters 24-41:
- 90 |   let cnf = load ~sort (Stream.of_channel file) in
-                              ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strDumpCnf.d.cmo io/strDumpCnf.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/ioUtils.d.cmo io/ioUtils.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strDumpVerilog.d.cmo io/strDumpVerilog.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o circuits/nnfExpr.d.cmo circuits/nnfExpr.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o circuits/rExpr.d.cmo circuits/rExpr.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strLoadPla.d.cmo io/strLoadPla.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strLoadVerilog.d.cmo io/strLoadVerilog.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strLoadVerilog.d.cmo io/strLoadVerilog.ml
- File "io/strLoadVerilog.ml", line 16, characters 28-36:
- 16 | let my_lexer stream : token Stream.t =
-                                  ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 18, characters 28-39:
- 18 |   let rec spaces () = match Stream.peek stream with
-                                  ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 20, characters 40-51:
- 20 |   | Some head -> if is_space head then (Stream.junk stream; spaces ()) else ()
-                                              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 35, characters 26-37:
- 35 |     let rec aux s = match Stream.peek stream with
-                                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 40, characters 14-25:
- 40 |         else (Stream.junk stream; aux (c::s))
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 50, characters 10-21:
- 50 |     match Stream.peek stream with
-                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 56, characters 12-23:
- 56 |       then (Stream.junk stream; Sym head)
-                  ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 60, characters 2-13:
- 60 |   Stream.from aux
-        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 67, characters 34-45:
- 67 | let rec parse_leaf stream = match Stream.next stream with
-                                        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 95, characters 8-19:
- 95 |   match Stream.next stream with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 118, characters 31-42:
- 118 | let parse_ident stream = match Stream.next stream with
-                                      ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 123, characters 28-39:
- 123 |   let rec aux carry = match Stream.peek stream with
-                                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 128, characters 6-17:
- 128 |       Stream.junk stream;
-             ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 134, characters 8-19:
- 134 |   match Stream.next stream with
-               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 138, characters 37-48:
- 138 | let parse_braket_list stream = match Stream.next stream with
-                                            ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 142, characters 10-21:
- 142 |     match Stream.next stream with
-                 ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 149, characters 35-46:
- 149 | let parse_semicolon stream = match Stream.next stream with
-                                          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 158, characters 29-40:
- 158 | let parse_kwd stream = match Stream.next stream with
-                                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 162, characters 29-40:
- 162 | let parse_sym stream = match Stream.next stream with
-                                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 177, characters 8-19:
- 177 |   match Stream.next stream with
-               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 215, characters 25-36:
- 215 |   let rec aux () = match Stream.next stream with
-                                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadVerilog.ml", line 243, characters 20-37:
- 243 |   let mexpr = load (Stream.of_channel fin) in
-                           ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strLoadPla.d.cmo io/strLoadPla.ml
- File "io/strLoadPla.ml", line 11, characters 28-36:
- 11 | let my_lexer stream : token Stream.t =
-                                  ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 14, characters 14-25:
- 14 |     try match Stream.next stream with
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 19, characters 28-39:
- 19 |   let rec spaces () = match Stream.peek stream with
-                                  ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 21, characters 40-51:
- 21 |   | Some head -> if is_space head then (Stream.junk stream; spaces ()) else ()
-                                              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 25, characters 26-37:
- 25 |     let rec aux s = match Stream.peek stream with
-                                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 30, characters 14-25:
- 30 |         else (Stream.junk stream; aux (c::s))
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 40, characters 10-21:
- 40 |     match Stream.peek stream with
-                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 50, characters 14-25:
- 50 |         then (Stream.junk stream; Sym head)
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 55, characters 2-13:
- 55 |   Stream.from aux
-        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 61, characters 17-28:
- 61 |       let char = Stream.next stream in
-                       ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 66, characters 5-16:
- 66 |   in Stream.from aux
-           ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 73, characters 34-45:
- 73 | let rec parse_leaf stream = match Stream.next stream with
-                                        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 91, characters 8-19:
- 91 |   match Stream.next stream with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 114, characters 31-42:
- 114 | let parse_ident stream = match Stream.next stream with
-                                      ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 119, characters 28-39:
- 119 |   let rec aux carry = match Stream.peek stream with
-                                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 124, characters 6-17:
- 124 |       Stream.junk stream;
-             ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 130, characters 8-19:
- 130 |   match Stream.next stream with
-               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 134, characters 37-48:
- 134 | let parse_braket_list stream = match Stream.next stream with
-                                            ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 138, characters 10-21:
- 138 |     match Stream.next stream with
-                 ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 145, characters 28-39:
- 145 |   let rec aux carry = match Stream.next stream with
-                                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 151, characters 35-46:
- 151 | let parse_semicolon stream = match Stream.next stream with
-                                          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 160, characters 29-40:
- 160 | let parse_kwd stream = match Stream.next stream with
-                                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 164, characters 29-40:
- 164 | let parse_sym stream = match Stream.next stream with
-                                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 178, characters 12-23:
- 178 |       match Stream.next stream with
-                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadPla.ml", line 230, characters 20-37:
- 230 |   let mexpr = load (Stream.of_channel fin) in
-                           ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamlc -linkpkg -g -package Snowflake -package GuaCaml -package unix -I circuits -I core -I io -I oops -I conv -I ldd_model -I test circuits/expr.d.cmo core/udag.d.cmo core/binUbdag.d.cmo core/binUbdagT.d.cmo io/cmdTypes.d.cmo io/ioTypes.d.cmo circuits/nax.d.cmo io/cnfTypes.d.cmo circuits/cnax.d.cmo oops/OOPS.d.cmo io/strDumpCnf.d.cmo io/cnfUtils.d.cmo io/strLoadCnf.d.cmo oops/QEOPS.d.cmo oops/loadCnf.d.cmo oops/sUInt.d.cmo oops/vUInt.d.cmo circuits/cnaxOops.d.cmo io/ioUtils.d.cmo circuits/nnfExpr.d.cmo circuits/rExpr.d.cmo io/strDumpVerilog.d.cmo conv/convUtils.d.cmo core/ariUbdag.d.cmo core/ariUbdagTC.d.cmo ldd_model/ldd_B_o_c10_types.d.cmo ldd_model/ldd_B_o_c10_gops.d.cmo io/strLoadPla.d.cmo io/strLoadVerilog.d.cmo oops/OfExprOfOops.d.cmo oops/OopsGcOfOops.d.cmo ldd_model/ldd_B_o_c10.d.cmo test/noreg_ldd_B_o_c10.d.cmo -o test/noreg_ldd_B_o_c10.d.byte
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules test/noreg_ldd_B_o_uc0.ml > test/noreg_ldd_B_o_uc0.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_o_uc0.ml > ldd_model/ldd_B_o_uc0.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_o_uc0_gops.ml > ldd_model/ldd_B_o_uc0_gops.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_o_uc0_types.ml > ldd_model/ldd_B_o_uc0_types.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_uc0_types.cmo ldd_model/ldd_B_o_uc0_types.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_uc0_gops.cmo ldd_model/ldd_B_o_uc0_gops.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_uc0.cmo ldd_model/ldd_B_o_uc0.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I test -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o test/noreg_ldd_B_o_uc0.cmo test/noreg_ldd_B_o_uc0.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_uc0_types.cmx ldd_model/ldd_B_o_uc0_types.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_uc0_gops.cmx ldd_model/ldd_B_o_uc0_gops.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_uc0.cmx ldd_model/ldd_B_o_uc0.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I test -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o test/noreg_ldd_B_o_uc0.cmx test/noreg_ldd_B_o_uc0.ml
- + ocamlfind ocamlopt -linkpkg -package Snowflake -package GuaCaml -package unix -I circuits -I core -I io -I oops -I conv -I ldd_model -I test circuits/expr.cmx core/udag.cmx core/binUbdag.cmx core/binUbdagT.cmx io/cmdTypes.cmx io/ioTypes.cmx circuits/nax.cmx io/cnfTypes.cmx circuits/cnax.cmx io/strDumpCnf.cmx io/cnfUtils.cmx io/strLoadCnf.cmx oops/OOPS.cmx oops/QEOPS.cmx oops/loadCnf.cmx oops/sUInt.cmx oops/vUInt.cmx circuits/cnaxOops.cmx circuits/nnfExpr.cmx circuits/rExpr.cmx io/ioUtils.cmx io/strDumpVerilog.cmx conv/convUtils.cmx core/ariUbdag.cmx core/ariUbdagTC.cmx io/strLoadPla.cmx io/strLoadVerilog.cmx ldd_model/ldd_B_o_uc0_types.cmx ldd_model/ldd_B_o_uc0_gops.cmx oops/OfExprOfOops.cmx oops/OopsGcOfOops.cmx ldd_model/ldd_B_o_uc0.cmx test/noreg_ldd_B_o_uc0.cmx -o test/noreg_ldd_B_o_uc0.native
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules test/noreg_ldd_B_o_nucx.ml > test/noreg_ldd_B_o_nucx.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_o_nucx.ml > ldd_model/ldd_B_o_nucx.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_o_nucx_gops.ml > ldd_model/ldd_B_o_nucx_gops.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_o_nucx_types.ml > ldd_model/ldd_B_o_nucx_types.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_nucx_types.cmo ldd_model/ldd_B_o_nucx_types.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_nucx_gops.cmo ldd_model/ldd_B_o_nucx_gops.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_nucx.cmo ldd_model/ldd_B_o_nucx.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I test -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o test/noreg_ldd_B_o_nucx.cmo test/noreg_ldd_B_o_nucx.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_nucx_types.cmx ldd_model/ldd_B_o_nucx_types.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_nucx_gops.cmx ldd_model/ldd_B_o_nucx_gops.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_nucx.cmx ldd_model/ldd_B_o_nucx.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I test -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o test/noreg_ldd_B_o_nucx.cmx test/noreg_ldd_B_o_nucx.ml
- + ocamlfind ocamlopt -linkpkg -package Snowflake -package GuaCaml -package unix -I circuits -I core -I io -I oops -I conv -I ldd_model -I test circuits/expr.cmx core/udag.cmx core/binUbdag.cmx core/binUbdagT.cmx io/cmdTypes.cmx io/ioTypes.cmx circuits/nax.cmx io/cnfTypes.cmx circuits/cnax.cmx io/strDumpCnf.cmx io/cnfUtils.cmx io/strLoadCnf.cmx oops/OOPS.cmx oops/QEOPS.cmx oops/loadCnf.cmx oops/sUInt.cmx oops/vUInt.cmx circuits/cnaxOops.cmx circuits/nnfExpr.cmx circuits/rExpr.cmx io/ioUtils.cmx io/strDumpVerilog.cmx conv/convUtils.cmx core/ariUbdag.cmx core/ariUbdagTC.cmx io/strLoadPla.cmx io/strLoadVerilog.cmx ldd_model/ldd_B_o_nucx_types.cmx ldd_model/ldd_B_o_nucx_gops.cmx oops/OfExprOfOops.cmx oops/OopsGcOfOops.cmx ldd_model/ldd_B_o_nucx.cmx test/noreg_ldd_B_o_nucx.cmx -o test/noreg_ldd_B_o_nucx.native
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules test/noreg_ldd_B_u_nu.ml > test/noreg_ldd_B_u_nu.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_u_nu.ml > ldd_model/ldd_B_u_nu.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_u_nu_gops.ml > ldd_model/ldd_B_u_nu_gops.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_u_nu_io.ml > ldd_model/ldd_B_u_nu_io.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_u_nu_types.ml > ldd_model/ldd_B_u_nu_types.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nu_types.cmo ldd_model/ldd_B_u_nu_types.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nu_io.cmo ldd_model/ldd_B_u_nu_io.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nu_gops.cmo ldd_model/ldd_B_u_nu_gops.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nu.cmo ldd_model/ldd_B_u_nu.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I test -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o test/noreg_ldd_B_u_nu.cmo test/noreg_ldd_B_u_nu.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nu_types.cmx ldd_model/ldd_B_u_nu_types.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nu_io.cmx ldd_model/ldd_B_u_nu_io.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nu_gops.cmx ldd_model/ldd_B_u_nu_gops.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nu.cmx ldd_model/ldd_B_u_nu.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I test -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o test/noreg_ldd_B_u_nu.cmx test/noreg_ldd_B_u_nu.ml
- + ocamlfind ocamlopt -linkpkg -package Snowflake -package GuaCaml -package unix -I circuits -I core -I io -I oops -I conv -I ldd_model -I test circuits/expr.cmx core/udag.cmx core/binUbdag.cmx core/binUbdagT.cmx io/cmdTypes.cmx io/ioTypes.cmx circuits/nax.cmx io/cnfTypes.cmx circuits/cnax.cmx io/strDumpCnf.cmx io/cnfUtils.cmx io/strLoadCnf.cmx oops/OOPS.cmx oops/QEOPS.cmx oops/loadCnf.cmx oops/sUInt.cmx oops/vUInt.cmx circuits/cnaxOops.cmx circuits/nnfExpr.cmx circuits/rExpr.cmx io/ioUtils.cmx io/strDumpVerilog.cmx conv/convUtils.cmx core/ariUbdag.cmx core/ariUbdagTC.cmx io/strLoadPla.cmx io/strLoadVerilog.cmx ldd_model/ldd_B_u_nu_types.cmx ldd_model/ldd_B_u_nu_io.cmx ldd_model/ldd_B_u_nu_gops.cmx oops/OfExprOfOops.cmx oops/OopsGcOfOops.cmx ldd_model/ldd_B_u_nu.cmx test/noreg_ldd_B_u_nu.cmx -o test/noreg_ldd_B_u_nu.native
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules test/noreg_ldd_B_u_nux.ml > test/noreg_ldd_B_u_nux.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_u_nux.ml > ldd_model/ldd_B_u_nux.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_u_nux_gops.ml > ldd_model/ldd_B_u_nux_gops.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_u_nux_types.ml > ldd_model/ldd_B_u_nux_types.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nux_types.cmo ldd_model/ldd_B_u_nux_types.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_u_nux_io.ml > ldd_model/ldd_B_u_nux_io.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nux_gops.cmo ldd_model/ldd_B_u_nux_gops.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nux_io.cmo ldd_model/ldd_B_u_nux_io.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nux.cmo ldd_model/ldd_B_u_nux.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I test -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o test/noreg_ldd_B_u_nux.cmo test/noreg_ldd_B_u_nux.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nux_types.cmx ldd_model/ldd_B_u_nux_types.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nux_gops.cmx ldd_model/ldd_B_u_nux_gops.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nux_io.cmx ldd_model/ldd_B_u_nux_io.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nux.cmx ldd_model/ldd_B_u_nux.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I test -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o test/noreg_ldd_B_u_nux.cmx test/noreg_ldd_B_u_nux.ml
- + ocamlfind ocamlopt -linkpkg -package Snowflake -package GuaCaml -package unix -I circuits -I core -I io -I oops -I conv -I ldd_model -I test circuits/expr.cmx core/udag.cmx core/binUbdag.cmx core/binUbdagT.cmx io/cmdTypes.cmx io/ioTypes.cmx circuits/nax.cmx io/cnfTypes.cmx circuits/cnax.cmx io/strDumpCnf.cmx io/cnfUtils.cmx io/strLoadCnf.cmx oops/OOPS.cmx oops/QEOPS.cmx oops/loadCnf.cmx oops/sUInt.cmx oops/vUInt.cmx circuits/cnaxOops.cmx circuits/nnfExpr.cmx circuits/rExpr.cmx io/ioUtils.cmx io/strDumpVerilog.cmx conv/convUtils.cmx core/ariUbdag.cmx core/ariUbdagTC.cmx io/strLoadPla.cmx io/strLoadVerilog.cmx ldd_model/ldd_B_u_nux_types.cmx ldd_model/ldd_B_u_nux_gops.cmx ldd_model/ldd_B_u_nux_io.cmx oops/OfExprOfOops.cmx oops/OopsGcOfOops.cmx ldd_model/ldd_B_u_nux.cmx test/noreg_ldd_B_u_nux.cmx -o test/noreg_ldd_B_u_nux.native
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules test/noreg_ldd_B_u_nuc.ml > test/noreg_ldd_B_u_nuc.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_u_nuc.ml > ldd_model/ldd_B_u_nuc.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_u_nuc_gops.ml > ldd_model/ldd_B_u_nuc_gops.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_u_nuc_types.ml > ldd_model/ldd_B_u_nuc_types.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_u_nuc_utils.ml > ldd_model/ldd_B_u_nuc_utils.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_u_nuc_io.ml > ldd_model/ldd_B_u_nuc_io.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nuc_types.cmo ldd_model/ldd_B_u_nuc_types.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nuc_io.cmo ldd_model/ldd_B_u_nuc_io.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nuc_utils.cmo ldd_model/ldd_B_u_nuc_utils.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nuc_gops.cmo ldd_model/ldd_B_u_nuc_gops.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nuc.cmo ldd_model/ldd_B_u_nuc.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I test -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o test/noreg_ldd_B_u_nuc.cmo test/noreg_ldd_B_u_nuc.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nuc_types.cmx ldd_model/ldd_B_u_nuc_types.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nuc_io.cmx ldd_model/ldd_B_u_nuc_io.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nuc_utils.cmx ldd_model/ldd_B_u_nuc_utils.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nuc_gops.cmx ldd_model/ldd_B_u_nuc_gops.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nuc.cmx ldd_model/ldd_B_u_nuc.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I test -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o test/noreg_ldd_B_u_nuc.cmx test/noreg_ldd_B_u_nuc.ml
- + ocamlfind ocamlopt -linkpkg -package Snowflake -package GuaCaml -package unix -I circuits -I core -I io -I oops -I conv -I ldd_model -I test circuits/expr.cmx core/udag.cmx core/binUbdag.cmx core/binUbdagT.cmx io/cmdTypes.cmx io/ioTypes.cmx circuits/nax.cmx io/cnfTypes.cmx circuits/cnax.cmx io/strDumpCnf.cmx io/cnfUtils.cmx io/strLoadCnf.cmx oops/OOPS.cmx oops/QEOPS.cmx oops/loadCnf.cmx oops/sUInt.cmx oops/vUInt.cmx circuits/cnaxOops.cmx circuits/nnfExpr.cmx circuits/rExpr.cmx io/ioUtils.cmx io/strDumpVerilog.cmx conv/convUtils.cmx core/ariUbdag.cmx core/ariUbdagTC.cmx io/strLoadPla.cmx io/strLoadVerilog.cmx ldd_model/ldd_B_u_nuc_types.cmx ldd_model/ldd_B_u_nuc_io.cmx ldd_model/ldd_B_u_nuc_utils.cmx ldd_model/ldd_B_u_nuc_gops.cmx oops/OfExprOfOops.cmx oops/OopsGcOfOops.cmx ldd_model/ldd_B_u_nuc.cmx test/noreg_ldd_B_u_nuc.cmx -o test/noreg_ldd_B_u_nuc.native
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I test -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o test/noreg_ldd_B_u_nuc.d.cmo test/noreg_ldd_B_u_nuc.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nuc.d.cmo ldd_model/ldd_B_u_nuc.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nuc_gops.d.cmo ldd_model/ldd_B_u_nuc_gops.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nuc_io.d.cmo ldd_model/ldd_B_u_nuc_io.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nuc_types.d.cmo ldd_model/ldd_B_u_nuc_types.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nuc_utils.d.cmo ldd_model/ldd_B_u_nuc_utils.ml
- + ocamlfind ocamlc -linkpkg -g -package Snowflake -package GuaCaml -package unix -I circuits -I core -I io -I oops -I conv -I ldd_model -I test circuits/expr.d.cmo core/udag.d.cmo core/binUbdag.d.cmo core/binUbdagT.d.cmo io/cmdTypes.d.cmo io/ioTypes.d.cmo circuits/nax.d.cmo io/cnfTypes.d.cmo circuits/cnax.d.cmo oops/OOPS.d.cmo io/strDumpCnf.d.cmo io/cnfUtils.d.cmo io/strLoadCnf.d.cmo oops/QEOPS.d.cmo oops/loadCnf.d.cmo oops/sUInt.d.cmo oops/vUInt.d.cmo circuits/cnaxOops.d.cmo io/ioUtils.d.cmo circuits/nnfExpr.d.cmo circuits/rExpr.d.cmo io/strDumpVerilog.d.cmo conv/convUtils.d.cmo core/ariUbdag.d.cmo core/ariUbdagTC.d.cmo ldd_model/ldd_B_u_nuc_types.d.cmo ldd_model/ldd_B_u_nuc_io.d.cmo ldd_model/ldd_B_u_nuc_utils.d.cmo ldd_model/ldd_B_u_nuc_gops.d.cmo io/strLoadPla.d.cmo io/strLoadVerilog.d.cmo oops/OfExprOfOops.d.cmo oops/OopsGcOfOops.d.cmo ldd_model/ldd_B_u_nuc.d.cmo test/noreg_ldd_B_u_nuc.d.cmo -o test/noreg_ldd_B_u_nuc.d.byte
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules test/noreg_ldd_B_u_nucx.ml > test/noreg_ldd_B_u_nucx.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_u_nucx.ml > ldd_model/ldd_B_u_nucx.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_u_nucx_gops.ml > ldd_model/ldd_B_u_nucx_gops.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_u_nucx_andb.ml > ldd_model/ldd_B_u_nucx_andb.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_u_nucx_check.ml > ldd_model/ldd_B_u_nucx_check.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_u_nucx_types.ml > ldd_model/ldd_B_u_nucx_types.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_u_nucx_utils.ml > ldd_model/ldd_B_u_nucx_utils.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_types.cmo ldd_model/ldd_B_u_nucx_types.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_utils.cmo ldd_model/ldd_B_u_nucx_utils.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_u_nucx_cons.ml > ldd_model/ldd_B_u_nucx_cons.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_check.cmo ldd_model/ldd_B_u_nucx_check.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_u_nucx_facto.ml > ldd_model/ldd_B_u_nucx_facto.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_u_nucx_io.ml > ldd_model/ldd_B_u_nucx_io.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_u_nucx_norm.ml > ldd_model/ldd_B_u_nucx_norm.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_io.cmo ldd_model/ldd_B_u_nucx_io.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_norm.cmo ldd_model/ldd_B_u_nucx_norm.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_u_nucx_pull.ml > ldd_model/ldd_B_u_nucx_pull.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_facto.cmo ldd_model/ldd_B_u_nucx_facto.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_pull.cmo ldd_model/ldd_B_u_nucx_pull.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_u_nucx_peval.ml > ldd_model/ldd_B_u_nucx_peval.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_cons.cmo ldd_model/ldd_B_u_nucx_cons.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_peval.cmo ldd_model/ldd_B_u_nucx_peval.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules ldd_model/ldd_B_u_nucx_xorb.ml > ldd_model/ldd_B_u_nucx_xorb.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_andb.cmo ldd_model/ldd_B_u_nucx_andb.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_xorb.cmo ldd_model/ldd_B_u_nucx_xorb.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_gops.cmo ldd_model/ldd_B_u_nucx_gops.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx.cmo ldd_model/ldd_B_u_nucx.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I test -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o test/noreg_ldd_B_u_nucx.cmo test/noreg_ldd_B_u_nucx.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_types.cmx ldd_model/ldd_B_u_nucx_types.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_utils.cmx ldd_model/ldd_B_u_nucx_utils.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_check.cmx ldd_model/ldd_B_u_nucx_check.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_io.cmx ldd_model/ldd_B_u_nucx_io.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_norm.cmx ldd_model/ldd_B_u_nucx_norm.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_facto.cmx ldd_model/ldd_B_u_nucx_facto.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_pull.cmx ldd_model/ldd_B_u_nucx_pull.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_cons.cmx ldd_model/ldd_B_u_nucx_cons.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_peval.cmx ldd_model/ldd_B_u_nucx_peval.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_andb.cmx ldd_model/ldd_B_u_nucx_andb.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_xorb.cmx ldd_model/ldd_B_u_nucx_xorb.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_gops.cmx ldd_model/ldd_B_u_nucx_gops.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx.cmx ldd_model/ldd_B_u_nucx.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I test -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o test/noreg_ldd_B_u_nucx.cmx test/noreg_ldd_B_u_nucx.ml
- + ocamlfind ocamlopt -linkpkg -package Snowflake -package GuaCaml -package unix -I circuits -I core -I io -I oops -I conv -I ldd_model -I test circuits/expr.cmx core/udag.cmx core/binUbdag.cmx core/binUbdagT.cmx io/cmdTypes.cmx io/ioTypes.cmx circuits/nax.cmx io/cnfTypes.cmx circuits/cnax.cmx io/strDumpCnf.cmx io/cnfUtils.cmx io/strLoadCnf.cmx oops/OOPS.cmx oops/QEOPS.cmx oops/loadCnf.cmx oops/sUInt.cmx oops/vUInt.cmx circuits/cnaxOops.cmx circuits/nnfExpr.cmx circuits/rExpr.cmx io/ioUtils.cmx io/strDumpVerilog.cmx conv/convUtils.cmx core/ariUbdag.cmx core/ariUbdagTC.cmx io/strLoadPla.cmx io/strLoadVerilog.cmx ldd_model/ldd_B_u_nucx_types.cmx ldd_model/ldd_B_u_nucx_utils.cmx ldd_model/ldd_B_u_nucx_check.cmx ldd_model/ldd_B_u_nucx_io.cmx ldd_model/ldd_B_u_nucx_norm.cmx ldd_model/ldd_B_u_nucx_facto.cmx ldd_model/ldd_B_u_nucx_pull.cmx ldd_model/ldd_B_u_nucx_cons.cmx ldd_model/ldd_B_u_nucx_peval.cmx ldd_model/ldd_B_u_nucx_andb.cmx ldd_model/ldd_B_u_nucx_xorb.cmx ldd_model/ldd_B_u_nucx_gops.cmx oops/OfExprOfOops.cmx oops/OopsGcOfOops.cmx ldd_model/ldd_B_u_nucx.cmx test/noreg_ldd_B_u_nucx.cmx -o test/noreg_ldd_B_u_nucx.native
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I test -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o test/noreg_ldd_B_u_nucx.d.cmo test/noreg_ldd_B_u_nucx.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx.d.cmo ldd_model/ldd_B_u_nucx.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_gops.d.cmo ldd_model/ldd_B_u_nucx_gops.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_io.d.cmo ldd_model/ldd_B_u_nucx_io.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_types.d.cmo ldd_model/ldd_B_u_nucx_types.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_andb.d.cmo ldd_model/ldd_B_u_nucx_andb.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_check.d.cmo ldd_model/ldd_B_u_nucx_check.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_cons.d.cmo ldd_model/ldd_B_u_nucx_cons.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_facto.d.cmo ldd_model/ldd_B_u_nucx_facto.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_norm.d.cmo ldd_model/ldd_B_u_nucx_norm.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_peval.d.cmo ldd_model/ldd_B_u_nucx_peval.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_pull.d.cmo ldd_model/ldd_B_u_nucx_pull.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_utils.d.cmo ldd_model/ldd_B_u_nucx_utils.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nucx_xorb.d.cmo ldd_model/ldd_B_u_nucx_xorb.ml
- + ocamlfind ocamlc -linkpkg -g -package Snowflake -package GuaCaml -package unix -I circuits -I core -I io -I oops -I conv -I ldd_model -I test circuits/expr.d.cmo core/udag.d.cmo core/binUbdag.d.cmo core/binUbdagT.d.cmo io/cmdTypes.d.cmo io/ioTypes.d.cmo circuits/nax.d.cmo io/cnfTypes.d.cmo circuits/cnax.d.cmo oops/OOPS.d.cmo io/strDumpCnf.d.cmo io/cnfUtils.d.cmo io/strLoadCnf.d.cmo oops/QEOPS.d.cmo oops/loadCnf.d.cmo oops/sUInt.d.cmo oops/vUInt.d.cmo circuits/cnaxOops.d.cmo io/ioUtils.d.cmo circuits/nnfExpr.d.cmo circuits/rExpr.d.cmo io/strDumpVerilog.d.cmo conv/convUtils.d.cmo core/ariUbdag.d.cmo core/ariUbdagTC.d.cmo ldd_model/ldd_B_u_nucx_types.d.cmo ldd_model/ldd_B_u_nucx_utils.d.cmo ldd_model/ldd_B_u_nucx_check.d.cmo ldd_model/ldd_B_u_nucx_io.d.cmo ldd_model/ldd_B_u_nucx_norm.d.cmo ldd_model/ldd_B_u_nucx_facto.d.cmo ldd_model/ldd_B_u_nucx_pull.d.cmo ldd_model/ldd_B_u_nucx_cons.d.cmo ldd_model/ldd_B_u_nucx_peval.d.cmo ldd_model/ldd_B_u_nucx_andb.d.cmo ldd_model/ldd_B_u_nucx_xorb.d.cmo ldd_model/ldd_B_u_nucx_gops.d.cmo io/strLoadPla.d.cmo io/strLoadVerilog.d.cmo oops/OfExprOfOops.d.cmo oops/OopsGcOfOops.d.cmo ldd_model/ldd_B_u_nucx.d.cmo test/noreg_ldd_B_u_nucx.d.cmo -o test/noreg_ldd_B_u_nucx.d.byte
- # Parallel statistics: { count(total): 30(243), max: 12, min: 2, average(total): 3.067(1.255) }
- ocamlbuild -r -j 72   -Is src,core,ldd_model,io,conv,oops,circuits -use-ocamlfind -package GuaCaml -package unix\
-   test/test_nqueens_cnax.native \
- 	test/test_tcqueens_cnax.native \
- 	src/conv_ext.native \
- 	src/conv_ext.d.byte \
- 	src/conv_noext.native
- + ocamlfind ocamlc -config
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules test/test_nqueens_cnax.ml > test/test_nqueens_cnax.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I test -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o test/test_nqueens_cnax.cmo test/test_nqueens_cnax.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I test -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o test/test_nqueens_cnax.cmx test/test_nqueens_cnax.ml
- + ocamlfind ocamlopt -linkpkg -package Snowflake -package GuaCaml -package unix -I circuits -I core -I io -I oops -I test circuits/expr.cmx core/udag.cmx core/binUbdag.cmx core/binUbdagT.cmx io/cmdTypes.cmx io/ioTypes.cmx circuits/nax.cmx io/cnfTypes.cmx circuits/cnax.cmx io/strDumpCnf.cmx io/cnfUtils.cmx io/strLoadCnf.cmx oops/OOPS.cmx oops/QEOPS.cmx oops/loadCnf.cmx oops/sUInt.cmx oops/vUInt.cmx circuits/cnaxOops.cmx circuits/nnfExpr.cmx circuits/rExpr.cmx io/ioUtils.cmx io/strDumpVerilog.cmx test/test_nqueens_cnax.cmx -o test/test_nqueens_cnax.native
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules test/test_tcqueens_cnax.ml > test/test_tcqueens_cnax.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I test -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o test/test_tcqueens_cnax.cmo test/test_tcqueens_cnax.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I test -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o test/test_tcqueens_cnax.cmx test/test_tcqueens_cnax.ml
- + ocamlfind ocamlopt -linkpkg -package Snowflake -package GuaCaml -package unix -I circuits -I core -I io -I oops -I test circuits/expr.cmx core/udag.cmx core/binUbdag.cmx core/binUbdagT.cmx io/cmdTypes.cmx io/ioTypes.cmx circuits/nax.cmx io/cnfTypes.cmx circuits/cnax.cmx io/strDumpCnf.cmx io/cnfUtils.cmx io/strLoadCnf.cmx oops/OOPS.cmx oops/QEOPS.cmx oops/loadCnf.cmx oops/sUInt.cmx oops/vUInt.cmx circuits/cnaxOops.cmx circuits/nnfExpr.cmx circuits/rExpr.cmx io/ioUtils.cmx io/strDumpVerilog.cmx test/test_tcqueens_cnax.cmx -o test/test_tcqueens_cnax.native
- + ocamlfind ocamldep -package GuaCaml -package unix -modules src/conv_ext.ml > src/conv_ext.ml.depends
- + ocamlfind ocamldep -package GuaCaml -package unix -modules conv/conv.ml > conv/conv.ml.depends
- + ocamlfind ocamldep -package GuaCaml -package unix -modules conv/convCore.ml > conv/convCore.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules io/cmdUtils.ml > io/cmdUtils.ml.depends
- + ocamlfind ocamldep -package GuaCaml -package unix -modules conv/convTypes.ml > conv/convTypes.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules io/strDumpCmd.ml > io/strDumpCmd.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/cmdUtils.cmo io/cmdUtils.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules io/strLoadCmd.ml > io/strLoadCmd.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules io/strLoadNnf.ml > io/strLoadNnf.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I conv -I circuits -I core -I io -I ldd_model -I oops -I src -o conv/convTypes.cmo conv/convTypes.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strDumpCmd.cmo io/strDumpCmd.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strLoadCmd.cmo io/strLoadCmd.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strLoadNnf.cmo io/strLoadNnf.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strLoadCmd.cmo io/strLoadCmd.ml
- File "io/strLoadCmd.ml", line 13, characters 26-34:
- 13 | let my_lexer (stream:char Stream.t) : CmtLexer.stream =
-                                ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCmd.ml", line 65, characters 8-19:
- 65 |   match Stream.peek s with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCmd.ml", line 67, characters 4-15:
- 67 |     Stream.junk s;
-          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCmd.ml", line 73, characters 8-19:
- 73 |   match Stream.peek s with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCmd.ml", line 75, characters 4-15:
- 75 |     Stream.junk s;
-          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCmd.ml", line 134, characters 8-19:
- 134 |   match Stream.peek s with
-               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCmd.ml", line 137, characters 4-15:
- 137 |     Stream.junk s;
-           ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCmd.ml", line 147, characters 18-35:
- 147 |   let prg = load (Stream.of_channel file) in
-                         ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strLoadNnf.cmo io/strLoadNnf.ml
- File "io/strLoadNnf.ml", line 13, characters 28-36:
- 13 | let my_lexer stream : token Stream.t =
-                                  ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 16, characters 14-25:
- 16 |     try match Stream.next stream with
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 21, characters 28-39:
- 21 |   let rec spaces () = match Stream.peek stream with
-                                  ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 23, characters 40-51:
- 23 |   | Some head -> if is_space head then (Stream.junk stream; spaces ()) else ()
-                                              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 26, characters 26-37:
- 26 |     let rec aux s = match Stream.peek stream with
-                                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 31, characters 14-25:
- 31 |         else (Stream.junk stream; aux (c::s))
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 39, characters 25-36:
- 39 |   let rec rmc () = match Stream.peek stream with
-                               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 46, characters 10-21:
- 46 |     match Stream.peek stream with
-                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 54, characters 2-13:
- 54 |   Stream.from aux
-        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 77, characters 29-40:
- 77 | let parse_str stream = match Stream.next stream with
-                                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 81, characters 29-40:
- 81 | let parse_int stream = match Stream.next stream with
-                                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 85, characters 31-39:
- 85 | let parse_module (stream:token Stream.t) : string IoTypes.expr =
-                                     ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 87, characters 14-25:
- 87 |     let tok = Stream.peek stream in
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 88, characters 4-15:
- 88 |     Stream.junk stream;
-          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 97, characters 19-30:
- 97 |   let core = match Stream.next stream with
-                         ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 139, characters 24-32:
- 139 | let load (stream : char Stream.t) : string IoTypes.expr =
-                               ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 140, characters 20-28:
- 140 |   let lexed : token Stream.t = my_lexer stream in
-                           ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 140, characters 20-28:
- 140 |   let lexed : token Stream.t = my_lexer stream in
-                           ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 146, characters 17-34:
- 146 |   let cnf = load(Stream.of_channel file) in
-                        ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamldep -package GuaCaml -package unix -modules conv/convTypesDump.ml > conv/convTypesDump.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I conv -I circuits -I core -I io -I ldd_model -I oops -I src -o conv/convCore.cmo conv/convCore.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I conv -I circuits -I core -I io -I ldd_model -I oops -I src -o conv/convTypesDump.cmo conv/convTypesDump.ml
- + ocamlfind ocamldep -package GuaCaml -package unix -modules conv/convTypesLoad.ml > conv/convTypesLoad.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I conv -I circuits -I core -I io -I ldd_model -I oops -I src -o conv/conv.cmo conv/conv.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I conv -I circuits -I core -I io -I ldd_model -I oops -I src -o conv/convTypesLoad.cmo conv/convTypesLoad.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I src -I circuits -I conv -I core -I io -I ldd_model -I oops -o src/conv_ext.cmo src/conv_ext.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/cmdUtils.cmx io/cmdUtils.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I conv -I circuits -I core -I io -I ldd_model -I oops -I src -o conv/convTypes.cmx conv/convTypes.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strDumpCmd.cmx io/strDumpCmd.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strLoadCmd.cmx io/strLoadCmd.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strLoadNnf.cmx io/strLoadNnf.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strLoadCmd.cmx io/strLoadCmd.ml
- File "io/strLoadCmd.ml", line 13, characters 26-34:
- 13 | let my_lexer (stream:char Stream.t) : CmtLexer.stream =
-                                ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCmd.ml", line 65, characters 8-19:
- 65 |   match Stream.peek s with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCmd.ml", line 67, characters 4-15:
- 67 |     Stream.junk s;
-          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCmd.ml", line 73, characters 8-19:
- 73 |   match Stream.peek s with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCmd.ml", line 75, characters 4-15:
- 75 |     Stream.junk s;
-          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCmd.ml", line 134, characters 8-19:
- 134 |   match Stream.peek s with
-               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCmd.ml", line 137, characters 4-15:
- 137 |     Stream.junk s;
-           ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCmd.ml", line 147, characters 18-35:
- 147 |   let prg = load (Stream.of_channel file) in
-                         ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strLoadNnf.cmx io/strLoadNnf.ml
- File "io/strLoadNnf.ml", line 13, characters 28-36:
- 13 | let my_lexer stream : token Stream.t =
-                                  ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 16, characters 14-25:
- 16 |     try match Stream.next stream with
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 21, characters 28-39:
- 21 |   let rec spaces () = match Stream.peek stream with
-                                  ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 23, characters 40-51:
- 23 |   | Some head -> if is_space head then (Stream.junk stream; spaces ()) else ()
-                                              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 26, characters 26-37:
- 26 |     let rec aux s = match Stream.peek stream with
-                                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 31, characters 14-25:
- 31 |         else (Stream.junk stream; aux (c::s))
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 39, characters 25-36:
- 39 |   let rec rmc () = match Stream.peek stream with
-                               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 46, characters 10-21:
- 46 |     match Stream.peek stream with
-                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 54, characters 2-13:
- 54 |   Stream.from aux
-        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 77, characters 29-40:
- 77 | let parse_str stream = match Stream.next stream with
-                                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 81, characters 29-40:
- 81 | let parse_int stream = match Stream.next stream with
-                                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 85, characters 31-39:
- 85 | let parse_module (stream:token Stream.t) : string IoTypes.expr =
-                                     ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 87, characters 14-25:
- 87 |     let tok = Stream.peek stream in
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 88, characters 4-15:
- 88 |     Stream.junk stream;
-          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 97, characters 19-30:
- 97 |   let core = match Stream.next stream with
-                         ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 139, characters 24-32:
- 139 | let load (stream : char Stream.t) : string IoTypes.expr =
-                               ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 140, characters 20-28:
- 140 |   let lexed : token Stream.t = my_lexer stream in
-                           ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 140, characters 20-28:
- 140 |   let lexed : token Stream.t = my_lexer stream in
-                           ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 146, characters 17-34:
- 146 |   let cnf = load(Stream.of_channel file) in
-                        ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I conv -I circuits -I core -I io -I ldd_model -I oops -I src -o conv/convCore.cmx conv/convCore.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I conv -I circuits -I core -I io -I ldd_model -I oops -I src -o conv/convTypesDump.cmx conv/convTypesDump.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I conv -I circuits -I core -I io -I ldd_model -I oops -I src -o conv/conv.cmx conv/conv.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I conv -I circuits -I core -I io -I ldd_model -I oops -I src -o conv/convTypesLoad.cmx conv/convTypesLoad.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I src -I circuits -I conv -I core -I io -I ldd_model -I oops -o src/conv_ext.cmx src/conv_ext.ml
- + ocamlfind ocamlopt -linkpkg -package GuaCaml -package unix -I circuits -I core -I io -I oops -I conv -I ldd_model -I src circuits/expr.cmx core/udag.cmx core/binUbdag.cmx core/binUbdagT.cmx io/cmdTypes.cmx io/ioTypes.cmx circuits/nax.cmx io/cnfTypes.cmx circuits/cnax.cmx io/strDumpCnf.cmx io/cnfUtils.cmx io/strLoadCnf.cmx oops/OOPS.cmx oops/QEOPS.cmx oops/loadCnf.cmx oops/sUInt.cmx oops/vUInt.cmx circuits/cnaxOops.cmx circuits/nnfExpr.cmx circuits/rExpr.cmx conv/convTypes.cmx io/ioUtils.cmx io/strDumpVerilog.cmx conv/convUtils.cmx core/ariUbdag.cmx core/ariUbdagTC.cmx io/cmdUtils.cmx io/strDumpCmd.cmx io/strLoadCmd.cmx io/strLoadNnf.cmx io/strLoadPla.cmx io/strLoadVerilog.cmx ldd_model/ldd_B_o_c10_types.cmx ldd_model/ldd_B_o_c10_gops.cmx oops/OfExprOfOops.cmx oops/OopsGcOfOops.cmx ldd_model/ldd_B_o_c10.cmx ldd_model/tacxTypes.cmx ldd_model/ldd_B_o_nu_types.cmx ldd_model/ldd_B_o_nu_gops.cmx ldd_model/ldd_B_o_u_types.cmx ldd_model/ldd_B_o_u_gops.cmx ldd_model/ldd_B_o_u.cmx ldd_model/ldd_B_o_nu.cmx ldd_model/ldd_B_o_nucx_types.cmx ldd_model/ldd_B_o_nucx_gops.cmx ldd_model/ldd_B_o_nucx.cmx ldd_model/ldd_B_o_uc0_types.cmx ldd_model/ldd_B_o_uc0_gops.cmx ldd_model/ldd_B_o_uc0.cmx ldd_model/ldd_B_u_nu_types.cmx ldd_model/ldd_B_u_nu_io.cmx ldd_model/ldd_B_u_nu_gops.cmx ldd_model/ldd_B_u_nu.cmx ldd_model/ldd_B_u_nuc_types.cmx ldd_model/ldd_B_u_nuc_io.cmx ldd_model/ldd_B_u_nuc_utils.cmx ldd_model/ldd_B_u_nuc_gops.cmx ldd_model/ldd_B_u_nuc.cmx ldd_model/ldd_B_u_nucx_types.cmx ldd_model/ldd_B_u_nucx_utils.cmx ldd_model/ldd_B_u_nucx_check.cmx ldd_model/ldd_B_u_nucx_io.cmx ldd_model/ldd_B_u_nucx_norm.cmx ldd_model/ldd_B_u_nucx_facto.cmx ldd_model/ldd_B_u_nucx_pull.cmx ldd_model/ldd_B_u_nucx_cons.cmx ldd_model/ldd_B_u_nucx_peval.cmx ldd_model/ldd_B_u_nucx_andb.cmx ldd_model/ldd_B_u_nucx_xorb.cmx ldd_model/ldd_B_u_nucx_gops.cmx ldd_model/ldd_B_u_nucx.cmx ldd_model/ldd_B_u_nux_types.cmx ldd_model/ldd_B_u_nux_gops.cmx ldd_model/ldd_B_u_nux_io.cmx ldd_model/ldd_B_u_nux.cmx conv/convCore.cmx conv/convTypesDump.cmx conv/conv.cmx conv/convTypesLoad.cmx src/conv_ext.cmx -o src/conv_ext.native
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I src -I circuits -I conv -I core -I io -I ldd_model -I oops -o src/conv_ext.d.cmo src/conv_ext.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I conv -I circuits -I core -I io -I ldd_model -I oops -I src -o conv/conv.d.cmo conv/conv.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I conv -I circuits -I core -I io -I ldd_model -I oops -I src -o conv/convTypesLoad.d.cmo conv/convTypesLoad.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I conv -I circuits -I core -I io -I ldd_model -I oops -I src -o conv/convCore.d.cmo conv/convCore.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I conv -I circuits -I core -I io -I ldd_model -I oops -I src -o conv/convTypes.d.cmo conv/convTypes.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I conv -I circuits -I core -I io -I ldd_model -I oops -I src -o conv/convTypesDump.d.cmo conv/convTypesDump.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_u.d.cmo ldd_model/ldd_B_o_u.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/cmdUtils.d.cmo io/cmdUtils.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_nu.d.cmo ldd_model/ldd_B_o_nu.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_nucx.d.cmo ldd_model/ldd_B_o_nucx.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_uc0.d.cmo ldd_model/ldd_B_o_uc0.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nu.d.cmo ldd_model/ldd_B_u_nu.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nux.d.cmo ldd_model/ldd_B_u_nux.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strDumpCmd.d.cmo io/strDumpCmd.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strLoadCmd.d.cmo io/strLoadCmd.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strLoadNnf.d.cmo io/strLoadNnf.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strLoadNnf.d.cmo io/strLoadNnf.ml
- File "io/strLoadNnf.ml", line 13, characters 28-36:
- 13 | let my_lexer stream : token Stream.t =
-                                  ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 16, characters 14-25:
- 16 |     try match Stream.next stream with
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 21, characters 28-39:
- 21 |   let rec spaces () = match Stream.peek stream with
-                                  ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 23, characters 40-51:
- 23 |   | Some head -> if is_space head then (Stream.junk stream; spaces ()) else ()
-                                              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 26, characters 26-37:
- 26 |     let rec aux s = match Stream.peek stream with
-                                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 31, characters 14-25:
- 31 |         else (Stream.junk stream; aux (c::s))
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 39, characters 25-36:
- 39 |   let rec rmc () = match Stream.peek stream with
-                               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 46, characters 10-21:
- 46 |     match Stream.peek stream with
-                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 54, characters 2-13:
- 54 |   Stream.from aux
-        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 77, characters 29-40:
- 77 | let parse_str stream = match Stream.next stream with
-                                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 81, characters 29-40:
- 81 | let parse_int stream = match Stream.next stream with
-                                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 85, characters 31-39:
- 85 | let parse_module (stream:token Stream.t) : string IoTypes.expr =
-                                     ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 87, characters 14-25:
- 87 |     let tok = Stream.peek stream in
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 88, characters 4-15:
- 88 |     Stream.junk stream;
-          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 97, characters 19-30:
- 97 |   let core = match Stream.next stream with
-                         ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 139, characters 24-32:
- 139 | let load (stream : char Stream.t) : string IoTypes.expr =
-                               ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 140, characters 20-28:
- 140 |   let lexed : token Stream.t = my_lexer stream in
-                           ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 140, characters 20-28:
- 140 |   let lexed : token Stream.t = my_lexer stream in
-                           ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadNnf.ml", line 146, characters 17-34:
- 146 |   let cnf = load(Stream.of_channel file) in
-                        ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I io -I circuits -I conv -I core -I ldd_model -I oops -I src -o io/strLoadCmd.d.cmo io/strLoadCmd.ml
- File "io/strLoadCmd.ml", line 13, characters 26-34:
- 13 | let my_lexer (stream:char Stream.t) : CmtLexer.stream =
-                                ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCmd.ml", line 65, characters 8-19:
- 65 |   match Stream.peek s with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCmd.ml", line 67, characters 4-15:
- 67 |     Stream.junk s;
-          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCmd.ml", line 73, characters 8-19:
- 73 |   match Stream.peek s with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCmd.ml", line 75, characters 4-15:
- 75 |     Stream.junk s;
-          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCmd.ml", line 134, characters 8-19:
- 134 |   match Stream.peek s with
-               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCmd.ml", line 137, characters 4-15:
- 137 |     Stream.junk s;
-           ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "io/strLoadCmd.ml", line 147, characters 18-35:
- 147 |   let prg = load (Stream.of_channel file) in
-                         ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_nu_gops.d.cmo ldd_model/ldd_B_o_nu_gops.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_nu_types.d.cmo ldd_model/ldd_B_o_nu_types.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/tacxTypes.d.cmo ldd_model/tacxTypes.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_u_gops.d.cmo ldd_model/ldd_B_o_u_gops.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_u_types.d.cmo ldd_model/ldd_B_o_u_types.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_nucx_gops.d.cmo ldd_model/ldd_B_o_nucx_gops.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_nucx_types.d.cmo ldd_model/ldd_B_o_nucx_types.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_uc0_gops.d.cmo ldd_model/ldd_B_o_uc0_gops.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_o_uc0_types.d.cmo ldd_model/ldd_B_o_uc0_types.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nu_gops.d.cmo ldd_model/ldd_B_u_nu_gops.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nu_io.d.cmo ldd_model/ldd_B_u_nu_io.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nu_types.d.cmo ldd_model/ldd_B_u_nu_types.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nux_gops.d.cmo ldd_model/ldd_B_u_nux_gops.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nux_io.d.cmo ldd_model/ldd_B_u_nux_io.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I ldd_model -I circuits -I conv -I core -I io -I oops -I src -o ldd_model/ldd_B_u_nux_types.d.cmo ldd_model/ldd_B_u_nux_types.ml
- + ocamlfind ocamlc -linkpkg -g -package GuaCaml -package unix -I circuits -I core -I io -I oops -I conv -I ldd_model -I src circuits/expr.d.cmo core/udag.d.cmo core/binUbdag.d.cmo core/binUbdagT.d.cmo io/cmdTypes.d.cmo io/ioTypes.d.cmo circuits/nax.d.cmo io/cnfTypes.d.cmo circuits/cnax.d.cmo oops/OOPS.d.cmo io/strDumpCnf.d.cmo io/cnfUtils.d.cmo io/strLoadCnf.d.cmo oops/QEOPS.d.cmo oops/loadCnf.d.cmo oops/sUInt.d.cmo oops/vUInt.d.cmo circuits/cnaxOops.d.cmo conv/convTypes.d.cmo io/ioUtils.d.cmo io/cmdUtils.d.cmo io/strDumpCmd.d.cmo circuits/nnfExpr.d.cmo circuits/rExpr.d.cmo io/strDumpVerilog.d.cmo io/strLoadCmd.d.cmo io/strLoadNnf.d.cmo io/strLoadVerilog.d.cmo conv/convUtils.d.cmo core/ariUbdag.d.cmo core/ariUbdagTC.d.cmo ldd_model/ldd_B_o_c10_types.d.cmo ldd_model/ldd_B_o_c10_gops.d.cmo io/strLoadPla.d.cmo oops/OfExprOfOops.d.cmo oops/OopsGcOfOops.d.cmo ldd_model/ldd_B_o_c10.d.cmo ldd_model/tacxTypes.d.cmo ldd_model/ldd_B_o_nu_types.d.cmo ldd_model/ldd_B_o_nu_gops.d.cmo ldd_model/ldd_B_o_u_types.d.cmo ldd_model/ldd_B_o_u_gops.d.cmo ldd_model/ldd_B_o_u.d.cmo ldd_model/ldd_B_o_nu.d.cmo ldd_model/ldd_B_o_nucx_types.d.cmo ldd_model/ldd_B_o_nucx_gops.d.cmo ldd_model/ldd_B_o_nucx.d.cmo ldd_model/ldd_B_o_uc0_types.d.cmo ldd_model/ldd_B_o_uc0_gops.d.cmo ldd_model/ldd_B_o_uc0.d.cmo ldd_model/ldd_B_u_nu_types.d.cmo ldd_model/ldd_B_u_nu_io.d.cmo ldd_model/ldd_B_u_nu_gops.d.cmo ldd_model/ldd_B_u_nu.d.cmo ldd_model/ldd_B_u_nuc_types.d.cmo ldd_model/ldd_B_u_nuc_io.d.cmo ldd_model/ldd_B_u_nuc_utils.d.cmo ldd_model/ldd_B_u_nuc_gops.d.cmo ldd_model/ldd_B_u_nuc.d.cmo ldd_model/ldd_B_u_nucx_types.d.cmo ldd_model/ldd_B_u_nucx_utils.d.cmo ldd_model/ldd_B_u_nucx_check.d.cmo ldd_model/ldd_B_u_nucx_io.d.cmo ldd_model/ldd_B_u_nucx_norm.d.cmo ldd_model/ldd_B_u_nucx_facto.d.cmo ldd_model/ldd_B_u_nucx_pull.d.cmo ldd_model/ldd_B_u_nucx_cons.d.cmo ldd_model/ldd_B_u_nucx_peval.d.cmo ldd_model/ldd_B_u_nucx_andb.d.cmo ldd_model/ldd_B_u_nucx_xorb.d.cmo ldd_model/ldd_B_u_nucx_gops.d.cmo ldd_model/ldd_B_u_nucx.d.cmo ldd_model/ldd_B_u_nux_types.d.cmo ldd_model/ldd_B_u_nux_gops.d.cmo ldd_model/ldd_B_u_nux_io.d.cmo ldd_model/ldd_B_u_nux.d.cmo conv/convCore.d.cmo conv/convTypesDump.d.cmo conv/conv.d.cmo conv/convTypesLoad.d.cmo src/conv_ext.d.cmo -o src/conv_ext.d.byte
- + ocamlfind ocamldep -package GuaCaml -package unix -modules src/conv_noext.ml > src/conv_noext.ml.depends
- + ocamlfind ocamldep -package GuaCaml -package unix -modules conv/convArgsTypes.ml > conv/convArgsTypes.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I conv -I circuits -I core -I io -I ldd_model -I oops -I src -o conv/convArgsTypes.cmo conv/convArgsTypes.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I src -I circuits -I conv -I core -I io -I ldd_model -I oops -o src/conv_noext.cmo src/conv_noext.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I conv -I circuits -I core -I io -I ldd_model -I oops -I src -o conv/convArgsTypes.cmx conv/convArgsTypes.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I src -I circuits -I conv -I core -I io -I ldd_model -I oops -o src/conv_noext.cmx src/conv_noext.ml
- + ocamlfind ocamlopt -linkpkg -package GuaCaml -package unix -I circuits -I core -I io -I oops -I conv -I ldd_model -I src circuits/expr.cmx core/udag.cmx core/binUbdag.cmx core/binUbdagT.cmx io/cmdTypes.cmx io/ioTypes.cmx circuits/nax.cmx io/cnfTypes.cmx circuits/cnax.cmx io/strDumpCnf.cmx io/cnfUtils.cmx io/strLoadCnf.cmx oops/OOPS.cmx oops/QEOPS.cmx oops/loadCnf.cmx oops/sUInt.cmx oops/vUInt.cmx circuits/cnaxOops.cmx circuits/nnfExpr.cmx circuits/rExpr.cmx conv/convTypes.cmx io/ioUtils.cmx io/strDumpVerilog.cmx conv/convUtils.cmx core/ariUbdag.cmx core/ariUbdagTC.cmx io/cmdUtils.cmx io/strDumpCmd.cmx io/strLoadCmd.cmx io/strLoadNnf.cmx io/strLoadPla.cmx io/strLoadVerilog.cmx ldd_model/ldd_B_o_c10_types.cmx ldd_model/ldd_B_o_c10_gops.cmx oops/OfExprOfOops.cmx oops/OopsGcOfOops.cmx ldd_model/ldd_B_o_c10.cmx ldd_model/tacxTypes.cmx ldd_model/ldd_B_o_nu_types.cmx ldd_model/ldd_B_o_nu_gops.cmx ldd_model/ldd_B_o_u_types.cmx ldd_model/ldd_B_o_u_gops.cmx ldd_model/ldd_B_o_u.cmx ldd_model/ldd_B_o_nu.cmx ldd_model/ldd_B_o_nucx_types.cmx ldd_model/ldd_B_o_nucx_gops.cmx ldd_model/ldd_B_o_nucx.cmx ldd_model/ldd_B_o_uc0_types.cmx ldd_model/ldd_B_o_uc0_gops.cmx ldd_model/ldd_B_o_uc0.cmx ldd_model/ldd_B_u_nu_types.cmx ldd_model/ldd_B_u_nu_io.cmx ldd_model/ldd_B_u_nu_gops.cmx ldd_model/ldd_B_u_nu.cmx ldd_model/ldd_B_u_nuc_types.cmx ldd_model/ldd_B_u_nuc_io.cmx ldd_model/ldd_B_u_nuc_utils.cmx ldd_model/ldd_B_u_nuc_gops.cmx ldd_model/ldd_B_u_nuc.cmx ldd_model/ldd_B_u_nucx_types.cmx ldd_model/ldd_B_u_nucx_utils.cmx ldd_model/ldd_B_u_nucx_check.cmx ldd_model/ldd_B_u_nucx_io.cmx ldd_model/ldd_B_u_nucx_norm.cmx ldd_model/ldd_B_u_nucx_facto.cmx ldd_model/ldd_B_u_nucx_pull.cmx ldd_model/ldd_B_u_nucx_cons.cmx ldd_model/ldd_B_u_nucx_peval.cmx ldd_model/ldd_B_u_nucx_andb.cmx ldd_model/ldd_B_u_nucx_xorb.cmx ldd_model/ldd_B_u_nucx_gops.cmx ldd_model/ldd_B_u_nucx.cmx ldd_model/ldd_B_u_nux_types.cmx ldd_model/ldd_B_u_nux_gops.cmx ldd_model/ldd_B_u_nux_io.cmx ldd_model/ldd_B_u_nux.cmx conv/convCore.cmx conv/convTypesDump.cmx conv/conv.cmx conv/convArgsTypes.cmx conv/convTypesLoad.cmx src/conv_noext.cmx -o src/conv_noext.native
- # Parallel statistics: { count(total): 15(311), max: 9, min: 2, average(total): 3.000(1.096) }
- ocamlbuild -r -j 72   -Is src,core,ldd_model,io,conv,oops,circuits -use-ocamlfind -package GuaCaml -package unix\
- 	ounits/ounit_ldd_B_u_nuc.native \
- 	ounits/ounit_ldd_B_u_nuc.d.byte \
- 	ounits/ounit_ldd_B_u_nucx.native \
- 	ounits/ounit_ldd_B_u_nucx.d.byte
- + ocamlfind ocamlc -config
- + ocamlfind ocamldep -package GuaCaml -package unix -modules ounits/ounit_ldd_B_u_nuc.ml > ounits/ounit_ldd_B_u_nuc.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I ounits -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o ounits/ounit_ldd_B_u_nuc.cmo ounits/ounit_ldd_B_u_nuc.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I ounits -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o ounits/ounit_ldd_B_u_nuc.cmx ounits/ounit_ldd_B_u_nuc.ml
- + ocamlfind ocamlopt -linkpkg -package GuaCaml -package unix -I ldd_model -I ounits ldd_model/ldd_B_u_nuc_types.cmx ldd_model/ldd_B_u_nuc_io.cmx ldd_model/ldd_B_u_nuc_utils.cmx ldd_model/ldd_B_u_nuc_gops.cmx ounits/ounit_ldd_B_u_nuc.cmx -o ounits/ounit_ldd_B_u_nuc.native
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I ounits -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o ounits/ounit_ldd_B_u_nuc.d.cmo ounits/ounit_ldd_B_u_nuc.ml
- + ocamlfind ocamlc -linkpkg -g -package GuaCaml -package unix -I ldd_model -I ounits ldd_model/ldd_B_u_nuc_types.d.cmo ldd_model/ldd_B_u_nuc_io.d.cmo ldd_model/ldd_B_u_nuc_utils.d.cmo ldd_model/ldd_B_u_nuc_gops.d.cmo ounits/ounit_ldd_B_u_nuc.d.cmo -o ounits/ounit_ldd_B_u_nuc.d.byte
- + ocamlfind ocamldep -package GuaCaml -package unix -modules ounits/ounit_ldd_B_u_nucx.ml > ounits/ounit_ldd_B_u_nucx.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I ounits -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o ounits/ounit_ldd_B_u_nucx.cmo ounits/ounit_ldd_B_u_nucx.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I ounits -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o ounits/ounit_ldd_B_u_nucx.cmx ounits/ounit_ldd_B_u_nucx.ml
- + ocamlfind ocamlopt -linkpkg -package GuaCaml -package unix -I ldd_model -I ounits ldd_model/ldd_B_u_nucx_types.cmx ldd_model/ldd_B_u_nucx_utils.cmx ldd_model/ldd_B_u_nucx_check.cmx ldd_model/ldd_B_u_nucx_io.cmx ldd_model/ldd_B_u_nucx_norm.cmx ldd_model/ldd_B_u_nucx_facto.cmx ldd_model/ldd_B_u_nucx_pull.cmx ldd_model/ldd_B_u_nucx_cons.cmx ldd_model/ldd_B_u_nucx_peval.cmx ldd_model/ldd_B_u_nucx_andb.cmx ldd_model/ldd_B_u_nucx_xorb.cmx ounits/ounit_ldd_B_u_nucx.cmx -o ounits/ounit_ldd_B_u_nucx.native
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I ounits -I circuits -I conv -I core -I io -I ldd_model -I oops -I src -o ounits/ounit_ldd_B_u_nucx.d.cmo ounits/ounit_ldd_B_u_nucx.ml
- + ocamlfind ocamlc -linkpkg -g -package GuaCaml -package unix -I ldd_model -I ounits ldd_model/ldd_B_u_nucx_types.d.cmo ldd_model/ldd_B_u_nucx_utils.d.cmo ldd_model/ldd_B_u_nucx_check.d.cmo ldd_model/ldd_B_u_nucx_io.d.cmo ldd_model/ldd_B_u_nucx_norm.d.cmo ldd_model/ldd_B_u_nucx_facto.d.cmo ldd_model/ldd_B_u_nucx_pull.d.cmo ldd_model/ldd_B_u_nucx_cons.d.cmo ldd_model/ldd_B_u_nucx_peval.d.cmo ldd_model/ldd_B_u_nucx_andb.d.cmo ldd_model/ldd_B_u_nucx_xorb.d.cmo ounits/ounit_ldd_B_u_nucx.d.cmo -o ounits/ounit_ldd_B_u_nucx.d.byte
- # No parallelism done
- (mv *.native *.byte ../bin/ &> /dev/null) || true
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/DAGaml.0.01/src'
-> compiled  DAGaml.0.01
-> removed   DAGaml.0.01
Processing  4/4: [DAGaml: make install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "make" "install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/DAGaml.0.01)
- ocamlbuild -r -j 72 -Is src,src/src,src/core,src/ldd_model,src/io,src/conv,src/oops,src/circuits,src/waterfall -use-ocamlfind \
- 	DAGaml.cma \
- 	DAGaml.d.cma \
- 	DAGaml.cmi \
- 	DAGaml.cmx \
- 	DAGaml.cmxa \
- 	DAGaml.cmxs
- + ocamlfind ocamlc -config
- + ocamlfind ocamldep -package GuaCaml -package unix -modules src/circuits/cnax.ml > src/circuits/cnax.ml.depends
- + ocamlfind ocamldep -package GuaCaml -package unix -modules src/core/binUbdag.ml > src/core/binUbdag.ml.depends
- + ocamlfind ocamldep -package GuaCaml -package unix -modules src/core/udag.ml > src/core/udag.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/udag.cmo src/core/udag.ml
- + ocamlfind ocamldep -package GuaCaml -package unix -modules src/core/binUbdagT.ml > src/core/binUbdagT.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/binUbdag.cmo src/core/binUbdag.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/io/cnfTypes.ml > src/io/cnfTypes.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/io/ioTypes.ml > src/io/ioTypes.ml.depends
- + ocamlfind ocamldep -package GuaCaml -package unix -modules src/circuits/expr.ml > src/circuits/expr.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I src/circuits -I src -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/circuits/expr.cmo src/circuits/expr.ml
- + ocamlfind ocamldep -package GuaCaml -package unix -modules src/circuits/nax.ml > src/circuits/nax.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/binUbdagT.cmo src/core/binUbdagT.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/io/cmdTypes.ml > src/io/cmdTypes.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/ioTypes.cmo src/io/ioTypes.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/cmdTypes.cmo src/io/cmdTypes.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/cnfTypes.cmo src/io/cnfTypes.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I src/circuits -I src -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/circuits/nax.cmo src/circuits/nax.ml
- + ocamlfind ocamldep -package GuaCaml -package unix -modules src/circuits/cnaxOops.ml > src/circuits/cnaxOops.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I src/circuits -I src -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/circuits/cnax.cmo src/circuits/cnax.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/oops/loadCnf.ml > src/oops/loadCnf.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/io/cnfUtils.ml > src/io/cnfUtils.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/io/strDumpCnf.ml > src/io/strDumpCnf.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strDumpCnf.cmo src/io/strDumpCnf.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/oops/OOPS.ml > src/oops/OOPS.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/oops/QEOPS.ml > src/oops/QEOPS.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/oops -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/src -o src/oops/OOPS.cmo src/oops/OOPS.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/io/strLoadCnf.ml > src/io/strLoadCnf.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/cnfUtils.cmo src/io/cnfUtils.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/oops -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/src -o src/oops/QEOPS.cmo src/oops/QEOPS.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strLoadCnf.cmo src/io/strLoadCnf.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strLoadCnf.cmo src/io/strLoadCnf.ml
- File "src/io/strLoadCnf.ml", line 7, characters 26-34:
- 7 | let my_lexer (stream:char Stream.t) : BasicLexer.stream =
-                               ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCnf.ml", line 36, characters 8-19:
- 36 |   match Stream.peek stream with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCnf.ml", line 38, characters 4-15:
- 38 |     Stream.junk stream;
-          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCnf.ml", line 42, characters 4-15:
- 42 |     Stream.junk stream;
-          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCnf.ml", line 83, characters 28-45:
- 83 |   let cnf = load_qbf ~sort (Stream.of_channel file) in
-                                  ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCnf.ml", line 90, characters 24-41:
- 90 |   let cnf = load ~sort (Stream.of_channel file) in
-                              ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/oops/sUInt.ml > src/oops/sUInt.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/oops/vUInt.ml > src/oops/vUInt.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/oops -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/src -o src/oops/loadCnf.cmo src/oops/loadCnf.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/oops -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/src -o src/oops/sUInt.cmo src/oops/sUInt.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/oops -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/src -o src/oops/vUInt.cmo src/oops/vUInt.ml
- + ocamlfind ocamldep -package GuaCaml -package unix -modules src/circuits/naxOops.ml > src/circuits/naxOops.ml.depends
- + ocamlfind ocamldep -package GuaCaml -package unix -modules src/circuits/nnfExpr.ml > src/circuits/nnfExpr.ml.depends
- + ocamlfind ocamldep -package GuaCaml -package unix -modules src/circuits/rExpr.ml > src/circuits/rExpr.ml.depends
- + ocamlfind ocamldep -package GuaCaml -package unix -modules src/conv/convArgsTypes.ml > src/conv/convArgsTypes.ml.depends
- + ocamlfind ocamldep -package GuaCaml -package unix -modules src/conv/convCore.ml > src/conv/convCore.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/io/cmdUtils.ml > src/io/cmdUtils.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/io/ioUtils.ml > src/io/ioUtils.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/ioUtils.cmo src/io/ioUtils.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I src/circuits -I src -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/circuits/cnaxOops.cmo src/circuits/cnaxOops.ml
- + ocamlfind ocamldep -package GuaCaml -package unix -modules src/conv/convTypes.ml > src/conv/convTypes.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_o_c10.ml > src/ldd_model/ldd_B_o_c10.ml.depends
- + ocamlfind ocamldep -package GuaCaml -package unix -modules src/core/ariUbdag.ml > src/core/ariUbdag.ml.depends
- + ocamlfind ocamldep -package GuaCaml -package unix -modules src/core/ariUbdagTC.ml > src/core/ariUbdagTC.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/ariUbdag.cmo src/core/ariUbdag.ml
- + ocamlfind ocamldep -package GuaCaml -package unix -modules src/conv/convUtils.ml > src/conv/convUtils.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/io/strDumpVerilog.ml > src/io/strDumpVerilog.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I src/circuits -I src -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/circuits/nnfExpr.cmo src/circuits/nnfExpr.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I src/circuits -I src -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/circuits/rExpr.cmo src/circuits/rExpr.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strDumpVerilog.cmo src/io/strDumpVerilog.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_o_c10_gops.ml > src/ldd_model/ldd_B_o_c10_gops.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_o_c10_types.ml > src/ldd_model/ldd_B_o_c10_types.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_c10_types.cmo src/ldd_model/ldd_B_o_c10_types.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/oops/OfExprOfOops.ml > src/oops/OfExprOfOops.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/io/strLoadPla.ml > src/io/strLoadPla.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/io/strLoadVerilog.ml > src/io/strLoadVerilog.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strLoadPla.cmo src/io/strLoadPla.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strLoadVerilog.cmo src/io/strLoadVerilog.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strLoadPla.cmo src/io/strLoadPla.ml
- File "src/io/strLoadPla.ml", line 11, characters 28-36:
- 11 | let my_lexer stream : token Stream.t =
-                                  ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 14, characters 14-25:
- 14 |     try match Stream.next stream with
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 19, characters 28-39:
- 19 |   let rec spaces () = match Stream.peek stream with
-                                  ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 21, characters 40-51:
- 21 |   | Some head -> if is_space head then (Stream.junk stream; spaces ()) else ()
-                                              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 25, characters 26-37:
- 25 |     let rec aux s = match Stream.peek stream with
-                                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 30, characters 14-25:
- 30 |         else (Stream.junk stream; aux (c::s))
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 40, characters 10-21:
- 40 |     match Stream.peek stream with
-                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 50, characters 14-25:
- 50 |         then (Stream.junk stream; Sym head)
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 55, characters 2-13:
- 55 |   Stream.from aux
-        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 61, characters 17-28:
- 61 |       let char = Stream.next stream in
-                       ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 66, characters 5-16:
- 66 |   in Stream.from aux
-           ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 73, characters 34-45:
- 73 | let rec parse_leaf stream = match Stream.next stream with
-                                        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 91, characters 8-19:
- 91 |   match Stream.next stream with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 114, characters 31-42:
- 114 | let parse_ident stream = match Stream.next stream with
-                                      ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 119, characters 28-39:
- 119 |   let rec aux carry = match Stream.peek stream with
-                                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 124, characters 6-17:
- 124 |       Stream.junk stream;
-             ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 130, characters 8-19:
- 130 |   match Stream.next stream with
-               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 134, characters 37-48:
- 134 | let parse_braket_list stream = match Stream.next stream with
-                                            ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 138, characters 10-21:
- 138 |     match Stream.next stream with
-                 ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 145, characters 28-39:
- 145 |   let rec aux carry = match Stream.next stream with
-                                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 151, characters 35-46:
- 151 | let parse_semicolon stream = match Stream.next stream with
-                                          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 160, characters 29-40:
- 160 | let parse_kwd stream = match Stream.next stream with
-                                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 164, characters 29-40:
- 164 | let parse_sym stream = match Stream.next stream with
-                                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 178, characters 12-23:
- 178 |       match Stream.next stream with
-                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 230, characters 20-37:
- 230 |   let mexpr = load (Stream.of_channel fin) in
-                           ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strLoadVerilog.cmo src/io/strLoadVerilog.ml
- File "src/io/strLoadVerilog.ml", line 16, characters 28-36:
- 16 | let my_lexer stream : token Stream.t =
-                                  ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 18, characters 28-39:
- 18 |   let rec spaces () = match Stream.peek stream with
-                                  ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 20, characters 40-51:
- 20 |   | Some head -> if is_space head then (Stream.junk stream; spaces ()) else ()
-                                              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 35, characters 26-37:
- 35 |     let rec aux s = match Stream.peek stream with
-                                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 40, characters 14-25:
- 40 |         else (Stream.junk stream; aux (c::s))
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 50, characters 10-21:
- 50 |     match Stream.peek stream with
-                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 56, characters 12-23:
- 56 |       then (Stream.junk stream; Sym head)
-                  ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 60, characters 2-13:
- 60 |   Stream.from aux
-        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 67, characters 34-45:
- 67 | let rec parse_leaf stream = match Stream.next stream with
-                                        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 95, characters 8-19:
- 95 |   match Stream.next stream with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 118, characters 31-42:
- 118 | let parse_ident stream = match Stream.next stream with
-                                      ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 123, characters 28-39:
- 123 |   let rec aux carry = match Stream.peek stream with
-                                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 128, characters 6-17:
- 128 |       Stream.junk stream;
-             ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 134, characters 8-19:
- 134 |   match Stream.next stream with
-               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 138, characters 37-48:
- 138 | let parse_braket_list stream = match Stream.next stream with
-                                            ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 142, characters 10-21:
- 142 |     match Stream.next stream with
-                 ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 149, characters 35-46:
- 149 | let parse_semicolon stream = match Stream.next stream with
-                                          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 158, characters 29-40:
- 158 | let parse_kwd stream = match Stream.next stream with
-                                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 162, characters 29-40:
- 162 | let parse_sym stream = match Stream.next stream with
-                                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 177, characters 8-19:
- 177 |   match Stream.next stream with
-               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 215, characters 25-36:
- 215 |   let rec aux () = match Stream.next stream with
-                                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 243, characters 20-37:
- 243 |   let mexpr = load (Stream.of_channel fin) in
-                           ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/oops/OopsGcOfOops.ml > src/oops/OopsGcOfOops.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/ariUbdagTC.cmo src/core/ariUbdagTC.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I src/conv -I src -I src/circuits -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/conv/convUtils.cmo src/conv/convUtils.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_c10_gops.cmo src/ldd_model/ldd_B_o_c10_gops.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/oops -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/src -o src/oops/OfExprOfOops.cmo src/oops/OfExprOfOops.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/oops -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/src -o src/oops/OopsGcOfOops.cmo src/oops/OopsGcOfOops.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_o_nu.ml > src/ldd_model/ldd_B_o_nu.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_o_nu_gops.ml > src/ldd_model/ldd_B_o_nu_gops.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_o_nu_types.ml > src/ldd_model/ldd_B_o_nu_types.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/tacxTypes.ml > src/ldd_model/tacxTypes.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/tacxTypes.cmo src/ldd_model/tacxTypes.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_nu_types.cmo src/ldd_model/ldd_B_o_nu_types.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_o_u.ml > src/ldd_model/ldd_B_o_u.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_o_u_gops.ml > src/ldd_model/ldd_B_o_u_gops.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_o_u_types.ml > src/ldd_model/ldd_B_o_u_types.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_u_types.cmo src/ldd_model/ldd_B_o_u_types.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_u_gops.cmo src/ldd_model/ldd_B_o_u_gops.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_nu_gops.cmo src/ldd_model/ldd_B_o_nu_gops.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_u.cmo src/ldd_model/ldd_B_o_u.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_o_nucx.ml > src/ldd_model/ldd_B_o_nucx.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_o_nucx_gops.ml > src/ldd_model/ldd_B_o_nucx_gops.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_o_nucx_types.ml > src/ldd_model/ldd_B_o_nucx_types.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_nucx_types.cmo src/ldd_model/ldd_B_o_nucx_types.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_nucx_gops.cmo src/ldd_model/ldd_B_o_nucx_gops.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_o_uc0.ml > src/ldd_model/ldd_B_o_uc0.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_o_uc0_gops.ml > src/ldd_model/ldd_B_o_uc0_gops.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_o_uc0_types.ml > src/ldd_model/ldd_B_o_uc0_types.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_uc0_types.cmo src/ldd_model/ldd_B_o_uc0_types.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_uc0_gops.cmo src/ldd_model/ldd_B_o_uc0_gops.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_u_nu.ml > src/ldd_model/ldd_B_u_nu.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_u_nu_gops.ml > src/ldd_model/ldd_B_u_nu_gops.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_u_nu_io.ml > src/ldd_model/ldd_B_u_nu_io.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_u_nu_types.ml > src/ldd_model/ldd_B_u_nu_types.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nu_types.cmo src/ldd_model/ldd_B_u_nu_types.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nu_io.cmo src/ldd_model/ldd_B_u_nu_io.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nu_gops.cmo src/ldd_model/ldd_B_u_nu_gops.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_u_nuc.ml > src/ldd_model/ldd_B_u_nuc.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_u_nuc_gops.ml > src/ldd_model/ldd_B_u_nuc_gops.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_u_nuc_types.ml > src/ldd_model/ldd_B_u_nuc_types.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_u_nuc_utils.ml > src/ldd_model/ldd_B_u_nuc_utils.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_u_nuc_io.ml > src/ldd_model/ldd_B_u_nuc_io.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nuc_types.cmo src/ldd_model/ldd_B_u_nuc_types.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nuc_io.cmo src/ldd_model/ldd_B_u_nuc_io.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nuc_utils.cmo src/ldd_model/ldd_B_u_nuc_utils.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nuc_gops.cmo src/ldd_model/ldd_B_u_nuc_gops.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_u_nucx.ml > src/ldd_model/ldd_B_u_nucx.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_u_nucx_gops.ml > src/ldd_model/ldd_B_u_nucx_gops.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_u_nucx_andb.ml > src/ldd_model/ldd_B_u_nucx_andb.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_u_nucx_check.ml > src/ldd_model/ldd_B_u_nucx_check.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_u_nucx_types.ml > src/ldd_model/ldd_B_u_nucx_types.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_u_nucx_utils.ml > src/ldd_model/ldd_B_u_nucx_utils.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_types.cmo src/ldd_model/ldd_B_u_nucx_types.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_utils.cmo src/ldd_model/ldd_B_u_nucx_utils.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_u_nucx_cons.ml > src/ldd_model/ldd_B_u_nucx_cons.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_check.cmo src/ldd_model/ldd_B_u_nucx_check.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_u_nucx_facto.ml > src/ldd_model/ldd_B_u_nucx_facto.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_u_nucx_io.ml > src/ldd_model/ldd_B_u_nucx_io.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_u_nucx_norm.ml > src/ldd_model/ldd_B_u_nucx_norm.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_io.cmo src/ldd_model/ldd_B_u_nucx_io.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_norm.cmo src/ldd_model/ldd_B_u_nucx_norm.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_u_nucx_pull.ml > src/ldd_model/ldd_B_u_nucx_pull.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_facto.cmo src/ldd_model/ldd_B_u_nucx_facto.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_pull.cmo src/ldd_model/ldd_B_u_nucx_pull.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_u_nucx_peval.ml > src/ldd_model/ldd_B_u_nucx_peval.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_cons.cmo src/ldd_model/ldd_B_u_nucx_cons.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_peval.cmo src/ldd_model/ldd_B_u_nucx_peval.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_u_nucx_xorb.ml > src/ldd_model/ldd_B_u_nucx_xorb.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_andb.cmo src/ldd_model/ldd_B_u_nucx_andb.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_xorb.cmo src/ldd_model/ldd_B_u_nucx_xorb.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_gops.cmo src/ldd_model/ldd_B_u_nucx_gops.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_u_nux.ml > src/ldd_model/ldd_B_u_nux.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_u_nux_gops.ml > src/ldd_model/ldd_B_u_nux_gops.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_u_nux_types.ml > src/ldd_model/ldd_B_u_nux_types.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nux_types.cmo src/ldd_model/ldd_B_u_nux_types.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_u_nux_io.ml > src/ldd_model/ldd_B_u_nux_io.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nux_gops.cmo src/ldd_model/ldd_B_u_nux_gops.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nux_io.cmo src/ldd_model/ldd_B_u_nux_io.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/io/strDumpCmd.ml > src/io/strDumpCmd.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/cmdUtils.cmo src/io/cmdUtils.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/io/strLoadCmd.ml > src/io/strLoadCmd.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/io/strLoadNnf.ml > src/io/strLoadNnf.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I src/conv -I src -I src/circuits -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/conv/convTypes.cmo src/conv/convTypes.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_c10.cmo src/ldd_model/ldd_B_o_c10.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_nu.cmo src/ldd_model/ldd_B_o_nu.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_nucx.cmo src/ldd_model/ldd_B_o_nucx.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_uc0.cmo src/ldd_model/ldd_B_o_uc0.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nu.cmo src/ldd_model/ldd_B_u_nu.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nuc.cmo src/ldd_model/ldd_B_u_nuc.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx.cmo src/ldd_model/ldd_B_u_nucx.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nux.cmo src/ldd_model/ldd_B_u_nux.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strDumpCmd.cmo src/io/strDumpCmd.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strLoadCmd.cmo src/io/strLoadCmd.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strLoadNnf.cmo src/io/strLoadNnf.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strLoadCmd.cmo src/io/strLoadCmd.ml
- File "src/io/strLoadCmd.ml", line 13, characters 26-34:
- 13 | let my_lexer (stream:char Stream.t) : CmtLexer.stream =
-                                ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 65, characters 8-19:
- 65 |   match Stream.peek s with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 67, characters 4-15:
- 67 |     Stream.junk s;
-          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 73, characters 8-19:
- 73 |   match Stream.peek s with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 75, characters 4-15:
- 75 |     Stream.junk s;
-          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 134, characters 8-19:
- 134 |   match Stream.peek s with
-               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 137, characters 4-15:
- 137 |     Stream.junk s;
-           ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 147, characters 18-35:
- 147 |   let prg = load (Stream.of_channel file) in
-                         ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strLoadNnf.cmo src/io/strLoadNnf.ml
- File "src/io/strLoadNnf.ml", line 13, characters 28-36:
- 13 | let my_lexer stream : token Stream.t =
-                                  ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 16, characters 14-25:
- 16 |     try match Stream.next stream with
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 21, characters 28-39:
- 21 |   let rec spaces () = match Stream.peek stream with
-                                  ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 23, characters 40-51:
- 23 |   | Some head -> if is_space head then (Stream.junk stream; spaces ()) else ()
-                                              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 26, characters 26-37:
- 26 |     let rec aux s = match Stream.peek stream with
-                                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 31, characters 14-25:
- 31 |         else (Stream.junk stream; aux (c::s))
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 39, characters 25-36:
- 39 |   let rec rmc () = match Stream.peek stream with
-                               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 46, characters 10-21:
- 46 |     match Stream.peek stream with
-                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 54, characters 2-13:
- 54 |   Stream.from aux
-        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 77, characters 29-40:
- 77 | let parse_str stream = match Stream.next stream with
-                                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 81, characters 29-40:
- 81 | let parse_int stream = match Stream.next stream with
-                                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 85, characters 31-39:
- 85 | let parse_module (stream:token Stream.t) : string IoTypes.expr =
-                                     ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 87, characters 14-25:
- 87 |     let tok = Stream.peek stream in
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 88, characters 4-15:
- 88 |     Stream.junk stream;
-          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 97, characters 19-30:
- 97 |   let core = match Stream.next stream with
-                         ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 139, characters 24-32:
- 139 | let load (stream : char Stream.t) : string IoTypes.expr =
-                               ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 140, characters 20-28:
- 140 |   let lexed : token Stream.t = my_lexer stream in
-                           ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 140, characters 20-28:
- 140 |   let lexed : token Stream.t = my_lexer stream in
-                           ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 146, characters 17-34:
- 146 |   let cnf = load(Stream.of_channel file) in
-                        ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamldep -package GuaCaml -package unix -modules src/conv/conv.ml > src/conv/conv.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I src/conv -I src -I src/circuits -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/conv/convCore.cmo src/conv/convCore.ml
- + ocamlfind ocamldep -package GuaCaml -package unix -modules src/conv/convTypesDump.ml > src/conv/convTypesDump.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I src/conv -I src -I src/circuits -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/conv/convTypesDump.cmo src/conv/convTypesDump.ml
- + ocamlfind ocamldep -package GuaCaml -package unix -modules src/conv/convTypesLoad.ml > src/conv/convTypesLoad.ml.depends
- + ocamlfind ocamldep -package GuaCaml -package unix -modules src/core/ariUbdagT.ml > src/core/ariUbdagT.ml.depends
- + ocamlfind ocamldep -package GuaCaml -package unix -modules src/core/binUbdagTC.ml > src/core/binUbdagTC.ml.depends
- + ocamlfind ocamldep -package GuaCaml -package unix -modules src/core/subdag.ml > src/core/subdag.ml.depends
- + ocamlfind ocamldep -package GuaCaml -package unix -modules src/core/ubdag.ml > src/core/ubdag.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/ubdag.cmo src/core/ubdag.ml
- + ocamlfind ocamldep -package GuaCaml -package unix -modules src/core/taggedSubdag.ml > src/core/taggedSubdag.ml.depends
- + ocamlfind ocamldep -package GuaCaml -package unix -modules src/core/taggedSubdagPropa.ml > src/core/taggedSubdagPropa.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/testBUtils.ml > src/ldd_model/testBUtils.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/oops/AQEOPS.ml > src/oops/AQEOPS.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I src/circuits -I src -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/circuits/naxOops.cmo src/circuits/naxOops.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I src/conv -I src -I src/circuits -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/conv/convArgsTypes.cmo src/conv/convArgsTypes.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I src/conv -I src -I src/circuits -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/conv/conv.cmo src/conv/conv.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I src/conv -I src -I src/circuits -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/conv/convTypesLoad.cmo src/conv/convTypesLoad.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/ariUbdagT.cmo src/core/ariUbdagT.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/binUbdagTC.cmo src/core/binUbdagTC.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/subdag.cmo src/core/subdag.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/taggedSubdag.cmo src/core/taggedSubdag.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/taggedSubdagPropa.cmo src/core/taggedSubdagPropa.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/testBUtils.cmo src/ldd_model/testBUtils.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/oops -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/src -o src/oops/AQEOPS.cmo src/oops/AQEOPS.ml
- + ocamlfind ocamlc -pack src/circuits/expr.cmo src/core/udag.cmo src/core/binUbdag.cmo src/core/binUbdagT.cmo src/io/cmdTypes.cmo src/io/ioTypes.cmo src/circuits/nax.cmo src/io/cnfTypes.cmo src/circuits/cnax.cmo src/oops/OOPS.cmo src/io/strDumpCnf.cmo src/io/cnfUtils.cmo src/io/strLoadCnf.cmo src/oops/QEOPS.cmo src/oops/loadCnf.cmo src/oops/sUInt.cmo src/oops/vUInt.cmo src/circuits/cnaxOops.cmo src/circuits/naxOops.cmo src/circuits/nnfExpr.cmo src/circuits/rExpr.cmo src/conv/convArgsTypes.cmo src/conv/convTypes.cmo src/io/ioUtils.cmo src/io/cmdUtils.cmo src/io/strDumpCmd.cmo src/io/strDumpVerilog.cmo src/io/strLoadCmd.cmo src/io/strLoadNnf.cmo src/io/strLoadVerilog.cmo src/conv/convUtils.cmo src/core/ariUbdag.cmo src/core/ariUbdagTC.cmo src/ldd_model/ldd_B_o_c10_types.cmo src/ldd_model/ldd_B_o_c10_gops.cmo src/io/strLoadPla.cmo src/oops/OfExprOfOops.cmo src/oops/OopsGcOfOops.cmo src/ldd_model/ldd_B_o_c10.cmo src/ldd_model/tacxTypes.cmo src/ldd_model/ldd_B_o_nu_types.cmo src/ldd_model/ldd_B_o_nu_gops.cmo src/ldd_model/ldd_B_o_u_types.cmo src/ldd_model/ldd_B_o_u_gops.cmo src/ldd_model/ldd_B_o_u.cmo src/ldd_model/ldd_B_o_nu.cmo src/ldd_model/ldd_B_o_nucx_types.cmo src/ldd_model/ldd_B_o_nucx_gops.cmo src/ldd_model/ldd_B_o_nucx.cmo src/ldd_model/ldd_B_o_uc0_types.cmo src/ldd_model/ldd_B_o_uc0_gops.cmo src/ldd_model/ldd_B_o_uc0.cmo src/ldd_model/ldd_B_u_nu_types.cmo src/ldd_model/ldd_B_u_nu_io.cmo src/ldd_model/ldd_B_u_nu_gops.cmo src/ldd_model/ldd_B_u_nu.cmo src/ldd_model/ldd_B_u_nuc_types.cmo src/ldd_model/ldd_B_u_nuc_io.cmo src/ldd_model/ldd_B_u_nuc_utils.cmo src/ldd_model/ldd_B_u_nuc_gops.cmo src/ldd_model/ldd_B_u_nuc.cmo src/ldd_model/ldd_B_u_nucx_types.cmo src/ldd_model/ldd_B_u_nucx_utils.cmo src/ldd_model/ldd_B_u_nucx_check.cmo src/ldd_model/ldd_B_u_nucx_io.cmo src/ldd_model/ldd_B_u_nucx_norm.cmo src/ldd_model/ldd_B_u_nucx_facto.cmo src/ldd_model/ldd_B_u_nucx_pull.cmo src/ldd_model/ldd_B_u_nucx_cons.cmo src/ldd_model/ldd_B_u_nucx_peval.cmo src/ldd_model/ldd_B_u_nucx_andb.cmo src/ldd_model/ldd_B_u_nucx_xorb.cmo src/ldd_model/ldd_B_u_nucx_gops.cmo src/ldd_model/ldd_B_u_nucx.cmo src/ldd_model/ldd_B_u_nux_types.cmo src/ldd_model/ldd_B_u_nux_gops.cmo src/ldd_model/ldd_B_u_nux_io.cmo src/ldd_model/ldd_B_u_nux.cmo src/conv/convCore.cmo src/conv/convTypesDump.cmo src/conv/conv.cmo src/conv/convTypesLoad.cmo src/core/ariUbdagT.cmo src/core/binUbdagTC.cmo src/core/ubdag.cmo src/core/subdag.cmo src/core/taggedSubdag.cmo src/core/taggedSubdagPropa.cmo src/ldd_model/testBUtils.cmo src/oops/AQEOPS.cmo -o DAGaml.cmo
- + ocamlfind ocamlc -a DAGaml.cmo -o DAGaml.cma
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I src/circuits -I src -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/circuits/cnax.d.cmo src/circuits/cnax.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I src/circuits -I src -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/circuits/cnaxOops.d.cmo src/circuits/cnaxOops.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I src/circuits -I src -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/circuits/expr.d.cmo src/circuits/expr.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I src/circuits -I src -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/circuits/nax.d.cmo src/circuits/nax.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I src/circuits -I src -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/circuits/naxOops.d.cmo src/circuits/naxOops.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I src/circuits -I src -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/circuits/nnfExpr.d.cmo src/circuits/nnfExpr.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I src/circuits -I src -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/circuits/rExpr.d.cmo src/circuits/rExpr.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I src/conv -I src -I src/circuits -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/conv/convArgsTypes.d.cmo src/conv/convArgsTypes.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I src/conv -I src -I src/circuits -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/conv/convCore.d.cmo src/conv/convCore.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I src/conv -I src -I src/circuits -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/conv/conv.d.cmo src/conv/conv.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I src/conv -I src -I src/circuits -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/conv/convTypesDump.d.cmo src/conv/convTypesDump.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I src/conv -I src -I src/circuits -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/conv/convTypesLoad.d.cmo src/conv/convTypesLoad.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I src/conv -I src -I src/circuits -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/conv/convTypes.d.cmo src/conv/convTypes.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I src/conv -I src -I src/circuits -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/conv/convUtils.d.cmo src/conv/convUtils.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/ariUbdag.d.cmo src/core/ariUbdag.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/ariUbdagTC.d.cmo src/core/ariUbdagTC.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/ariUbdagT.d.cmo src/core/ariUbdagT.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/binUbdag.d.cmo src/core/binUbdag.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/binUbdagTC.d.cmo src/core/binUbdagTC.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/binUbdagT.d.cmo src/core/binUbdagT.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/subdag.d.cmo src/core/subdag.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/taggedSubdag.d.cmo src/core/taggedSubdag.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/taggedSubdagPropa.d.cmo src/core/taggedSubdagPropa.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/ubdag.d.cmo src/core/ubdag.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/udag.d.cmo src/core/udag.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/cmdTypes.d.cmo src/io/cmdTypes.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/cmdUtils.d.cmo src/io/cmdUtils.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/cnfTypes.d.cmo src/io/cnfTypes.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/cnfUtils.d.cmo src/io/cnfUtils.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/ioTypes.d.cmo src/io/ioTypes.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/ioUtils.d.cmo src/io/ioUtils.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strDumpCmd.d.cmo src/io/strDumpCmd.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strDumpCnf.d.cmo src/io/strDumpCnf.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strDumpVerilog.d.cmo src/io/strDumpVerilog.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strLoadCmd.d.cmo src/io/strLoadCmd.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strLoadCnf.d.cmo src/io/strLoadCnf.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strLoadNnf.d.cmo src/io/strLoadNnf.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strLoadPla.d.cmo src/io/strLoadPla.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strLoadVerilog.d.cmo src/io/strLoadVerilog.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_c10_gops.d.cmo src/ldd_model/ldd_B_o_c10_gops.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_c10.d.cmo src/ldd_model/ldd_B_o_c10.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_c10_types.d.cmo src/ldd_model/ldd_B_o_c10_types.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_nucx_gops.d.cmo src/ldd_model/ldd_B_o_nucx_gops.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_nucx.d.cmo src/ldd_model/ldd_B_o_nucx.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_nucx_types.d.cmo src/ldd_model/ldd_B_o_nucx_types.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_nu_gops.d.cmo src/ldd_model/ldd_B_o_nu_gops.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_nu.d.cmo src/ldd_model/ldd_B_o_nu.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_nu_types.d.cmo src/ldd_model/ldd_B_o_nu_types.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_uc0_gops.d.cmo src/ldd_model/ldd_B_o_uc0_gops.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_uc0.d.cmo src/ldd_model/ldd_B_o_uc0.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_uc0_types.d.cmo src/ldd_model/ldd_B_o_uc0_types.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_u_gops.d.cmo src/ldd_model/ldd_B_o_u_gops.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_u.d.cmo src/ldd_model/ldd_B_o_u.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_u_types.d.cmo src/ldd_model/ldd_B_o_u_types.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nuc_gops.d.cmo src/ldd_model/ldd_B_u_nuc_gops.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nuc_io.d.cmo src/ldd_model/ldd_B_u_nuc_io.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nuc.d.cmo src/ldd_model/ldd_B_u_nuc.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nuc_types.d.cmo src/ldd_model/ldd_B_u_nuc_types.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nuc_utils.d.cmo src/ldd_model/ldd_B_u_nuc_utils.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_andb.d.cmo src/ldd_model/ldd_B_u_nucx_andb.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_check.d.cmo src/ldd_model/ldd_B_u_nucx_check.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_cons.d.cmo src/ldd_model/ldd_B_u_nucx_cons.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_facto.d.cmo src/ldd_model/ldd_B_u_nucx_facto.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_gops.d.cmo src/ldd_model/ldd_B_u_nucx_gops.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_io.d.cmo src/ldd_model/ldd_B_u_nucx_io.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx.d.cmo src/ldd_model/ldd_B_u_nucx.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_norm.d.cmo src/ldd_model/ldd_B_u_nucx_norm.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_peval.d.cmo src/ldd_model/ldd_B_u_nucx_peval.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_pull.d.cmo src/ldd_model/ldd_B_u_nucx_pull.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_types.d.cmo src/ldd_model/ldd_B_u_nucx_types.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_utils.d.cmo src/ldd_model/ldd_B_u_nucx_utils.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_xorb.d.cmo src/ldd_model/ldd_B_u_nucx_xorb.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strLoadNnf.d.cmo src/io/strLoadNnf.ml
- File "src/io/strLoadNnf.ml", line 13, characters 28-36:
- 13 | let my_lexer stream : token Stream.t =
-                                  ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 16, characters 14-25:
- 16 |     try match Stream.next stream with
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 21, characters 28-39:
- 21 |   let rec spaces () = match Stream.peek stream with
-                                  ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 23, characters 40-51:
- 23 |   | Some head -> if is_space head then (Stream.junk stream; spaces ()) else ()
-                                              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 26, characters 26-37:
- 26 |     let rec aux s = match Stream.peek stream with
-                                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 31, characters 14-25:
- 31 |         else (Stream.junk stream; aux (c::s))
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 39, characters 25-36:
- 39 |   let rec rmc () = match Stream.peek stream with
-                               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 46, characters 10-21:
- 46 |     match Stream.peek stream with
-                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 54, characters 2-13:
- 54 |   Stream.from aux
-        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 77, characters 29-40:
- 77 | let parse_str stream = match Stream.next stream with
-                                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 81, characters 29-40:
- 81 | let parse_int stream = match Stream.next stream with
-                                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 85, characters 31-39:
- 85 | let parse_module (stream:token Stream.t) : string IoTypes.expr =
-                                     ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 87, characters 14-25:
- 87 |     let tok = Stream.peek stream in
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 88, characters 4-15:
- 88 |     Stream.junk stream;
-          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 97, characters 19-30:
- 97 |   let core = match Stream.next stream with
-                         ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 139, characters 24-32:
- 139 | let load (stream : char Stream.t) : string IoTypes.expr =
-                               ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 140, characters 20-28:
- 140 |   let lexed : token Stream.t = my_lexer stream in
-                           ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 140, characters 20-28:
- 140 |   let lexed : token Stream.t = my_lexer stream in
-                           ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 146, characters 17-34:
- 146 |   let cnf = load(Stream.of_channel file) in
-                        ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nu_gops.d.cmo src/ldd_model/ldd_B_u_nu_gops.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nu_io.d.cmo src/ldd_model/ldd_B_u_nu_io.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nu.d.cmo src/ldd_model/ldd_B_u_nu.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nu_types.d.cmo src/ldd_model/ldd_B_u_nu_types.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nux_gops.d.cmo src/ldd_model/ldd_B_u_nux_gops.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nux_io.d.cmo src/ldd_model/ldd_B_u_nux_io.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nux.d.cmo src/ldd_model/ldd_B_u_nux.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nux_types.d.cmo src/ldd_model/ldd_B_u_nux_types.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/tacxTypes.d.cmo src/ldd_model/tacxTypes.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/testBUtils.d.cmo src/ldd_model/testBUtils.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/oops -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/src -o src/oops/AQEOPS.d.cmo src/oops/AQEOPS.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/oops -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/src -o src/oops/loadCnf.d.cmo src/oops/loadCnf.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/oops -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/src -o src/oops/OfExprOfOops.d.cmo src/oops/OfExprOfOops.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/oops -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/src -o src/oops/OopsGcOfOops.d.cmo src/oops/OopsGcOfOops.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strLoadCmd.d.cmo src/io/strLoadCmd.ml
- File "src/io/strLoadCmd.ml", line 13, characters 26-34:
- 13 | let my_lexer (stream:char Stream.t) : CmtLexer.stream =
-                                ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 65, characters 8-19:
- 65 |   match Stream.peek s with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 67, characters 4-15:
- 67 |     Stream.junk s;
-          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 73, characters 8-19:
- 73 |   match Stream.peek s with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 75, characters 4-15:
- 75 |     Stream.junk s;
-          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 134, characters 8-19:
- 134 |   match Stream.peek s with
-               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 137, characters 4-15:
- 137 |     Stream.junk s;
-           ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 147, characters 18-35:
- 147 |   let prg = load (Stream.of_channel file) in
-                         ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/oops -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/src -o src/oops/OOPS.d.cmo src/oops/OOPS.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/oops -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/src -o src/oops/QEOPS.d.cmo src/oops/QEOPS.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/oops -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/src -o src/oops/sUInt.d.cmo src/oops/sUInt.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/oops -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/src -o src/oops/vUInt.d.cmo src/oops/vUInt.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strLoadCnf.d.cmo src/io/strLoadCnf.ml
- File "src/io/strLoadCnf.ml", line 7, characters 26-34:
- 7 | let my_lexer (stream:char Stream.t) : BasicLexer.stream =
-                               ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCnf.ml", line 36, characters 8-19:
- 36 |   match Stream.peek stream with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCnf.ml", line 38, characters 4-15:
- 38 |     Stream.junk stream;
-          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCnf.ml", line 42, characters 4-15:
- 42 |     Stream.junk stream;
-          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCnf.ml", line 83, characters 28-45:
- 83 |   let cnf = load_qbf ~sort (Stream.of_channel file) in
-                                  ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCnf.ml", line 90, characters 24-41:
- 90 |   let cnf = load ~sort (Stream.of_channel file) in
-                              ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strLoadVerilog.d.cmo src/io/strLoadVerilog.ml
- File "src/io/strLoadVerilog.ml", line 16, characters 28-36:
- 16 | let my_lexer stream : token Stream.t =
-                                  ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 18, characters 28-39:
- 18 |   let rec spaces () = match Stream.peek stream with
-                                  ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 20, characters 40-51:
- 20 |   | Some head -> if is_space head then (Stream.junk stream; spaces ()) else ()
-                                              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 35, characters 26-37:
- 35 |     let rec aux s = match Stream.peek stream with
-                                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 40, characters 14-25:
- 40 |         else (Stream.junk stream; aux (c::s))
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 50, characters 10-21:
- 50 |     match Stream.peek stream with
-                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 56, characters 12-23:
- 56 |       then (Stream.junk stream; Sym head)
-                  ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 60, characters 2-13:
- 60 |   Stream.from aux
-        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 67, characters 34-45:
- 67 | let rec parse_leaf stream = match Stream.next stream with
-                                        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 95, characters 8-19:
- 95 |   match Stream.next stream with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 118, characters 31-42:
- 118 | let parse_ident stream = match Stream.next stream with
-                                      ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 123, characters 28-39:
- 123 |   let rec aux carry = match Stream.peek stream with
-                                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 128, characters 6-17:
- 128 |       Stream.junk stream;
-             ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 134, characters 8-19:
- 134 |   match Stream.next stream with
-               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 138, characters 37-48:
- 138 | let parse_braket_list stream = match Stream.next stream with
-                                            ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 142, characters 10-21:
- 142 |     match Stream.next stream with
-                 ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 149, characters 35-46:
- 149 | let parse_semicolon stream = match Stream.next stream with
-                                          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 158, characters 29-40:
- 158 | let parse_kwd stream = match Stream.next stream with
-                                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 162, characters 29-40:
- 162 | let parse_sym stream = match Stream.next stream with
-                                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 177, characters 8-19:
- 177 |   match Stream.next stream with
-               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 215, characters 25-36:
- 215 |   let rec aux () = match Stream.next stream with
-                                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 243, characters 20-37:
- 243 |   let mexpr = load (Stream.of_channel fin) in
-                           ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strLoadPla.d.cmo src/io/strLoadPla.ml
- File "src/io/strLoadPla.ml", line 11, characters 28-36:
- 11 | let my_lexer stream : token Stream.t =
-                                  ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 14, characters 14-25:
- 14 |     try match Stream.next stream with
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 19, characters 28-39:
- 19 |   let rec spaces () = match Stream.peek stream with
-                                  ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 21, characters 40-51:
- 21 |   | Some head -> if is_space head then (Stream.junk stream; spaces ()) else ()
-                                              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 25, characters 26-37:
- 25 |     let rec aux s = match Stream.peek stream with
-                                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 30, characters 14-25:
- 30 |         else (Stream.junk stream; aux (c::s))
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 40, characters 10-21:
- 40 |     match Stream.peek stream with
-                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 50, characters 14-25:
- 50 |         then (Stream.junk stream; Sym head)
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 55, characters 2-13:
- 55 |   Stream.from aux
-        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 61, characters 17-28:
- 61 |       let char = Stream.next stream in
-                       ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 66, characters 5-16:
- 66 |   in Stream.from aux
-           ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 73, characters 34-45:
- 73 | let rec parse_leaf stream = match Stream.next stream with
-                                        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 91, characters 8-19:
- 91 |   match Stream.next stream with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 114, characters 31-42:
- 114 | let parse_ident stream = match Stream.next stream with
-                                      ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 119, characters 28-39:
- 119 |   let rec aux carry = match Stream.peek stream with
-                                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 124, characters 6-17:
- 124 |       Stream.junk stream;
-             ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 130, characters 8-19:
- 130 |   match Stream.next stream with
-               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 134, characters 37-48:
- 134 | let parse_braket_list stream = match Stream.next stream with
-                                            ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 138, characters 10-21:
- 138 |     match Stream.next stream with
-                 ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 145, characters 28-39:
- 145 |   let rec aux carry = match Stream.next stream with
-                                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 151, characters 35-46:
- 151 | let parse_semicolon stream = match Stream.next stream with
-                                          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 160, characters 29-40:
- 160 | let parse_kwd stream = match Stream.next stream with
-                                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 164, characters 29-40:
- 164 | let parse_sym stream = match Stream.next stream with
-                                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 178, characters 12-23:
- 178 |       match Stream.next stream with
-                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 230, characters 20-37:
- 230 |   let mexpr = load (Stream.of_channel fin) in
-                           ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamlc -pack -g src/circuits/expr.d.cmo src/core/udag.d.cmo src/core/binUbdag.d.cmo src/core/binUbdagT.d.cmo src/io/cmdTypes.d.cmo src/io/ioTypes.d.cmo src/circuits/nax.d.cmo src/io/cnfTypes.d.cmo src/circuits/cnax.d.cmo src/oops/OOPS.d.cmo src/io/strDumpCnf.d.cmo src/io/cnfUtils.d.cmo src/io/strLoadCnf.d.cmo src/oops/QEOPS.d.cmo src/oops/loadCnf.d.cmo src/oops/sUInt.d.cmo src/oops/vUInt.d.cmo src/circuits/cnaxOops.d.cmo src/circuits/naxOops.d.cmo src/circuits/nnfExpr.d.cmo src/circuits/rExpr.d.cmo src/conv/convArgsTypes.d.cmo src/conv/convTypes.d.cmo src/io/ioUtils.d.cmo src/io/cmdUtils.d.cmo src/io/strDumpCmd.d.cmo src/io/strDumpVerilog.d.cmo src/io/strLoadCmd.d.cmo src/io/strLoadNnf.d.cmo src/io/strLoadVerilog.d.cmo src/conv/convUtils.d.cmo src/core/ariUbdag.d.cmo src/core/ariUbdagTC.d.cmo src/ldd_model/ldd_B_o_c10_types.d.cmo src/ldd_model/ldd_B_o_c10_gops.d.cmo src/io/strLoadPla.d.cmo src/oops/OfExprOfOops.d.cmo src/oops/OopsGcOfOops.d.cmo src/ldd_model/ldd_B_o_c10.d.cmo src/ldd_model/tacxTypes.d.cmo src/ldd_model/ldd_B_o_nu_types.d.cmo src/ldd_model/ldd_B_o_nu_gops.d.cmo src/ldd_model/ldd_B_o_u_types.d.cmo src/ldd_model/ldd_B_o_u_gops.d.cmo src/ldd_model/ldd_B_o_u.d.cmo src/ldd_model/ldd_B_o_nu.d.cmo src/ldd_model/ldd_B_o_nucx_types.d.cmo src/ldd_model/ldd_B_o_nucx_gops.d.cmo src/ldd_model/ldd_B_o_nucx.d.cmo src/ldd_model/ldd_B_o_uc0_types.d.cmo src/ldd_model/ldd_B_o_uc0_gops.d.cmo src/ldd_model/ldd_B_o_uc0.d.cmo src/ldd_model/ldd_B_u_nu_types.d.cmo src/ldd_model/ldd_B_u_nu_io.d.cmo src/ldd_model/ldd_B_u_nu_gops.d.cmo src/ldd_model/ldd_B_u_nu.d.cmo src/ldd_model/ldd_B_u_nuc_types.d.cmo src/ldd_model/ldd_B_u_nuc_io.d.cmo src/ldd_model/ldd_B_u_nuc_utils.d.cmo src/ldd_model/ldd_B_u_nuc_gops.d.cmo src/ldd_model/ldd_B_u_nuc.d.cmo src/ldd_model/ldd_B_u_nucx_types.d.cmo src/ldd_model/ldd_B_u_nucx_utils.d.cmo src/ldd_model/ldd_B_u_nucx_check.d.cmo src/ldd_model/ldd_B_u_nucx_io.d.cmo src/ldd_model/ldd_B_u_nucx_norm.d.cmo src/ldd_model/ldd_B_u_nucx_facto.d.cmo src/ldd_model/ldd_B_u_nucx_pull.d.cmo src/ldd_model/ldd_B_u_nucx_cons.d.cmo src/ldd_model/ldd_B_u_nucx_peval.d.cmo src/ldd_model/ldd_B_u_nucx_andb.d.cmo src/ldd_model/ldd_B_u_nucx_xorb.d.cmo src/ldd_model/ldd_B_u_nucx_gops.d.cmo src/ldd_model/ldd_B_u_nucx.d.cmo src/ldd_model/ldd_B_u_nux_types.d.cmo src/ldd_model/ldd_B_u_nux_gops.d.cmo src/ldd_model/ldd_B_u_nux_io.d.cmo src/ldd_model/ldd_B_u_nux.d.cmo src/conv/convCore.d.cmo src/conv/convTypesDump.d.cmo src/conv/conv.d.cmo src/conv/convTypesLoad.d.cmo src/core/ariUbdagT.d.cmo src/core/binUbdagTC.d.cmo src/core/ubdag.d.cmo src/core/subdag.d.cmo src/core/taggedSubdag.d.cmo src/core/taggedSubdagPropa.d.cmo src/ldd_model/testBUtils.d.cmo src/oops/AQEOPS.d.cmo -o DAGaml.d.cmo
- + ocamlfind ocamlc -a DAGaml.d.cmo -o DAGaml.d.cma
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/udag.cmx src/core/udag.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/binUbdag.cmx src/core/binUbdag.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I src/circuits -I src -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/circuits/expr.cmx src/circuits/expr.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/binUbdagT.cmx src/core/binUbdagT.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/ioTypes.cmx src/io/ioTypes.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/cmdTypes.cmx src/io/cmdTypes.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/cnfTypes.cmx src/io/cnfTypes.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I src/circuits -I src -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/circuits/nax.cmx src/circuits/nax.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I src/circuits -I src -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/circuits/cnax.cmx src/circuits/cnax.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strDumpCnf.cmx src/io/strDumpCnf.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/oops -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/src -o src/oops/OOPS.cmx src/oops/OOPS.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/cnfUtils.cmx src/io/cnfUtils.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/oops -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/src -o src/oops/QEOPS.cmx src/oops/QEOPS.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strLoadCnf.cmx src/io/strLoadCnf.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strLoadCnf.cmx src/io/strLoadCnf.ml
- File "src/io/strLoadCnf.ml", line 7, characters 26-34:
- 7 | let my_lexer (stream:char Stream.t) : BasicLexer.stream =
-                               ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCnf.ml", line 36, characters 8-19:
- 36 |   match Stream.peek stream with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCnf.ml", line 38, characters 4-15:
- 38 |     Stream.junk stream;
-          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCnf.ml", line 42, characters 4-15:
- 42 |     Stream.junk stream;
-          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCnf.ml", line 83, characters 28-45:
- 83 |   let cnf = load_qbf ~sort (Stream.of_channel file) in
-                                  ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCnf.ml", line 90, characters 24-41:
- 90 |   let cnf = load ~sort (Stream.of_channel file) in
-                              ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/oops -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/src -o src/oops/loadCnf.cmx src/oops/loadCnf.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/oops -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/src -o src/oops/sUInt.cmx src/oops/sUInt.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/oops -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/src -o src/oops/vUInt.cmx src/oops/vUInt.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/ioUtils.cmx src/io/ioUtils.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I src/circuits -I src -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/circuits/cnaxOops.cmx src/circuits/cnaxOops.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/ariUbdag.cmx src/core/ariUbdag.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I src/circuits -I src -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/circuits/nnfExpr.cmx src/circuits/nnfExpr.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I src/circuits -I src -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/circuits/rExpr.cmx src/circuits/rExpr.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strDumpVerilog.cmx src/io/strDumpVerilog.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_c10_types.cmx src/ldd_model/ldd_B_o_c10_types.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strLoadPla.cmx src/io/strLoadPla.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strLoadVerilog.cmx src/io/strLoadVerilog.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strLoadVerilog.cmx src/io/strLoadVerilog.ml
- File "src/io/strLoadVerilog.ml", line 16, characters 28-36:
- 16 | let my_lexer stream : token Stream.t =
-                                  ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 18, characters 28-39:
- 18 |   let rec spaces () = match Stream.peek stream with
-                                  ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 20, characters 40-51:
- 20 |   | Some head -> if is_space head then (Stream.junk stream; spaces ()) else ()
-                                              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 35, characters 26-37:
- 35 |     let rec aux s = match Stream.peek stream with
-                                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 40, characters 14-25:
- 40 |         else (Stream.junk stream; aux (c::s))
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 50, characters 10-21:
- 50 |     match Stream.peek stream with
-                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 56, characters 12-23:
- 56 |       then (Stream.junk stream; Sym head)
-                  ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 60, characters 2-13:
- 60 |   Stream.from aux
-        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 67, characters 34-45:
- 67 | let rec parse_leaf stream = match Stream.next stream with
-                                        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 95, characters 8-19:
- 95 |   match Stream.next stream with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 118, characters 31-42:
- 118 | let parse_ident stream = match Stream.next stream with
-                                      ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 123, characters 28-39:
- 123 |   let rec aux carry = match Stream.peek stream with
-                                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 128, characters 6-17:
- 128 |       Stream.junk stream;
-             ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 134, characters 8-19:
- 134 |   match Stream.next stream with
-               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 138, characters 37-48:
- 138 | let parse_braket_list stream = match Stream.next stream with
-                                            ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 142, characters 10-21:
- 142 |     match Stream.next stream with
-                 ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 149, characters 35-46:
- 149 | let parse_semicolon stream = match Stream.next stream with
-                                          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 158, characters 29-40:
- 158 | let parse_kwd stream = match Stream.next stream with
-                                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 162, characters 29-40:
- 162 | let parse_sym stream = match Stream.next stream with
-                                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 177, characters 8-19:
- 177 |   match Stream.next stream with
-               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 215, characters 25-36:
- 215 |   let rec aux () = match Stream.next stream with
-                                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 243, characters 20-37:
- 243 |   let mexpr = load (Stream.of_channel fin) in
-                           ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strLoadPla.cmx src/io/strLoadPla.ml
- File "src/io/strLoadPla.ml", line 11, characters 28-36:
- 11 | let my_lexer stream : token Stream.t =
-                                  ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 14, characters 14-25:
- 14 |     try match Stream.next stream with
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 19, characters 28-39:
- 19 |   let rec spaces () = match Stream.peek stream with
-                                  ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 21, characters 40-51:
- 21 |   | Some head -> if is_space head then (Stream.junk stream; spaces ()) else ()
-                                              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 25, characters 26-37:
- 25 |     let rec aux s = match Stream.peek stream with
-                                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 30, characters 14-25:
- 30 |         else (Stream.junk stream; aux (c::s))
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 40, characters 10-21:
- 40 |     match Stream.peek stream with
-                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 50, characters 14-25:
- 50 |         then (Stream.junk stream; Sym head)
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 55, characters 2-13:
- 55 |   Stream.from aux
-        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 61, characters 17-28:
- 61 |       let char = Stream.next stream in
-                       ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 66, characters 5-16:
- 66 |   in Stream.from aux
-           ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 73, characters 34-45:
- 73 | let rec parse_leaf stream = match Stream.next stream with
-                                        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 91, characters 8-19:
- 91 |   match Stream.next stream with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 114, characters 31-42:
- 114 | let parse_ident stream = match Stream.next stream with
-                                      ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 119, characters 28-39:
- 119 |   let rec aux carry = match Stream.peek stream with
-                                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 124, characters 6-17:
- 124 |       Stream.junk stream;
-             ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 130, characters 8-19:
- 130 |   match Stream.next stream with
-               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 134, characters 37-48:
- 134 | let parse_braket_list stream = match Stream.next stream with
-                                            ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 138, characters 10-21:
- 138 |     match Stream.next stream with
-                 ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 145, characters 28-39:
- 145 |   let rec aux carry = match Stream.next stream with
-                                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 151, characters 35-46:
- 151 | let parse_semicolon stream = match Stream.next stream with
-                                          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 160, characters 29-40:
- 160 | let parse_kwd stream = match Stream.next stream with
-                                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 164, characters 29-40:
- 164 | let parse_sym stream = match Stream.next stream with
-                                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 178, characters 12-23:
- 178 |       match Stream.next stream with
-                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 230, characters 20-37:
- 230 |   let mexpr = load (Stream.of_channel fin) in
-                           ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/ariUbdagTC.cmx src/core/ariUbdagTC.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I src/conv -I src -I src/circuits -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/conv/convUtils.cmx src/conv/convUtils.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_c10_gops.cmx src/ldd_model/ldd_B_o_c10_gops.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/oops -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/src -o src/oops/OfExprOfOops.cmx src/oops/OfExprOfOops.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/oops -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/src -o src/oops/OopsGcOfOops.cmx src/oops/OopsGcOfOops.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/tacxTypes.cmx src/ldd_model/tacxTypes.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_nu_types.cmx src/ldd_model/ldd_B_o_nu_types.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_u_types.cmx src/ldd_model/ldd_B_o_u_types.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_u_gops.cmx src/ldd_model/ldd_B_o_u_gops.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_nu_gops.cmx src/ldd_model/ldd_B_o_nu_gops.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_u.cmx src/ldd_model/ldd_B_o_u.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_nucx_types.cmx src/ldd_model/ldd_B_o_nucx_types.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_nucx_gops.cmx src/ldd_model/ldd_B_o_nucx_gops.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_uc0_types.cmx src/ldd_model/ldd_B_o_uc0_types.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_uc0_gops.cmx src/ldd_model/ldd_B_o_uc0_gops.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nu_types.cmx src/ldd_model/ldd_B_u_nu_types.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nu_io.cmx src/ldd_model/ldd_B_u_nu_io.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nu_gops.cmx src/ldd_model/ldd_B_u_nu_gops.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nuc_types.cmx src/ldd_model/ldd_B_u_nuc_types.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nuc_io.cmx src/ldd_model/ldd_B_u_nuc_io.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nuc_utils.cmx src/ldd_model/ldd_B_u_nuc_utils.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nuc_gops.cmx src/ldd_model/ldd_B_u_nuc_gops.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_types.cmx src/ldd_model/ldd_B_u_nucx_types.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_utils.cmx src/ldd_model/ldd_B_u_nucx_utils.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_check.cmx src/ldd_model/ldd_B_u_nucx_check.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_io.cmx src/ldd_model/ldd_B_u_nucx_io.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_norm.cmx src/ldd_model/ldd_B_u_nucx_norm.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_facto.cmx src/ldd_model/ldd_B_u_nucx_facto.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_pull.cmx src/ldd_model/ldd_B_u_nucx_pull.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_cons.cmx src/ldd_model/ldd_B_u_nucx_cons.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_peval.cmx src/ldd_model/ldd_B_u_nucx_peval.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_andb.cmx src/ldd_model/ldd_B_u_nucx_andb.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_xorb.cmx src/ldd_model/ldd_B_u_nucx_xorb.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx_gops.cmx src/ldd_model/ldd_B_u_nucx_gops.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nux_types.cmx src/ldd_model/ldd_B_u_nux_types.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nux_gops.cmx src/ldd_model/ldd_B_u_nux_gops.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nux_io.cmx src/ldd_model/ldd_B_u_nux_io.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/cmdUtils.cmx src/io/cmdUtils.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I src/conv -I src -I src/circuits -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/conv/convTypes.cmx src/conv/convTypes.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_c10.cmx src/ldd_model/ldd_B_o_c10.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_nu.cmx src/ldd_model/ldd_B_o_nu.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_nucx.cmx src/ldd_model/ldd_B_o_nucx.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_o_uc0.cmx src/ldd_model/ldd_B_o_uc0.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nu.cmx src/ldd_model/ldd_B_u_nu.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nuc.cmx src/ldd_model/ldd_B_u_nuc.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nucx.cmx src/ldd_model/ldd_B_u_nucx.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/ldd_B_u_nux.cmx src/ldd_model/ldd_B_u_nux.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strDumpCmd.cmx src/io/strDumpCmd.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strLoadCmd.cmx src/io/strLoadCmd.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strLoadNnf.cmx src/io/strLoadNnf.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strLoadCmd.cmx src/io/strLoadCmd.ml
- File "src/io/strLoadCmd.ml", line 13, characters 26-34:
- 13 | let my_lexer (stream:char Stream.t) : CmtLexer.stream =
-                                ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 65, characters 8-19:
- 65 |   match Stream.peek s with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 67, characters 4-15:
- 67 |     Stream.junk s;
-          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 73, characters 8-19:
- 73 |   match Stream.peek s with
-              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 75, characters 4-15:
- 75 |     Stream.junk s;
-          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 134, characters 8-19:
- 134 |   match Stream.peek s with
-               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 137, characters 4-15:
- 137 |     Stream.junk s;
-           ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 147, characters 18-35:
- 147 |   let prg = load (Stream.of_channel file) in
-                         ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -o src/io/strLoadNnf.cmx src/io/strLoadNnf.ml
- File "src/io/strLoadNnf.ml", line 13, characters 28-36:
- 13 | let my_lexer stream : token Stream.t =
-                                  ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 16, characters 14-25:
- 16 |     try match Stream.next stream with
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 21, characters 28-39:
- 21 |   let rec spaces () = match Stream.peek stream with
-                                  ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 23, characters 40-51:
- 23 |   | Some head -> if is_space head then (Stream.junk stream; spaces ()) else ()
-                                              ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 26, characters 26-37:
- 26 |     let rec aux s = match Stream.peek stream with
-                                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 31, characters 14-25:
- 31 |         else (Stream.junk stream; aux (c::s))
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 39, characters 25-36:
- 39 |   let rec rmc () = match Stream.peek stream with
-                               ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 46, characters 10-21:
- 46 |     match Stream.peek stream with
-                ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 54, characters 2-13:
- 54 |   Stream.from aux
-        ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 77, characters 29-40:
- 77 | let parse_str stream = match Stream.next stream with
-                                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 81, characters 29-40:
- 81 | let parse_int stream = match Stream.next stream with
-                                   ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 85, characters 31-39:
- 85 | let parse_module (stream:token Stream.t) : string IoTypes.expr =
-                                     ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 87, characters 14-25:
- 87 |     let tok = Stream.peek stream in
-                    ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 88, characters 4-15:
- 88 |     Stream.junk stream;
-          ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 97, characters 19-30:
- 97 |   let core = match Stream.next stream with
-                         ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 139, characters 24-32:
- 139 | let load (stream : char Stream.t) : string IoTypes.expr =
-                               ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 140, characters 20-28:
- 140 |   let lexed : token Stream.t = my_lexer stream in
-                           ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 140, characters 20-28:
- 140 |   let lexed : token Stream.t = my_lexer stream in
-                           ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 146, characters 17-34:
- 146 |   let cnf = load(Stream.of_channel file) in
-                        ^^^^^^^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I src/conv -I src -I src/circuits -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/conv/convCore.cmx src/conv/convCore.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I src/conv -I src -I src/circuits -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/conv/convTypesDump.cmx src/conv/convTypesDump.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/ubdag.cmx src/core/ubdag.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I src/circuits -I src -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/circuits/naxOops.cmx src/circuits/naxOops.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I src/conv -I src -I src/circuits -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/conv/convArgsTypes.cmx src/conv/convArgsTypes.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I src/conv -I src -I src/circuits -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/conv/conv.cmx src/conv/conv.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I src/conv -I src -I src/circuits -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/conv/convTypesLoad.cmx src/conv/convTypesLoad.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/ariUbdagT.cmx src/core/ariUbdagT.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/binUbdagTC.cmx src/core/binUbdagTC.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/subdag.cmx src/core/subdag.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/taggedSubdag.cmx src/core/taggedSubdag.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package GuaCaml -package unix -I src/core -I src -I src/circuits -I src/conv -I src/io -I src/ldd_model -I src/oops -I src/src -o src/core/taggedSubdagPropa.cmx src/core/taggedSubdagPropa.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -o src/ldd_model/testBUtils.cmx src/ldd_model/testBUtils.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/oops -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/src -o src/oops/AQEOPS.cmx src/oops/AQEOPS.ml
- + touch DAGaml.mli  ; if  ocamlfind ocamlopt -pack -I src/circuits -I src/core -I src/io -I src/oops -I src/conv -I src/ldd_model src/circuits/expr.cmx src/core/udag.cmx src/core/binUbdag.cmx src/core/binUbdagT.cmx src/io/cmdTypes.cmx src/io/ioTypes.cmx src/circuits/nax.cmx src/io/cnfTypes.cmx src/circuits/cnax.cmx src/io/strDumpCnf.cmx src/io/cnfUtils.cmx src/io/strLoadCnf.cmx src/oops/OOPS.cmx src/oops/QEOPS.cmx src/oops/loadCnf.cmx src/oops/sUInt.cmx src/oops/vUInt.cmx src/circuits/cnaxOops.cmx src/circuits/naxOops.cmx src/circuits/nnfExpr.cmx src/circuits/rExpr.cmx src/conv/convArgsTypes.cmx src/conv/convTypes.cmx src/io/ioUtils.cmx src/io/strDumpVerilog.cmx src/conv/convUtils.cmx src/core/ariUbdag.cmx src/core/ariUbdagTC.cmx src/io/cmdUtils.cmx src/io/strDumpCmd.cmx src/io/strLoadCmd.cmx src/io/strLoadNnf.cmx src/io/strLoadPla.cmx src/io/strLoadVerilog.cmx src/ldd_model/ldd_B_o_c10_types.cmx src/ldd_model/ldd_B_o_c10_gops.cmx src/oops/OfExprOfOops.cmx src/oops/OopsGcOfOops.cmx src/ldd_model/ldd_B_o_c10.cmx src/ldd_model/tacxTypes.cmx src/ldd_model/ldd_B_o_nu_types.cmx src/ldd_model/ldd_B_o_nu_gops.cmx src/ldd_model/ldd_B_o_u_types.cmx src/ldd_model/ldd_B_o_u_gops.cmx src/ldd_model/ldd_B_o_u.cmx src/ldd_model/ldd_B_o_nu.cmx src/ldd_model/ldd_B_o_nucx_types.cmx src/ldd_model/ldd_B_o_nucx_gops.cmx src/ldd_model/ldd_B_o_nucx.cmx src/ldd_model/ldd_B_o_uc0_types.cmx src/ldd_model/ldd_B_o_uc0_gops.cmx src/ldd_model/ldd_B_o_uc0.cmx src/ldd_model/ldd_B_u_nu_types.cmx src/ldd_model/ldd_B_u_nu_io.cmx src/ldd_model/ldd_B_u_nu_gops.cmx src/ldd_model/ldd_B_u_nu.cmx src/ldd_model/ldd_B_u_nuc_types.cmx src/ldd_model/ldd_B_u_nuc_io.cmx src/ldd_model/ldd_B_u_nuc_utils.cmx src/ldd_model/ldd_B_u_nuc_gops.cmx src/ldd_model/ldd_B_u_nuc.cmx src/ldd_model/ldd_B_u_nucx_types.cmx src/ldd_model/ldd_B_u_nucx_utils.cmx src/ldd_model/ldd_B_u_nucx_check.cmx src/ldd_model/ldd_B_u_nucx_io.cmx src/ldd_model/ldd_B_u_nucx_norm.cmx src/ldd_model/ldd_B_u_nucx_facto.cmx src/ldd_model/ldd_B_u_nucx_pull.cmx src/ldd_model/ldd_B_u_nucx_cons.cmx src/ldd_model/ldd_B_u_nucx_peval.cmx src/ldd_model/ldd_B_u_nucx_andb.cmx src/ldd_model/ldd_B_u_nucx_xorb.cmx src/ldd_model/ldd_B_u_nucx_gops.cmx src/ldd_model/ldd_B_u_nucx.cmx src/ldd_model/ldd_B_u_nux_types.cmx src/ldd_model/ldd_B_u_nux_gops.cmx src/ldd_model/ldd_B_u_nux_io.cmx src/ldd_model/ldd_B_u_nux.cmx src/conv/convCore.cmx src/conv/convTypesDump.cmx src/conv/conv.cmx src/conv/convTypesLoad.cmx src/core/ariUbdagT.cmx src/core/binUbdagTC.cmx src/core/ubdag.cmx src/core/subdag.cmx src/core/taggedSubdag.cmx src/core/taggedSubdagPropa.cmx src/ldd_model/testBUtils.cmx src/oops/AQEOPS.cmx -o DAGaml.cmx  ; then  rm -f DAGaml.mli  ; else  rm -f DAGaml.mli  ; exit 1; fi
- + ocamlfind ocamlopt -a DAGaml.cmx -o DAGaml.cmxa
- + ocamlfind ocamlopt -shared -linkall DAGaml.cmxa -o DAGaml.cmxs
- # Parallel statistics: { count(total): 23(208), max: 90, min: 2, average(total): 7.913(1.764) }
- ocamlfind remove  DAGaml
- ocamlfind: [WARNING] No such file: /home/opam/.opam/4.14/lib/DAGaml/META
- ocamlfind install DAGaml META _build/DAGaml.*
- Installed /home/opam/.opam/4.14/lib/DAGaml/DAGaml.o
- Installed /home/opam/.opam/4.14/lib/DAGaml/DAGaml.mlpack
- Installed /home/opam/.opam/4.14/lib/DAGaml/DAGaml.d.cmo
- Installed /home/opam/.opam/4.14/lib/DAGaml/DAGaml.d.cma
- Installed /home/opam/.opam/4.14/lib/DAGaml/DAGaml.cmxs
- Installed /home/opam/.opam/4.14/lib/DAGaml/DAGaml.cmxa
- Installed /home/opam/.opam/4.14/lib/DAGaml/DAGaml.cmx
- Installed /home/opam/.opam/4.14/lib/DAGaml/DAGaml.cmo
- Installed /home/opam/.opam/4.14/lib/DAGaml/DAGaml.cmi
- Installed /home/opam/.opam/4.14/lib/DAGaml/DAGaml.cma
- Installed /home/opam/.opam/4.14/lib/DAGaml/DAGaml.a
- Installed /home/opam/.opam/4.14/lib/DAGaml/META
-> installed DAGaml.0.01
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 08:53.58 ---> saved as "af895a9e235d0d28afa79bffbeb38d7877bd90aaef756de2a782c9b72303fd69"
Job succeeded
2026-04-30 08:54.11: Job succeeded