aboutsummaryrefslogtreecommitdiff
path: root/spartan/core
diff options
context:
space:
mode:
authorJosh Chen2020-05-25 17:09:54 +0200
committerJosh Chen2020-05-25 17:09:54 +0200
commit80edbd08e13200d2c080ac281d19948bbbcd92e0 (patch)
tree95cc00c52c846406e04cd985ef9df2d5a1e9996c /spartan/core
parent22c5b895a4a2ba0ecb97a5c7ccab4b13c42c24e3 (diff)
Reorganize theory structure. In particular, the identity type moves out from under Spartan to HoTT. Spartan now only has Pi and Sigma.
Diffstat (limited to '')
-rw-r--r--spartan/core/Spartan.thy (renamed from spartan/theories/Spartan.thy)18
-rw-r--r--spartan/core/congruence.ML (renamed from spartan/lib/congruence.ML)0
-rw-r--r--spartan/core/elimination.ML (renamed from spartan/lib/elimination.ML)0
-rw-r--r--spartan/core/eqsubst.ML (renamed from spartan/lib/eqsubst.ML)0
-rw-r--r--spartan/core/equality.ML (renamed from spartan/lib/equality.ML)0
-rw-r--r--spartan/core/focus.ML (renamed from spartan/lib/focus.ML)0
-rw-r--r--spartan/core/goals.ML (renamed from spartan/lib/goals.ML)0
-rw-r--r--spartan/core/implicits.ML (renamed from spartan/lib/implicits.ML)0
-rw-r--r--spartan/core/lib.ML (renamed from spartan/lib/lib.ML)0
-rw-r--r--spartan/core/rewrite.ML (renamed from spartan/lib/rewrite.ML)0
-rw-r--r--spartan/core/tactics.ML (renamed from spartan/lib/tactics.ML)0
11 files changed, 9 insertions, 9 deletions
diff --git a/spartan/theories/Spartan.thy b/spartan/core/Spartan.thy
index d235041..b4f7772 100644
--- a/spartan/theories/Spartan.thy
+++ b/spartan/core/Spartan.thy
@@ -142,20 +142,20 @@ section \<open>Proof commands\<close>
named_theorems typechk
-ML_file \<open>../lib/lib.ML\<close>
-ML_file \<open>../lib/goals.ML\<close>
-ML_file \<open>../lib/focus.ML\<close>
+ML_file \<open>lib.ML\<close>
+ML_file \<open>goals.ML\<close>
+ML_file \<open>focus.ML\<close>
section \<open>Congruence automation\<close>
(*Potential to be retired*)
-ML_file \<open>../lib/congruence.ML\<close>
+ML_file \<open>congruence.ML\<close>
section \<open>Methods\<close>
-ML_file \<open>../lib/elimination.ML\<close> \<comment> \<open>declares the [elims] attribute\<close>
+ML_file \<open>elimination.ML\<close> \<comment> \<open>declares the [elims] attribute\<close>
named_theorems intros and comps
lemmas
@@ -165,7 +165,7 @@ lemmas
[comps] = beta Sig_comp and
[cong] = Pi_cong lam_cong Sig_cong
-ML_file \<open>../lib/tactics.ML\<close>
+ML_file \<open>tactics.ML\<close>
method_setup assumptions =
\<open>Scan.succeed (fn ctxt => SIMPLE_METHOD (
@@ -227,7 +227,7 @@ ML_file "~~/src/Tools/misc_legacy.ML"
ML_file "~~/src/Tools/IsaPlanner/isand.ML"
ML_file "~~/src/Tools/IsaPlanner/rw_inst.ML"
ML_file "~~/src/Tools/IsaPlanner/zipper.ML"
-ML_file "../lib/eqsubst.ML"
+ML_file "eqsubst.ML"
\<comment> \<open>\<open>rewrite\<close> method\<close>
consts rewrite_HOLE :: "'a::{}" ("\<hole>")
@@ -254,7 +254,7 @@ lemma imp_cong_eq:
done
ML_file \<open>~~/src/HOL/Library/cconv.ML\<close>
-ML_file \<open>../lib/rewrite.ML\<close>
+ML_file \<open>rewrite.ML\<close>
\<comment> \<open>\<open>reduce\<close> computes terms via judgmental equalities\<close>
setup \<open>map_theory_simpset (fn ctxt => ctxt addSolver (mk_solver "" typechk_tac))\<close>
@@ -273,7 +273,7 @@ consts
iarg :: \<open>'a\<close> ("?")
hole :: \<open>'b\<close> ("{}")
-ML_file \<open>../lib/implicits.ML\<close>
+ML_file \<open>implicits.ML\<close>
attribute_setup implicit = \<open>Scan.succeed Implicits.implicit_defs_attr\<close>
diff --git a/spartan/lib/congruence.ML b/spartan/core/congruence.ML
index bb7348c..bb7348c 100644
--- a/spartan/lib/congruence.ML
+++ b/spartan/core/congruence.ML
diff --git a/spartan/lib/elimination.ML b/spartan/core/elimination.ML
index 617f83e..617f83e 100644
--- a/spartan/lib/elimination.ML
+++ b/spartan/core/elimination.ML
diff --git a/spartan/lib/eqsubst.ML b/spartan/core/eqsubst.ML
index ea6f098..ea6f098 100644
--- a/spartan/lib/eqsubst.ML
+++ b/spartan/core/eqsubst.ML
diff --git a/spartan/lib/equality.ML b/spartan/core/equality.ML
index 023147b..023147b 100644
--- a/spartan/lib/equality.ML
+++ b/spartan/core/equality.ML
diff --git a/spartan/lib/focus.ML b/spartan/core/focus.ML
index 1d8de78..1d8de78 100644
--- a/spartan/lib/focus.ML
+++ b/spartan/core/focus.ML
diff --git a/spartan/lib/goals.ML b/spartan/core/goals.ML
index 9f394f0..9f394f0 100644
--- a/spartan/lib/goals.ML
+++ b/spartan/core/goals.ML
diff --git a/spartan/lib/implicits.ML b/spartan/core/implicits.ML
index 04fc825..04fc825 100644
--- a/spartan/lib/implicits.ML
+++ b/spartan/core/implicits.ML
diff --git a/spartan/lib/lib.ML b/spartan/core/lib.ML
index 615f601..615f601 100644
--- a/spartan/lib/lib.ML
+++ b/spartan/core/lib.ML
diff --git a/spartan/lib/rewrite.ML b/spartan/core/rewrite.ML
index f9c5d8e..f9c5d8e 100644
--- a/spartan/lib/rewrite.ML
+++ b/spartan/core/rewrite.ML
diff --git a/spartan/lib/tactics.ML b/spartan/core/tactics.ML
index f23bfee..f23bfee 100644
--- a/spartan/lib/tactics.ML
+++ b/spartan/core/tactics.ML