aboutsummaryrefslogtreecommitdiff
path: root/spartan/core/lib
diff options
context:
space:
mode:
authorJosh Chen2020-06-03 13:10:35 +0200
committerJosh Chen2020-06-03 13:10:35 +0200
commit9050b7414021db31b23a034567ebc6da3f6c5f67 (patch)
tree2f5928e275c3e8ae7d99fef65e7fddf31f11d2f6 /spartan/core/lib
parentccc26cf8073071698f333107fd7443a6af7fb3de (diff)
parent515c142828e66dcb1c273e53816ef8b6e1bb3f01 (diff)
Merge branch 'dev'
Diffstat (limited to 'spartan/core/lib')
-rw-r--r--spartan/core/lib/types.ML18
1 files changed, 18 insertions, 0 deletions
diff --git a/spartan/core/lib/types.ML b/spartan/core/lib/types.ML
new file mode 100644
index 0000000..b0792fe
--- /dev/null
+++ b/spartan/core/lib/types.ML
@@ -0,0 +1,18 @@
+structure Types
+= struct
+
+structure Data = Generic_Data (
+ type T = thm Item_Net.T
+ val empty = Item_Net.init Thm.eq_thm
+ (single o Lib.term_of_typing o Thm.prop_of)
+ val extend = I
+ val merge = Item_Net.merge
+)
+
+fun put_type typing = Context.proof_map (Data.map (Item_Net.update typing))
+fun put_types typings = foldr1 (op o) (map put_type typings)
+
+fun get_types ctxt tm = Item_Net.retrieve (Data.get (Context.Proof ctxt)) tm
+
+
+end