Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Actris
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Iris
Actris
Commits
dfef4e62
Commit
dfef4e62
authored
1 year ago
by
Jonas Kastberg
Browse files
Options
Downloads
Patches
Plain Diff
Improved fork_chan proofmode
parent
d36fe30f
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#96064
passed
1 year ago
Changes
1
Pipelines
4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
theories/channel/proofmode.v
+8
-3
8 additions, 3 deletions
theories/channel/proofmode.v
with
8 additions
and
3 deletions
theories/channel/proofmode.v
+
8
−
3
View file @
dfef4e62
...
...
@@ -491,10 +491,15 @@ Tactic Notation "wp_new_chan" constr(prot) "as"
iIntros
(
c1
);
iIntros
(
c2
);
iIntros
pat
.
Tactic
Notation
"wp_fork_chan"
constr
(
prot
)
"as"
simple_intropattern
(
c1
)
constr
(
pat1
)
"and"
simple_intropattern
(
c2
)
constr
(
pat2
)
:=
simple_intropattern
(
c1
)
constr
(
pat1
)
"and"
simple_intropattern
(
c2
)
constr
(
pat2
)
:=
wp_smart_apply
(
fork_chan_spec
prot
);
[
iIntros
(
c2
);
iIntros
pat2
|
iIntros
(
c1
);
iIntros
pat1
]
.
Tactic
Notation
"wp_fork_chan"
constr
(
prot
)
:=
wp_smart_apply
(
fork_chan_spec
prot
)
.
Tactic
Notation
"wp_fork_chan"
constr
(
prot
)
"as"
simple_intropattern
(
c
)
constr
(
pat
)
:=
wp_fork_chan
prot
as
c
pat
and
c
pat
.
Tactic
Notation
"wp_fork_chan"
constr
(
prot
)
:=
let
iNew
:=
iFresh
in
wp_fork_chan
prot
as
?
iNew
.
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment