Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
simuliris
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
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
simuliris
Commits
838d4b52
Commit
838d4b52
authored
3 years ago
by
Lennard Gäher
Browse files
Options
Downloads
Patches
Plain Diff
fix
parent
38a66e2d
No related branches found
No related tags found
No related merge requests found
Pipeline
#49625
passed
3 years ago
Stage: build
Changes
2
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
theories/simulang/na_inv/examples/data_races.v
+1
-1
1 addition, 1 deletion
theories/simulang/na_inv/examples/data_races.v
theories/simulang/tactics.v
+6
-2
6 additions, 2 deletions
theories/simulang/tactics.v
with
7 additions
and
3 deletions
theories/simulang/na_inv/examples/data_races.v
+
1
−
1
View file @
838d4b52
...
@@ -152,7 +152,7 @@ Section data_race.
...
@@ -152,7 +152,7 @@ Section data_race.
rewrite
bool_decide_eq_true_2
;
last
done
.
rewrite
bool_decide_eq_true_2
;
last
done
.
sim_pures
.
iApply
sim_expr_base
.
iLeft
.
iApply
lift_post_val
.
sim_pures
.
iApply
sim_expr_base
.
iLeft
.
iApply
lift_post_val
.
sim_pures
.
source_load
.
target_load
.
to_sim
.
sim_pures
.
sim_pures
.
source_load
.
target_load
.
sim_pures
.
(* cleanup *)
(* cleanup *)
source_free
.
source_free
.
target_free
.
target_free
.
sim_pures
.
source_free
.
source_free
.
target_free
.
target_free
.
sim_pures
.
iApply
(
sim_bij_release
(
NaRead
q
)
with
"Hbij Hc Hl_t Hl_s [//]"
)
.
iApply
(
sim_bij_release
(
NaRead
q
)
with
"Hbij Hc Hl_t Hl_s [//]"
)
.
...
...
This diff is collapsed.
Click to expand it.
theories/simulang/tactics.v
+
6
−
2
View file @
838d4b52
...
@@ -384,10 +384,14 @@ Ltac simpl_subst :=
...
@@ -384,10 +384,14 @@ Ltac simpl_subst :=
let
e'
:=
W
.
of_expr
e
in
let
e'
:=
W
.
of_expr
e
in
simple
refine
(
W
.
tac_to_expr_subst
_
_
_
_
e'
_
_
_
_);
[
shelve
simple
refine
(
W
.
tac_to_expr_subst
_
_
_
_
e'
_
_
_
_);
[
shelve
|
simpl
;
rewrite
?list_to_map_to_list
;
reflexivity
|
simpl
;
rewrite
?list_to_map_to_list
;
reflexivity
|
simpl
;
compute_done
|
(* FIXME: really hacky hack to speed up goals on which [compute_done] takes forever due to evars,
but where [simpl] would suffice...*)
first
[
timeout
1
compute_done
|
simpl
;
reflexivity
]
|];
|];
simple
refine
(
W
.
tac_to_expr_combine_subst_map
_
_
_
_
_);
[
shelve
|
simple
refine
(
W
.
tac_to_expr_combine_subst_map
_
_
_
_
_);
[
shelve
|
simpl
;
compute_done
|
];
(* FIXME *)
first
[
timeout
1
compute_done
|
simpl
;
reflexivity
]
|
];
simpl
simpl
end
.
end
.
Arguments
subst
:
simpl
never
.
Arguments
subst
:
simpl
never
.
...
...
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