diff options
author | Josh Chen | 2020-04-16 15:37:43 +0200 |
---|---|---|
committer | Josh Chen | 2020-04-16 15:37:43 +0200 |
commit | 188566719d28a140602a24ef823b28b81e45cb85 (patch) | |
tree | cea4cff91ba4329a9846b69ebf069c949827a419 | |
parent | 88df8512841c1f2cb7016d2b604b9250582d4b8d (diff) |
update for Isabelle2020
-rw-r--r-- | README.md | 6 | ||||
-rw-r--r-- | ROOT | 1 | ||||
-rw-r--r-- | spartan/lib/equality.ML | 2 | ||||
-rw-r--r-- | spartan/lib/goals.ML | 2 |
4 files changed, 6 insertions, 5 deletions
@@ -4,11 +4,11 @@ An experimental implementation of [homotopy type theory](https://en.wikipedia.or ### Usage -Isabelle/HoTT is compatible with Isabelle2019. -To use, add the Isabelle/HoTT folder path to `.isabelle/Isabelle2019/ROOTS` (on Mac/Linux/cygwin installations): +Isabelle/HoTT is compatible with Isabelle2020. +To use, add the Isabelle/HoTT folder path to `.isabelle/Isabelle2020/ROOTS` (on Mac/Linux/cygwin installations): ``` -echo <path/to/Isabelle/HoTT> >> ~/.isabelle/Isabelle2019/ROOTS +echo <path/to/Isabelle/HoTT> >> ~/.isabelle/Isabelle2020/ROOTS ``` ### What (and why) is this? @@ -22,3 +22,4 @@ session HoTT in hott = Spartan + theories Base Nat + diff --git a/spartan/lib/equality.ML b/spartan/lib/equality.ML index 79b4086..023147b 100644 --- a/spartan/lib/equality.ML +++ b/spartan/lib/equality.ML @@ -84,7 +84,7 @@ fun equality_context_tac fact ctxt = THEN ALLGOALS (side_conds_tac ctxt) ) in - fn (ctxt, st) => Method.CONTEXT (record_inserts ctxt) (tac st) + fn (ctxt, st) => Context_Tactic.TACTIC_CONTEXT (record_inserts ctxt) (tac st) end end diff --git a/spartan/lib/goals.ML b/spartan/lib/goals.ML index ce23751..9f394f0 100644 --- a/spartan/lib/goals.ML +++ b/spartan/lib/goals.ML @@ -31,7 +31,7 @@ fun prep_statement prep_att prep_stmt raw_elems raw_stmt ctxt = let val (stmt, elems_ctxt) = prep_stmt raw_elems raw_stmt ctxt val prems = Assumption.local_prems_of elems_ctxt ctxt - val stmt_ctxt = fold (fold (Variable.auto_fixes o fst) o snd) + val stmt_ctxt = fold (fold (Proof_Context.augment o fst) o snd) stmt elems_ctxt in case raw_stmt of |