aboutsummaryrefslogtreecommitdiff
path: root/spartan/core/eqsubst.ML
diff options
context:
space:
mode:
authorJosh Chen2020-08-03 13:34:53 +0200
committerJosh Chen2020-08-03 13:34:53 +0200
commit710f314a9ccb84cdd9df9bc8bf52482b8d1f5a56 (patch)
treeabbc3d847e17b9659b11eb8e4e2eda3430ba007a /spartan/core/eqsubst.ML
parent70fd3f72ef8f9cc01a071250d94e8c25ecb04c1d (diff)
(FEAT) SIDE_CONDS tactical has additional argument specifying how many initial subgoals to skip applying the side condition solver to.
(FEAT) `intro`, `intros` methods for "logical introduction rules" (as opposed to typechecking `intr` attribute), only works on conclusions with rigid type. (FEAT) CREPEAT_N bounded repetition tactical, used in `intros n` method.
Diffstat (limited to '')
-rw-r--r--spartan/core/eqsubst.ML2
1 files changed, 1 insertions, 1 deletions
diff --git a/spartan/core/eqsubst.ML b/spartan/core/eqsubst.ML
index e7ecf63..31d5126 100644
--- a/spartan/core/eqsubst.ML
+++ b/spartan/core/eqsubst.ML
@@ -433,7 +433,7 @@ val _ =
"single-step substitution" #>
Method.setup \<^binding>\<open>subst\<close>
(parser >> (fn ((asm, occs), inthms) => K (CONTEXT_METHOD (
- CHEADGOAL o SIDE_CONDS
+ CHEADGOAL o SIDE_CONDS 0
((if asm then eqsubst_asm_ctac else eqsubst_ctac) occs inthms)))))
"single-step substitution with automatic discharge of side conditions"
)