Closed aqjune-aws closed 1 month ago
As a sanity check I turned this flag on and ran BIGNUM_COPY_CORRECT
and it worked well. :)
This is my trial to change their types from bool
to (preprocessor keyword)
. :) I omitted their actual OCaml type which is bool
because it seemed less important. Also slightly edited the sentences from called to read by a preprocessor.
--
Slightly updated the sentences further to remove usage of 'flag'.
This patch adds
unset_then_multiple_subgoals
andset_then_multiple_subgoals
that controls the behavior ofTHEN
with respect to the number of subgoals that its first tactic generated.This is useful when one wants to check whether a proof written using
THEN
can be syntactically converted to thee
-g
form. If this flag is set to true,t1 THEN t2 THEN ..
can be converted toe(t1);; e(t2);; ...
(modulo the validity check). To roll back the behavior ofTHEN
to the default version, useset_then_multiple_subgoals
.Also, this patch adds a Help document for
unset_jrh_lexer
which was missing (but notset_jrh_lexer
for brevity; the command is simply mentioned inunset_jrh_lexer
).