Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Why3
why3
Commits
68dca709
Commit
68dca709
authored
Oct 30, 2012
by
Guillaume Melquiond
Browse files
Prevent finding explanation label when stop_split is encountered.
parent
2aeb63da
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/session/session.ml
View file @
68dca709
...
...
@@ -676,7 +676,9 @@ let check_expl lab acc =
then
Some
(
Str
.
matched_group
1
lab
)
else
acc
let
check_expl
lab
=
Ident
.
Slab
.
fold
check_expl
lab
None
let
check_expl
lab
=
if
Ident
.
Slab
.
mem
Split_goal
.
stop_split
lab
then
None
else
Ident
.
Slab
.
fold
check_expl
lab
None
let
rec
get_expl_fmla
acc
f
=
if
f
.
t_ty
<>
None
then
acc
else
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment