aboutsummaryrefslogtreecommitdiff
path: root/checker/values.ml
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2019-06-04 10:19:02 +0200
committerPierre-Marie Pédrot2019-06-04 11:16:17 +0200
commit0f54a91eac98baf076d8be8f52bccdb1de17ea46 (patch)
tree5e6c7901f04577ba1fd4a4a05e09ff5df8cf4e76 /checker/values.ml
parente7ffa1bfa25300a25c1e81583b77d2d7587bbb5d (diff)
Slightly tweak the representation of dischargeable opaque proofs.
This will allow an easier removal of the discharge segment in a later commit.
Diffstat (limited to 'checker/values.ml')
-rw-r--r--checker/values.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/checker/values.ml b/checker/values.ml
index 6dbf281f49..4a4c8d803c 100644
--- a/checker/values.ml
+++ b/checker/values.ml
@@ -399,6 +399,6 @@ let v_abstract =
let v_cooking_info =
Tuple ("cooking_info", [|v_work_list; v_abstract|])
-let v_opaques = Array (Opt (Tuple ("opaque", [| List v_cooking_info; Int; v_constr |])))
+let v_opaques = Array (Tuple ("opaque", [| List v_cooking_info; Int; Opt v_constr |]))
let v_univopaques =
Opt (Tuple ("univopaques",[|v_context_set;v_bool|]))