Skip to content

Commit

Permalink
Changes to solve merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
facundoy committed Nov 9, 2024
2 parents 89a360e + fa62a34 commit 34bede5
Show file tree
Hide file tree
Showing 33 changed files with 961 additions and 247 deletions.
5 changes: 2 additions & 3 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,12 @@
reason
ppx_yojson_conv_lib
ppx_yojson_conv
incr_dom
(omd (>= 2.0.0~alpha4))
ezjs_idb
virtual_dom
bonsai
ppx_deriving
ptmap
uuidm
(uuidm (= 0.9.8)) ; 0.9.9 has breaking deprecated changes
unionFind
ocamlformat
(junit_alcotest :with-test)
Expand Down
10 changes: 10 additions & 0 deletions dune-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
(lang dune 3.16)

; List of warning codes found at https://ocaml.org/manual/5.2/comp.html#s:comp-options
(env
(dev
(flags
(:standard -warn-error +A-26-27-K-58))) ; Disable some unused warnings.
(release
(flags
(:standard -warn-error +A-58))))
5 changes: 2 additions & 3 deletions hazel.opam

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

106 changes: 78 additions & 28 deletions hazel.opam.locked

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions src/haz3lcore/lang/term/IdTagged.re
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ type t('a) = {
term: 'a,
};

// To be used if you want to remove the id from the debug output
// let pp: ((Format.formatter, 'a) => unit, Format.formatter, t('a)) => unit =
// (fmt_a, formatter, ta) => {
// fmt_a(formatter, ta.term);
// };
let fresh = term => {
{ids: [Id.mk()], copied: false, term};
};
Expand Down
Loading

0 comments on commit 34bede5

Please sign in to comment.