- github
- ocaml
- opam-repository
- 3e0c39
- compilers,4.14,dune.3.22.2,revdeps,DAGaml.0.02
(not at the head of any monitored branch or PR)
2026-04-10 17:57.46: New job: test DAGaml.0.02 with dune.3.22.2, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29704/head (3e0c395e7b1393a792367f8edca3654dac71e6fd)
on debian-13-ocaml-4.14/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29704/head" && git reset --hard 3e0c395e
git fetch origin master
git merge --no-edit 9d8ceab8e9f49f5671cf459997c8a47cf0e675ca
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn dune.3.22.2 3.22.2
RUN opam reinstall dune.3.22.2; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'dune.3.22.2' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall DAGaml.0.02; \
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.02' && 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.02) || true
RUN opam reinstall --with-test --verbose DAGaml.0.02; \
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.02' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-04-10 17:57.46: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4-dune.3.22.2-DAGaml.0.02-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-10 17:57.46: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune.3.22.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall DAGaml.0.02;\
\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.02' && 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.02) || true"))
(run (shell "opam reinstall --with-test --verbose DAGaml.0.02;\
\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.02' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-04-10 17:57.46: Waiting for resource in pool OCluster
2026-04-11 03:36.37: Waiting for worker…
2026-04-11 03:38.47: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
Updating files: 66% (12470/18686)
Updating files: 67% (12520/18686)
Updating files: 68% (12707/18686)
Updating files: 69% (12894/18686)
Updating files: 70% (13081/18686)
Updating files: 71% (13268/18686)
Updating files: 72% (13454/18686)
Updating files: 73% (13641/18686)
Updating files: 74% (13828/18686)
Updating files: 75% (14015/18686)
Updating files: 76% (14202/18686)
Updating files: 77% (14389/18686)
Updating files: 78% (14576/18686)
Updating files: 79% (14762/18686)
Updating files: 80% (14949/18686)
Updating files: 81% (15136/18686)
Updating files: 82% (15323/18686)
Updating files: 83% (15510/18686)
Updating files: 84% (15697/18686)
Updating files: 85% (15884/18686)
Updating files: 86% (16070/18686)
Updating files: 87% (16257/18686)
Updating files: 88% (16444/18686)
Updating files: 89% (16631/18686)
Updating files: 90% (16818/18686)
Updating files: 91% (17005/18686)
Updating files: 92% (17192/18686)
Updating files: 93% (17378/18686)
Updating files: 94% (17565/18686)
Updating files: 95% (17752/18686)
Updating files: 96% (17939/18686)
Updating files: 97% (18126/18686)
Updating files: 98% (18313/18686)
Updating files: 99% (18500/18686)
Updating files: 100% (18686/18686)
Updating files: 100% (18686/18686), done.
HEAD is now at 9d8ceab8e9 Merge pull request #29697 from filipeom/opam-publish-smtml.0.25.0
Updating 9d8ceab8e9..3e0c395e7b
Fast-forward
packages/chrome-trace/chrome-trace.3.22.2/opam | 39 +++++++++++
.../dune-action-plugin.3.22.2/opam | 52 +++++++++++++++
.../dune-action-trace.3.22.2/opam | 39 +++++++++++
.../dune-build-info/dune-build-info.3.22.2/opam | 45 +++++++++++++
.../dune-configurator.3.22.2/opam | 49 ++++++++++++++
packages/dune-glob/dune-glob.3.22.2/opam | 42 ++++++++++++
.../dune-private-libs.3.22.2/opam | 50 +++++++++++++++
packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam | 41 ++++++++++++
packages/dune-rpc/dune-rpc.3.22.2/opam | 44 +++++++++++++
packages/dune-site/dune-site.3.22.2/opam | 37 +++++++++++
packages/dune/dune.3.22.2/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.22.2/opam | 40 ++++++++++++
packages/fs-io/fs-io.3.22.2/opam | 39 +++++++++++
packages/ocamlc-loc/ocamlc-loc.3.22.2/opam | 43 +++++++++++++
packages/ordering/ordering.3.22.2/opam | 38 +++++++++++
packages/stdune/stdune.3.22.2/opam | 46 +++++++++++++
packages/top-closure/top-closure.3.22.2/opam | 38 +++++++++++
packages/xdg/xdg.3.22.2/opam | 39 +++++++++++
18 files changed, 796 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.22.2/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.2/opam
create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.2/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.22.2/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.22.2/opam
create mode 100644 packages/dune-glob/dune-glob.3.22.2/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.2/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.22.2/opam
create mode 100644 packages/dune-site/dune-site.3.22.2/opam
create mode 100644 packages/dune/dune.3.22.2/opam
create mode 100644 packages/dyn/dyn.3.22.2/opam
create mode 100644 packages/fs-io/fs-io.3.22.2/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam
create mode 100644 packages/ordering/ordering.3.22.2/opam
create mode 100644 packages/stdune/stdune.3.22.2/opam
create mode 100644 packages/top-closure/top-closure.3.22.2/opam
create mode 100644 packages/xdg/xdg.3.22.2/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
2026-04-11 03:39.03 ---> using "e7349b5faa6e8ea47e3f73a0784842b9d8524e468ce596e92633dbea53bd1c16" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-11 03:39.03 ---> using "345d07c1ddcf0b692213607682954d9bdf190a7dc793f33951a109185e732dcb" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-11 03:39.03 ---> using "6e021c655ca00bde9af60e23db55b09a0bcc3db0d3ca38d66f78ad53e254a31c" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.3"}]
# compiler-packages ocaml-base-compiler.4.14.3, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.3
2026-04-11 03:39.03 ---> using "7b2a5ae62cf702b99c177da358372ff585494a0b1c5dfffe5c4eda3046bc59fb" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-04-11 03:39.03 ---> using "2d8e28a183d0990d4c5f7a587471f7c743cdf0d9f00bdf4de7761e94ec09202a" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-11 03:39.05 ---> using "43c49734bd8015921029b9a907dd77c0e05208c46b686916515831f5a9e9d500" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-11 03:39.05 ---> using "bb36992fd0066703535b2984ee1ead3db92bb1f04a8df092631924067dac4082" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [121 kB]
- Fetched 211 kB in 0s (1777 kB/s)
- Reading package lists...
-
2026-04-11 03:39.05 ---> using "e0d9ada0baddc41d2c835edef7d0cf7cceebd2dadac41fda17c9e860b5313a74" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
dune is now pinned to version 3.22.2
2026-04-11 03:39.05 ---> using "a60db6b945be7f2fc9953546cee71bf416921d54f02951a4c9176dbdf1065520" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune.3.22.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dune.3.22.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.22.2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.2 (cached)
-> installed dune.3.22.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:39.05 ---> using "59eacf68137f7dccf94b9ebc5274fdc537230a8c71c2eb52f8fcf698829c6d46" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall DAGaml.0.02;\
\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.02' && 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.02 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 6 packages
- install DAGaml 0.02
- 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.02 (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 (https://opam.ocaml.org/cache)
-> 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.02
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:40.59 ---> saved as "5c1b487e78a490f2b252374198bb0309bfa0e5f4d8aaba1d5db86e356ae2537f"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test DAGaml.0.02) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile DAGaml 0.02
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved DAGaml.0.02 (https://opam.ocaml.org/cache)
-> removed DAGaml.0.02
-> installed DAGaml.0.02
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:42.20 ---> saved as "687dc4d05b7ba2b2a6d02f501398c40132a8ef47469d77e1716e7921f6847684"
/home/opam: (run (shell "opam reinstall --with-test --verbose DAGaml.0.02;\
\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.02' && 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.02
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [DAGaml.0.02: extract]
-> retrieved DAGaml.0.02 (cached)
Processing 2/4: [DAGaml: make lib]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "lib" (CWD=/home/opam/.opam/4.14/.opam-switch/build/DAGaml.0.02)
- 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/snax.ml > src/circuits/snax.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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -o src/circuits/nax.cmo src/circuits/nax.ml
- + ocamlfind ocamldep -package GuaCaml -package unix -modules src/circuits/snaxOops.ml > src/circuits/snaxOops.ml.depends
- + 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/waterfall/cwap_exchange.mli > src/waterfall/cwap_exchange.mli.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/waterfall/cwap_exchange_utils.ml > src/waterfall/cwap_exchange_utils.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/waterfall -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/waterfall/cwap_exchange.cmi src/waterfall/cwap_exchange.mli
- + 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/waterfall -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/waterfall/cwap_exchange_utils.cmo src/waterfall/cwap_exchange_utils.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 -I src/waterfall -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/io/ioUtils.ml > src/io/ioUtils.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 -I src/waterfall -o src/circuits/snax.cmo src/circuits/snax.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 -I src/waterfall -o src/io/ioUtils.cmo src/io/ioUtils.ml
- + 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 -I src/waterfall -o src/oops/OOPS.cmo src/oops/OOPS.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/oops/support.ml > src/oops/support.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 -I src/waterfall -o src/oops/support.cmo src/oops/support.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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -o src/io/strLoadCnf.cmo src/io/strLoadCnf.ml
- File "src/io/strLoadCnf.ml", line 19, characters 26-34:
- 19 | 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 48, characters 8-19:
- 48 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCnf.ml", line 50, characters 4-15:
- 50 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCnf.ml", line 54, characters 4-15:
- 54 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCnf.ml", line 106, characters 28-45:
- 106 | 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 124, characters 24-41:
- 124 | 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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 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 -I src/waterfall -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 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 -I src/waterfall -o src/circuits/snaxOops.cmo src/circuits/snaxOops.ml
- + 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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -o src/io/strLoadPla.cmo src/io/strLoadPla.ml
- File "src/io/strLoadPla.ml", line 23, characters 28-36:
- 23 | let my_lexer stream : token Stream.t =
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 26, characters 14-25:
- 26 | try match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 31, characters 28-39:
- 31 | 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 33, characters 40-51:
- 33 | | 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 37, characters 26-37:
- 37 | 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 42, characters 14-25:
- 42 | else (Stream.junk stream; aux (c::s))
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 52, characters 10-21:
- 52 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 62, characters 14-25:
- 62 | then (Stream.junk stream; Sym head)
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 67, characters 2-13:
- 67 | Stream.from aux
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 73, characters 17-28:
- 73 | let char = Stream.next stream in
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 78, characters 5-16:
- 78 | in Stream.from aux
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 85, characters 34-45:
- 85 | 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 103, characters 8-19:
- 103 | match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 126, characters 31-42:
- 126 | 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 131, characters 28-39:
- 131 | 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 136, characters 6-17:
- 136 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 142, characters 8-19:
- 142 | match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 146, characters 37-48:
- 146 | 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 150, characters 10-21:
- 150 | match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 157, characters 28-39:
- 157 | 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 163, characters 35-46:
- 163 | 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 172, characters 29-40:
- 172 | 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 176, characters 29-40:
- 176 | 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 190, characters 12-23:
- 190 | match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 242, characters 20-37:
- 242 | 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 -I src/waterfall -o src/io/strLoadVerilog.cmo src/io/strLoadVerilog.ml
- File "src/io/strLoadVerilog.ml", line 23, characters 28-36:
- 23 | let my_lexer stream : token Stream.t =
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 25, characters 28-39:
- 25 | 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 27, characters 40-51:
- 27 | | 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 42, characters 26-37:
- 42 | 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 47, characters 14-25:
- 47 | else (Stream.junk stream; aux (c::s))
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 57, characters 10-21:
- 57 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 63, characters 12-23:
- 63 | then (Stream.junk stream; Sym head)
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 67, characters 2-13:
- 67 | Stream.from aux
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 74, characters 34-45:
- 74 | 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 102, characters 8-19:
- 102 | match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 125, characters 31-42:
- 125 | 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 130, characters 28-39:
- 130 | 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 135, characters 6-17:
- 135 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 141, characters 8-19:
- 141 | match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 145, characters 37-48:
- 145 | 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 149, characters 10-21:
- 149 | match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 156, characters 35-46:
- 156 | 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 165, characters 29-40:
- 165 | 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 169, characters 29-40:
- 169 | 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 184, characters 8-19:
- 184 | match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 222, characters 25-36:
- 222 | 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 250, characters 20-37:
- 250 | 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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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_forall.ml > src/ldd_model/ldd_B_u_nucx_forall.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 -I src/waterfall -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 -I src/waterfall -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_facto.ml > src/ldd_model/ldd_B_u_nucx_facto.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 -I src/waterfall -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_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 -I src/waterfall -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 -I src/waterfall -o src/ldd_model/ldd_B_u_nucx_norm.cmo src/ldd_model/ldd_B_u_nucx_norm.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 -I src/waterfall -o src/ldd_model/ldd_B_u_nucx_facto.cmo src/ldd_model/ldd_B_u_nucx_facto.ml
- + 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_cons.ml > src/ldd_model/ldd_B_u_nucx_cons.ml.depends
- + 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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -o src/ldd_model/ldd_B_u_nucx_forall.cmo src/ldd_model/ldd_B_u_nucx_forall.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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -o src/io/strLoadCmd.cmo src/io/strLoadCmd.ml
- File "src/io/strLoadCmd.ml", line 20, characters 26-34:
- 20 | 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 72, characters 8-19:
- 72 | match Stream.peek s with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 74, characters 4-15:
- 74 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 80, characters 8-19:
- 80 | match Stream.peek s with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 82, characters 4-15:
- 82 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 141, characters 8-19:
- 141 | match Stream.peek s with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 144, characters 4-15:
- 144 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 154, characters 18-35:
- 154 | 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 -I src/waterfall -o src/io/strLoadNnf.cmo src/io/strLoadNnf.ml
- File "src/io/strLoadNnf.ml", line 20, characters 28-36:
- 20 | let my_lexer stream : token Stream.t =
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 23, characters 14-25:
- 23 | try match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 28, characters 28-39:
- 28 | 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 30, characters 40-51:
- 30 | | 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 33, characters 26-37:
- 33 | 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 38, characters 14-25:
- 38 | else (Stream.junk stream; aux (c::s))
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 46, characters 25-36:
- 46 | 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 53, characters 10-21:
- 53 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 61, characters 2-13:
- 61 | Stream.from aux
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 84, characters 29-40:
- 84 | 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 88, characters 29-40:
- 88 | 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 92, characters 31-39:
- 92 | 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 94, characters 14-25:
- 94 | let tok = Stream.peek stream in
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 95, characters 4-15:
- 95 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 104, characters 19-30:
- 104 | let core = match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 146, characters 24-32:
- 146 | 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 147, characters 20-28:
- 147 | 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 147, characters 20-28:
- 147 | 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 153, characters 17-34:
- 153 | 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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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/ldd_B_o_nucx_advanced.ml > src/ldd_model/ldd_B_o_nucx_advanced.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/oops/AQEOPS.ml > src/oops/AQEOPS.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/oops/AQEOPS_CRBTF.ml > src/oops/AQEOPS_CRBTF.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 -I src/waterfall -o src/oops/AQEOPS.cmo src/oops/AQEOPS.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/waterfall/crbtf.mli > src/waterfall/crbtf.mli.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/waterfall -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/waterfall/crbtf.cmi src/waterfall/crbtf.mli
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/oops/AQEOPS_RBTF.ml > src/oops/AQEOPS_RBTF.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/oops/AQEOPS_RBTF_ArgMax_vUInt.ml > src/oops/AQEOPS_RBTF_ArgMax_vUInt.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/oops/AvUInt.ml > src/oops/AvUInt.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 -I src/waterfall -o src/oops/AvUInt.cmo src/oops/AvUInt.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 -I src/waterfall -o src/oops/AQEOPS_CRBTF.cmo src/oops/AQEOPS_CRBTF.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 -I src/waterfall -o src/oops/AQEOPS_RBTF.cmo src/oops/AQEOPS_RBTF.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 -I src/waterfall -o src/oops/AQEOPS_RBTF_ArgMax_vUInt.cmo src/oops/AQEOPS_RBTF_ArgMax_vUInt.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_o_nu_advanced.ml > src/ldd_model/ldd_B_o_nu_advanced.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_o_u_advanced.ml > src/ldd_model/ldd_B_o_u_advanced.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/waterfall/cwap_lightweight.mli > src/waterfall/cwap_lightweight.mli.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/waterfall -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/waterfall/cwap_lightweight.cmi src/waterfall/cwap_lightweight.mli
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_u_nucx_advanced.ml > src/ldd_model/ldd_B_u_nucx_advanced.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/ldd_model/ldd_B_u_nu_advanced.ml > src/ldd_model/ldd_B_u_nu_advanced.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/ldd_model/ldd_mlbdd.ml > src/ldd_model/ldd_mlbdd.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/snowflake/mlbddExample.mli > src/snowflake/mlbddExample.mli.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/snowflake/mlbddUInt.mli > src/snowflake/mlbddUInt.mli.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/snowflake/mlbddUtils.mli > src/snowflake/mlbddUtils.mli.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/mlbddUtils.cmi src/snowflake/mlbddUtils.mli
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/snowflake/wap_exchange.mli > src/snowflake/wap_exchange.mli.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/mlbddUInt.cmi src/snowflake/mlbddUInt.mli
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/wap_exchange.cmi src/snowflake/wap_exchange.mli
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/mlbddExample.cmi src/snowflake/mlbddExample.mli
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/snowflake/mlbddExample.ml > src/snowflake/mlbddExample.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 -I src/waterfall -o src/ldd_model/ldd_mlbdd.cmo src/ldd_model/ldd_mlbdd.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/snowflake/rbtf.mli > src/snowflake/rbtf.mli.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/snowflake/wap_exchange_utils.ml > src/snowflake/wap_exchange_utils.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/snowflake/wap_lightspeed.ml > src/snowflake/wap_lightspeed.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/wap_exchange_utils.cmo src/snowflake/wap_exchange_utils.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/rbtf.cmi src/snowflake/rbtf.mli
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/wap_lightspeed.cmo src/snowflake/wap_lightspeed.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/snowflake/mlbddUInt.ml > src/snowflake/mlbddUInt.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/snowflake/mlbddUtils.ml > src/snowflake/mlbddUtils.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/snowflake/rbtf.ml > src/snowflake/rbtf.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/snowflake/SnowStorm.mli > src/snowflake/SnowStorm.mli.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/SnowStorm.cmi src/snowflake/SnowStorm.mli
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/snowflake/SnowStorm.ml > src/snowflake/SnowStorm.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/snowflake/SnowStormModel.ml > src/snowflake/SnowStormModel.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 -I src/waterfall -o src/ldd_model/ldd_B_o_nu_advanced.cmo src/ldd_model/ldd_B_o_nu_advanced.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 -I src/waterfall -o src/ldd_model/ldd_B_o_nucx_advanced.cmo src/ldd_model/ldd_B_o_nucx_advanced.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 -I src/waterfall -o src/ldd_model/ldd_B_o_u_advanced.cmo src/ldd_model/ldd_B_o_u_advanced.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 -I src/waterfall -o src/ldd_model/ldd_B_u_nu_advanced.cmo src/ldd_model/ldd_B_u_nu_advanced.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 -I src/waterfall -o src/ldd_model/ldd_B_u_nucx_advanced.cmo src/ldd_model/ldd_B_u_nucx_advanced.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/SnowStormModel.cmo src/snowflake/SnowStormModel.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/snowflake/wap_exchange.ml > src/snowflake/wap_exchange.ml.depends
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/snowflake/wap_lightweight.mli > src/snowflake/wap_lightweight.mli.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/wap_lightweight.cmi src/snowflake/wap_lightweight.mli
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/snowflake/wap_lightweight.ml > src/snowflake/wap_lightweight.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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/mlbddExample.cmo src/snowflake/mlbddExample.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/mlbddUInt.cmo src/snowflake/mlbddUInt.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/mlbddUtils.cmo src/snowflake/mlbddUtils.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/rbtf.cmo src/snowflake/rbtf.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/SnowStorm.cmo src/snowflake/SnowStorm.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/wap_exchange.cmo src/snowflake/wap_exchange.ml
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/wap_lightweight.cmo src/snowflake/wap_lightweight.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/snax.cmo src/io/ioUtils.cmo src/oops/OOPS.cmo src/io/strDumpCnf.cmo src/io/cnfUtils.cmo src/io/strLoadCnf.cmo src/oops/support.cmo src/oops/QEOPS.cmo src/oops/loadCnf.cmo src/oops/sUInt.cmo src/oops/vUInt.cmo src/circuits/snaxOops.cmo src/circuits/naxOops.cmo src/circuits/nnfExpr.cmo src/circuits/rExpr.cmo src/conv/convArgsTypes.cmo src/conv/convTypes.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_forall.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/oops/AQEOPS.cmo src/oops/AQEOPS_CRBTF.cmo src/oops/AQEOPS_RBTF.cmo src/oops/AvUInt.cmo src/oops/AQEOPS_RBTF_ArgMax_vUInt.cmo src/ldd_model/ldd_B_o_nucx_advanced.cmo src/ldd_model/ldd_B_o_nu_advanced.cmo src/ldd_model/ldd_B_o_u_advanced.cmo src/ldd_model/ldd_B_u_nucx_advanced.cmo src/ldd_model/ldd_B_u_nu_advanced.cmo src/ldd_model/testBUtils.cmo src/ldd_model/ldd_mlbdd.cmo src/snowflake/mlbddUtils.cmo src/snowflake/mlbddUInt.cmo src/snowflake/wap_exchange.cmo src/snowflake/rbtf.cmo src/snowflake/wap_exchange_utils.cmo src/snowflake/wap_lightspeed.cmo src/snowflake/mlbddExample.cmo src/snowflake/SnowStormModel.cmo src/snowflake/SnowStorm.cmo src/snowflake/wap_lightweight.cmo -o DAGaml.cmo
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/waterfall/cwap_exchange.ml > src/waterfall/cwap_exchange.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/waterfall -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/waterfall/cwap_exchange.cmo src/waterfall/cwap_exchange.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/waterfall/crbtf.ml > src/waterfall/crbtf.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/waterfall -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/waterfall/crbtf.cmo src/waterfall/crbtf.ml
- + ocamlfind ocamldep -package Snowflake -package GuaCaml -package unix -modules src/waterfall/cwap_lightweight.ml > src/waterfall/cwap_lightweight.ml.depends
- + ocamlfind ocamlc -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/waterfall -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/waterfall/cwap_lightweight.cmo src/waterfall/cwap_lightweight.ml
- + ocamlfind ocamlc -a -I src/waterfall src/waterfall/cwap_exchange.cmo src/waterfall/cwap_exchange_utils.cmo src/waterfall/crbtf.cmo src/waterfall/cwap_lightweight.cmo 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 -I src/waterfall -o src/circuits/snax.d.cmo src/circuits/snax.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 -I src/waterfall -o src/circuits/snaxOops.d.cmo src/circuits/snaxOops.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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -o src/ldd_model/ldd_B_o_nucx_advanced.d.cmo src/ldd_model/ldd_B_o_nucx_advanced.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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -o src/ldd_model/ldd_B_o_nu_advanced.d.cmo src/ldd_model/ldd_B_o_nu_advanced.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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -o src/ldd_model/ldd_B_o_u_advanced.d.cmo src/ldd_model/ldd_B_o_u_advanced.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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/io/strLoadNnf.d.cmo src/io/strLoadNnf.ml
- File "src/io/strLoadNnf.ml", line 20, characters 28-36:
- 20 | let my_lexer stream : token Stream.t =
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 23, characters 14-25:
- 23 | try match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 28, characters 28-39:
- 28 | 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 30, characters 40-51:
- 30 | | 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 33, characters 26-37:
- 33 | 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 38, characters 14-25:
- 38 | else (Stream.junk stream; aux (c::s))
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 46, characters 25-36:
- 46 | 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 53, characters 10-21:
- 53 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 61, characters 2-13:
- 61 | Stream.from aux
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 84, characters 29-40:
- 84 | 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 88, characters 29-40:
- 88 | 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 92, characters 31-39:
- 92 | 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 94, characters 14-25:
- 94 | let tok = Stream.peek stream in
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 95, characters 4-15:
- 95 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 104, characters 19-30:
- 104 | let core = match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 146, characters 24-32:
- 146 | 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 147, characters 20-28:
- 147 | 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 147, characters 20-28:
- 147 | 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 153, characters 17-34:
- 153 | 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/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/io/strLoadPla.d.cmo src/io/strLoadPla.ml
- File "src/io/strLoadPla.ml", line 23, characters 28-36:
- 23 | let my_lexer stream : token Stream.t =
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 26, characters 14-25:
- 26 | try match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 31, characters 28-39:
- 31 | 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 33, characters 40-51:
- 33 | | 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 37, characters 26-37:
- 37 | 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 42, characters 14-25:
- 42 | else (Stream.junk stream; aux (c::s))
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 52, characters 10-21:
- 52 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 62, characters 14-25:
- 62 | then (Stream.junk stream; Sym head)
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 67, characters 2-13:
- 67 | Stream.from aux
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 73, characters 17-28:
- 73 | let char = Stream.next stream in
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 78, characters 5-16:
- 78 | in Stream.from aux
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 85, characters 34-45:
- 85 | 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 103, characters 8-19:
- 103 | match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 126, characters 31-42:
- 126 | 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 131, characters 28-39:
- 131 | 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 136, characters 6-17:
- 136 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 142, characters 8-19:
- 142 | match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 146, characters 37-48:
- 146 | 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 150, characters 10-21:
- 150 | match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 157, characters 28-39:
- 157 | 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 163, characters 35-46:
- 163 | 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 172, characters 29-40:
- 172 | 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 176, characters 29-40:
- 176 | 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 190, characters 12-23:
- 190 | match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 242, characters 20-37:
- 242 | 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/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -I src/waterfall -o src/ldd_model/ldd_B_u_nucx_forall.d.cmo src/ldd_model/ldd_B_u_nucx_forall.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 -I src/waterfall -o src/ldd_model/ldd_B_u_nucx_advanced.d.cmo src/ldd_model/ldd_B_u_nucx_advanced.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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -o src/ldd_model/ldd_B_u_nu_advanced.d.cmo src/ldd_model/ldd_B_u_nu_advanced.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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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/ldd_model -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/oops -I src/src -I src/waterfall -o src/ldd_model/ldd_mlbdd.d.cmo src/ldd_model/ldd_mlbdd.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 -I src/waterfall -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 -I src/waterfall -o src/oops/AQEOPS_CRBTF.d.cmo src/oops/AQEOPS_CRBTF.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 -I src/waterfall -o src/oops/AQEOPS_RBTF.d.cmo src/oops/AQEOPS_RBTF.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 -I src/waterfall -o src/oops/AQEOPS_RBTF_ArgMax_vUInt.d.cmo src/oops/AQEOPS_RBTF_ArgMax_vUInt.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 -I src/waterfall -o src/oops/AvUInt.d.cmo src/oops/AvUInt.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 -I src/waterfall -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 -I src/waterfall -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/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/io/strLoadCmd.d.cmo src/io/strLoadCmd.ml
- File "src/io/strLoadCmd.ml", line 20, characters 26-34:
- 20 | 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 72, characters 8-19:
- 72 | match Stream.peek s with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 74, characters 4-15:
- 74 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 80, characters 8-19:
- 80 | match Stream.peek s with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 82, characters 4-15:
- 82 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 141, characters 8-19:
- 141 | match Stream.peek s with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 144, characters 4-15:
- 144 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 154, characters 18-35:
- 154 | 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/io -I src -I src/circuits -I src/conv -I src/core -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/io/strLoadCnf.d.cmo src/io/strLoadCnf.ml
- File "src/io/strLoadCnf.ml", line 19, characters 26-34:
- 19 | 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 48, characters 8-19:
- 48 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCnf.ml", line 50, characters 4-15:
- 50 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCnf.ml", line 54, characters 4-15:
- 54 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCnf.ml", line 106, characters 28-45:
- 106 | 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 124, characters 24-41:
- 124 | 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 -I src/waterfall -o src/io/strLoadVerilog.d.cmo src/io/strLoadVerilog.ml
- File "src/io/strLoadVerilog.ml", line 23, characters 28-36:
- 23 | let my_lexer stream : token Stream.t =
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 25, characters 28-39:
- 25 | 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 27, characters 40-51:
- 27 | | 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 42, characters 26-37:
- 42 | 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 47, characters 14-25:
- 47 | else (Stream.junk stream; aux (c::s))
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 57, characters 10-21:
- 57 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 63, characters 12-23:
- 63 | then (Stream.junk stream; Sym head)
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 67, characters 2-13:
- 67 | Stream.from aux
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 74, characters 34-45:
- 74 | 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 102, characters 8-19:
- 102 | match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 125, characters 31-42:
- 125 | 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 130, characters 28-39:
- 130 | 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 135, characters 6-17:
- 135 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 141, characters 8-19:
- 141 | match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 145, characters 37-48:
- 145 | 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 149, characters 10-21:
- 149 | match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 156, characters 35-46:
- 156 | 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 165, characters 29-40:
- 165 | 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 169, characters 29-40:
- 169 | 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 184, characters 8-19:
- 184 | match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 222, characters 25-36:
- 222 | 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 250, characters 20-37:
- 250 | 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/oops -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/src -I src/waterfall -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/oops -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/src -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -o src/oops/support.d.cmo src/oops/support.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 -I src/waterfall -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 -I src/waterfall -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/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/mlbddExample.d.cmo src/snowflake/mlbddExample.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/mlbddUInt.d.cmo src/snowflake/mlbddUInt.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/mlbddUtils.d.cmo src/snowflake/mlbddUtils.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/rbtf.d.cmo src/snowflake/rbtf.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/SnowStorm.d.cmo src/snowflake/SnowStorm.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/SnowStormModel.d.cmo src/snowflake/SnowStormModel.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/wap_exchange.d.cmo src/snowflake/wap_exchange.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/wap_exchange_utils.d.cmo src/snowflake/wap_exchange_utils.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/wap_lightspeed.d.cmo src/snowflake/wap_lightspeed.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/wap_lightweight.d.cmo src/snowflake/wap_lightweight.ml
- + 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/snax.d.cmo src/io/ioUtils.d.cmo src/oops/OOPS.d.cmo src/io/strDumpCnf.d.cmo src/io/cnfUtils.d.cmo src/io/strLoadCnf.d.cmo src/oops/support.d.cmo src/oops/QEOPS.d.cmo src/oops/loadCnf.d.cmo src/oops/sUInt.d.cmo src/oops/vUInt.d.cmo src/circuits/snaxOops.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/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_forall.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/oops/AQEOPS.d.cmo src/oops/AQEOPS_CRBTF.d.cmo src/oops/AQEOPS_RBTF.d.cmo src/oops/AvUInt.d.cmo src/oops/AQEOPS_RBTF_ArgMax_vUInt.d.cmo src/ldd_model/ldd_B_o_nucx_advanced.d.cmo src/ldd_model/ldd_B_o_nu_advanced.d.cmo src/ldd_model/ldd_B_o_u_advanced.d.cmo src/ldd_model/ldd_B_u_nucx_advanced.d.cmo src/ldd_model/ldd_B_u_nu_advanced.d.cmo src/ldd_model/testBUtils.d.cmo src/ldd_model/ldd_mlbdd.d.cmo src/snowflake/mlbddUtils.d.cmo src/snowflake/mlbddUInt.d.cmo src/snowflake/wap_exchange.d.cmo src/snowflake/rbtf.d.cmo src/snowflake/wap_exchange_utils.d.cmo src/snowflake/wap_lightspeed.d.cmo src/snowflake/mlbddExample.d.cmo src/snowflake/SnowStormModel.d.cmo src/snowflake/SnowStorm.d.cmo src/snowflake/wap_lightweight.d.cmo -o DAGaml.d.cmo
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/waterfall -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/waterfall/cwap_exchange.d.cmo src/waterfall/cwap_exchange.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/waterfall -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/waterfall/cwap_exchange_utils.d.cmo src/waterfall/cwap_exchange_utils.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/waterfall -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/waterfall/crbtf.d.cmo src/waterfall/crbtf.ml
- + ocamlfind ocamlc -c -g -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/waterfall -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/waterfall/cwap_lightweight.d.cmo src/waterfall/cwap_lightweight.ml
- + ocamlfind ocamlc -a -I src/waterfall src/waterfall/cwap_exchange.d.cmo src/waterfall/cwap_exchange_utils.d.cmo src/waterfall/crbtf.d.cmo src/waterfall/cwap_lightweight.d.cmo 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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -o src/circuits/nax.cmx src/circuits/nax.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/waterfall -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/waterfall/cwap_exchange.cmx src/waterfall/cwap_exchange.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/waterfall -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/waterfall/cwap_exchange_utils.cmx src/waterfall/cwap_exchange_utils.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 -I src/waterfall -o src/io/strDumpCnf.cmx src/io/strDumpCnf.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 -I src/waterfall -o src/circuits/snax.cmx src/circuits/snax.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 -I src/waterfall -o src/io/ioUtils.cmx src/io/ioUtils.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 -I src/waterfall -o src/oops/OOPS.cmx src/oops/OOPS.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 -I src/waterfall -o src/oops/support.cmx src/oops/support.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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -o src/io/strLoadCnf.cmx src/io/strLoadCnf.ml
- File "src/io/strLoadCnf.ml", line 19, characters 26-34:
- 19 | 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 48, characters 8-19:
- 48 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCnf.ml", line 50, characters 4-15:
- 50 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCnf.ml", line 54, characters 4-15:
- 54 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCnf.ml", line 106, characters 28-45:
- 106 | 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 124, characters 24-41:
- 124 | 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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -o src/oops/vUInt.cmx src/oops/vUInt.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 -I src/waterfall -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 -I src/waterfall -o src/circuits/snaxOops.cmx src/circuits/snaxOops.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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -o src/io/strLoadVerilog.cmx src/io/strLoadVerilog.ml
- File "src/io/strLoadVerilog.ml", line 23, characters 28-36:
- 23 | let my_lexer stream : token Stream.t =
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 25, characters 28-39:
- 25 | 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 27, characters 40-51:
- 27 | | 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 42, characters 26-37:
- 42 | 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 47, characters 14-25:
- 47 | else (Stream.junk stream; aux (c::s))
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 57, characters 10-21:
- 57 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 63, characters 12-23:
- 63 | then (Stream.junk stream; Sym head)
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 67, characters 2-13:
- 67 | Stream.from aux
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 74, characters 34-45:
- 74 | 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 102, characters 8-19:
- 102 | match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 125, characters 31-42:
- 125 | 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 130, characters 28-39:
- 130 | 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 135, characters 6-17:
- 135 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 141, characters 8-19:
- 141 | match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 145, characters 37-48:
- 145 | 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 149, characters 10-21:
- 149 | match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 156, characters 35-46:
- 156 | 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 165, characters 29-40:
- 165 | 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 169, characters 29-40:
- 169 | 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 184, characters 8-19:
- 184 | match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadVerilog.ml", line 222, characters 25-36:
- 222 | 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 250, characters 20-37:
- 250 | 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 -I src/waterfall -o src/io/strLoadPla.cmx src/io/strLoadPla.ml
- File "src/io/strLoadPla.ml", line 23, characters 28-36:
- 23 | let my_lexer stream : token Stream.t =
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 26, characters 14-25:
- 26 | try match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 31, characters 28-39:
- 31 | 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 33, characters 40-51:
- 33 | | 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 37, characters 26-37:
- 37 | 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 42, characters 14-25:
- 42 | else (Stream.junk stream; aux (c::s))
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 52, characters 10-21:
- 52 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 62, characters 14-25:
- 62 | then (Stream.junk stream; Sym head)
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 67, characters 2-13:
- 67 | Stream.from aux
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 73, characters 17-28:
- 73 | let char = Stream.next stream in
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 78, characters 5-16:
- 78 | in Stream.from aux
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 85, characters 34-45:
- 85 | 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 103, characters 8-19:
- 103 | match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 126, characters 31-42:
- 126 | 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 131, characters 28-39:
- 131 | 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 136, characters 6-17:
- 136 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 142, characters 8-19:
- 142 | match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 146, characters 37-48:
- 146 | 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 150, characters 10-21:
- 150 | match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 157, characters 28-39:
- 157 | 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 163, characters 35-46:
- 163 | 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 172, characters 29-40:
- 172 | 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 176, characters 29-40:
- 176 | 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 190, characters 12-23:
- 190 | match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadPla.ml", line 242, characters 20-37:
- 242 | 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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -o src/ldd_model/ldd_B_u_nucx_forall.cmx src/ldd_model/ldd_B_u_nucx_forall.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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -o src/io/strLoadCmd.cmx src/io/strLoadCmd.ml
- File "src/io/strLoadCmd.ml", line 20, characters 26-34:
- 20 | 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 72, characters 8-19:
- 72 | match Stream.peek s with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 74, characters 4-15:
- 74 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 80, characters 8-19:
- 80 | match Stream.peek s with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 82, characters 4-15:
- 82 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 141, characters 8-19:
- 141 | match Stream.peek s with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 144, characters 4-15:
- 144 | Stream.junk s;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadCmd.ml", line 154, characters 18-35:
- 154 | 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 -I src/waterfall -o src/io/strLoadNnf.cmx src/io/strLoadNnf.ml
- File "src/io/strLoadNnf.ml", line 20, characters 28-36:
- 20 | let my_lexer stream : token Stream.t =
- ^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 23, characters 14-25:
- 23 | try match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 28, characters 28-39:
- 28 | 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 30, characters 40-51:
- 30 | | 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 33, characters 26-37:
- 33 | 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 38, characters 14-25:
- 38 | else (Stream.junk stream; aux (c::s))
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 46, characters 25-36:
- 46 | 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 53, characters 10-21:
- 53 | match Stream.peek stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 61, characters 2-13:
- 61 | Stream.from aux
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 84, characters 29-40:
- 84 | 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 88, characters 29-40:
- 88 | 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 92, characters 31-39:
- 92 | 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 94, characters 14-25:
- 94 | let tok = Stream.peek stream in
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 95, characters 4-15:
- 95 | Stream.junk stream;
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 104, characters 19-30:
- 104 | let core = match Stream.next stream with
- ^^^^^^^^^^^
- Alert deprecated: module Stdlib.Stream
- Use the camlp-streams library instead.
- File "src/io/strLoadNnf.ml", line 146, characters 24-32:
- 146 | 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 147, characters 20-28:
- 147 | 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 147, characters 20-28:
- 147 | 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 153, characters 17-34:
- 153 | 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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -o src/core/ubdag.cmx src/core/ubdag.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 -I src/waterfall -o src/oops/AQEOPS.cmx src/oops/AQEOPS.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/waterfall -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/waterfall/crbtf.cmx src/waterfall/crbtf.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 -I src/waterfall -o src/oops/AvUInt.cmx src/oops/AvUInt.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 -I src/waterfall -o src/oops/AQEOPS_CRBTF.cmx src/oops/AQEOPS_CRBTF.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 -I src/waterfall -o src/oops/AQEOPS_RBTF.cmx src/oops/AQEOPS_RBTF.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 -I src/waterfall -o src/oops/AQEOPS_RBTF_ArgMax_vUInt.cmx src/oops/AQEOPS_RBTF_ArgMax_vUInt.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/waterfall -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -o src/waterfall/cwap_lightweight.cmx src/waterfall/cwap_lightweight.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 -I src/waterfall -o src/ldd_model/ldd_mlbdd.cmx src/ldd_model/ldd_mlbdd.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/mlbddUtils.cmx src/snowflake/mlbddUtils.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/wap_exchange.cmx src/snowflake/wap_exchange.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/wap_exchange_utils.cmx src/snowflake/wap_exchange_utils.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/mlbddUInt.cmx src/snowflake/mlbddUInt.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/rbtf.cmx src/snowflake/rbtf.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/wap_lightspeed.cmx src/snowflake/wap_lightspeed.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 -I src/waterfall -o src/ldd_model/ldd_B_o_nu_advanced.cmx src/ldd_model/ldd_B_o_nu_advanced.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 -I src/waterfall -o src/ldd_model/ldd_B_o_nucx_advanced.cmx src/ldd_model/ldd_B_o_nucx_advanced.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 -I src/waterfall -o src/ldd_model/ldd_B_o_u_advanced.cmx src/ldd_model/ldd_B_o_u_advanced.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 -I src/waterfall -o src/ldd_model/ldd_B_u_nu_advanced.cmx src/ldd_model/ldd_B_u_nu_advanced.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 -I src/waterfall -o src/ldd_model/ldd_B_u_nucx_advanced.cmx src/ldd_model/ldd_B_u_nucx_advanced.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/SnowStormModel.cmx src/snowflake/SnowStormModel.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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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 -I src/waterfall -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/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/mlbddExample.cmx src/snowflake/mlbddExample.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/SnowStorm.cmx src/snowflake/SnowStorm.ml
- + ocamlfind ocamlopt -c -for-pack DAGaml -package Snowflake -package GuaCaml -package unix -I src/snowflake -I src -I src/circuits -I src/conv -I src/core -I src/io -I src/ldd_model -I src/oops -I src/src -I src/waterfall -o src/snowflake/wap_lightweight.cmx src/snowflake/wap_lightweight.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 -I src/snowflake 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/snax.cmx src/io/strDumpCnf.cmx src/io/cnfUtils.cmx src/io/ioUtils.cmx src/io/strLoadCnf.cmx src/oops/OOPS.cmx src/oops/support.cmx src/oops/QEOPS.cmx src/oops/loadCnf.cmx src/oops/sUInt.cmx src/oops/vUInt.cmx src/circuits/snaxOops.cmx src/circuits/naxOops.cmx src/circuits/nnfExpr.cmx src/circuits/rExpr.cmx src/conv/convArgsTypes.cmx src/conv/convTypes.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_forall.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/oops/AQEOPS.cmx src/oops/AQEOPS_CRBTF.cmx src/oops/AQEOPS_RBTF.cmx src/oops/AvUInt.cmx src/oops/AQEOPS_RBTF_ArgMax_vUInt.cmx src/ldd_model/ldd_B_o_nucx_advanced.cmx src/ldd_model/ldd_B_o_nu_advanced.cmx src/ldd_model/ldd_B_o_u_advanced.cmx src/ldd_model/ldd_B_u_nucx_advanced.cmx src/ldd_model/ldd_B_u_nu_advanced.cmx src/ldd_model/testBUtils.cmx src/ldd_model/ldd_mlbdd.cmx src/snowflake/mlbddUtils.cmx src/snowflake/mlbddUInt.cmx src/snowflake/wap_exchange.cmx src/snowflake/rbtf.cmx src/snowflake/wap_exchange_utils.cmx src/snowflake/wap_lightspeed.cmx src/snowflake/mlbddExample.cmx src/snowflake/SnowStormModel.cmx src/snowflake/SnowStorm.cmx src/snowflake/wap_lightweight.cmx -o DAGaml.cmx ; then rm -f DAGaml.mli ; else rm -f DAGaml.mli ; exit 1; fi
- + ocamlfind ocamlopt -a -I src/waterfall src/waterfall/cwap_exchange.cmx src/waterfall/cwap_exchange_utils.cmx src/waterfall/crbtf.cmx src/waterfall/cwap_lightweight.cmx DAGaml.cmx -o DAGaml.cmxa
- + ocamlfind ocamlopt -shared -linkall DAGaml.cmxa -o DAGaml.cmxs
- # Parallel statistics: { count(total): 33(291), max: 112, min: 2, average(total): 7.061(1.687) }
-> compiled DAGaml.0.02
-> removed DAGaml.0.02
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.02)
- 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
- # No parallelism done
- 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.02
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:43.48 ---> saved as "0ac5c533f2a78bb2543cbdf9727593a0b9b29b4cf770e762721abae83c759ac8"
Job succeeded
2026-04-11 03:44.27: Job succeeded