From 9efc22b51222dd0106a89aba79e766ac45185ab1 Mon Sep 17 00:00:00 2001 From: Alexander Bandukwala <7h3kk1d@gmail.com> Date: Wed, 20 Nov 2024 17:05:31 -0500 Subject: [PATCH] Add equality to termbase types --- src/haz3lcore/statics/TermBase.re | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/haz3lcore/statics/TermBase.re b/src/haz3lcore/statics/TermBase.re index 02bd8400d4..48b8dfd97d 100644 --- a/src/haz3lcore/statics/TermBase.re +++ b/src/haz3lcore/statics/TermBase.re @@ -2,7 +2,7 @@ open Util; let continue = x => x; let stop = (_, x) => x; -[@deriving (show({with_path: false}), sexp, yojson)] +[@deriving (show({with_path: false}), sexp, yojson, eq)] type deferral_position_t = | InAp | OutsideAp; @@ -46,7 +46,7 @@ type deferral_position_t = the id of the closure. */ -[@deriving (show({with_path: false}), sexp, yojson)] +[@deriving (show({with_path: false}), sexp, yojson, eq)] type any_t = | Exp(exp_t) | Pat(pat_t)