summaryrefslogtreecommitdiff
path: root/src/Utils.ml
diff options
context:
space:
mode:
authorSon Ho2022-01-05 19:21:13 +0100
committerSon Ho2022-01-05 19:21:13 +0100
commit8f2038542bcb8ec93b6c6447f38d098cff98fc2c (patch)
tree68f63c4bc83152813fc4044cf51348db6f6ce8f8 /src/Utils.ml
parent4feb960fe3b5d58a5420b0c569bcea645a420b9f (diff)
Split eval_local_function_call_symbolic to isolate a function which can
be reused for non-local function calls
Diffstat (limited to '')
-rw-r--r--src/Utils.ml6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Utils.ml b/src/Utils.ml
new file mode 100644
index 00000000..a285e869
--- /dev/null
+++ b/src/Utils.ml
@@ -0,0 +1,6 @@
+exception Found
+(** Utility exception
+
+ When looking for something while exploring a term, it can be easier to
+ just throw an exception to signal we found what we were looking for.
+ *)