Skip to content
Snippets Groups Projects
Commit 8fa7605a authored by Björn Brandenburg's avatar Björn Brandenburg
Browse files

proofloc.py: "Next Obligation" also starts a proof

...and "Defined" can end one.
parent 8e06a296
No related branches found
No related tags found
No related merge requests found
......@@ -15,8 +15,8 @@ r"""
"""
, re.VERBOSE)
PROOF_START_PATTERN = re.compile(r"[ \t^]Proof\.")
PROOF_END_PATTERN = re.compile(r"[ \t^.]Qed\.")
PROOF_START_PATTERN = re.compile(r"[ \t^](Proof|Next +Obligation)\.")
PROOF_END_PATTERN = re.compile(r"[ \t^.](Qed|Defined)\.")
CLAIM_NAME_PATTERN = re.compile(
r"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment