Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ _build
/.vscode
.merlin
/oc-qtc*
_coverage

1 change: 1 addition & 0 deletions samples/.ocamlformat
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
version = 0.26.2
5 changes: 5 additions & 0 deletions samples/.ocamlformat-ignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
len.ml
JeepProblem.ml
Sorting.ml
tree.ml
WGC.ml
42 changes: 33 additions & 9 deletions samples/dune
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
(file %{project_root}/ppx/pp_distrib_gt_reify.exe))
(libraries GT OCanren))

(executable
(name len)
(executables
(names len)
(modules len)
(preprocess
(action
Expand Down Expand Up @@ -73,10 +73,34 @@
(deps tree.exe sorting.exe WGC.exe JeepProblem.exe len.exe))

(cram
(deps
tree.exe
sorting.exe
WGC.exe
JeepProblem.exe
;
))
(applies_to tree)
(deps tree.exe))

(cram
(applies_to sorting)
(deps sorting.exe))

(cram
(applies_to WGC)
(deps WGC.exe))

(cram
(applies_to Jeep)
(deps JeepProblem.exe))

(library
(name hypercube)
(modules hypercube)
(libraries GT OCanren OCanren.tester)
(inline_tests)
; (instrumentation
; (backend bisect_ppx))
(preprocess
(pps
OCanren-ppx.ppx_fresh
OCanren-ppx.ppx_distrib
OCanren-ppx.ppx_deriving_reify
GT.ppx_all
ppx_expect))
(preprocessor_deps
(file %{project_root}/ppx/pp_ocanren_all.exe)))
Loading