aboutsummaryrefslogtreecommitdiff
path: root/lib/expression/t.ml
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@dailly.me>2025-01-17 20:48:43 +0100
committerSébastien Dailly <sebastien@dailly.me>2025-01-22 12:22:26 +0100
commit8e012f4804ecf1665819e761283120a3c0e73643 (patch)
treec168efe3e1f0edf5e45695c643e62b3e5447be37 /lib/expression/t.ml
parentbf2af26d896bb499f2c312a4f1ecd3210e2d7780 (diff)
Switched from OUnit to alcotest
Diffstat (limited to 'lib/expression/t.ml')
-rw-r--r--lib/expression/t.ml2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/expression/t.ml b/lib/expression/t.ml
index 9ce21b8..fec8fd7 100644
--- a/lib/expression/t.ml
+++ b/lib/expression/t.ml
@@ -6,6 +6,7 @@ type 'a window =
| Counter
| Previous of 'a
| Sum of 'a
+[@@deriving show, eq]
type 'a t =
| Empty
@@ -21,6 +22,7 @@ type 'a t =
| BOperator of binary_operator * 'a t * 'a t
| GEquality of binary_operator * 'a t * 'a t list
| Function' of funct * 'a t list
+[@@deriving show, eq]
and binary_operator =
| Equal