aboutsummaryrefslogtreecommitdiff
path: root/spartan/core/context_tactical.ML
diff options
context:
space:
mode:
authorJosh Chen2020-08-05 15:21:43 +0200
committerJosh Chen2020-08-05 15:21:43 +0200
commitc530305cbcafba9f66f1a55a1b5177a62f52535c (patch)
tree2c4736cf5884e53edd0b8eaebb903bb3f4857d2f /spartan/core/context_tactical.ML
parent710f314a9ccb84cdd9df9bc8bf52482b8d1f5a56 (diff)
1. fix intros method. 2. Couple extra lemmas; good small test cases for normalization in typechecking/elaboration.
Diffstat (limited to 'spartan/core/context_tactical.ML')
-rw-r--r--spartan/core/context_tactical.ML2
1 files changed, 1 insertions, 1 deletions
diff --git a/spartan/core/context_tactical.ML b/spartan/core/context_tactical.ML
index 0aa6f20..d0fed61 100644
--- a/spartan/core/context_tactical.ML
+++ b/spartan/core/context_tactical.ML
@@ -92,7 +92,7 @@ fun CREPEAT ctac =
fun CREPEAT1 ctac = ctac CTHEN CREPEAT ctac
-fun CREPEAT_N 0 _ = all_ctac
+fun CREPEAT_N 0 _ = no_ctac
| CREPEAT_N n ctac = ctac CTHEN CREPEAT_N (n - 1) ctac
fun CFILTER pred ctac cst =