Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lambda-rust
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Service Desk
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
lambda-rust
Commits
224ad3d4
Commit
224ad3d4
authored
7 years ago
by
Jacques-Henri Jourdan
Browse files
Options
Downloads
Patches
Plain Diff
Make valid comparisons between pointers and 0.
parent
82151de2
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
theories/lang/lang.v
+5
-1
5 additions, 1 deletion
theories/lang/lang.v
with
5 additions
and
1 deletion
theories/lang/lang.v
+
5
−
1
View file @
224ad3d4
...
@@ -220,7 +220,11 @@ Inductive lit_neq (σ : state) : base_lit → base_lit → Prop :=
...
@@ -220,7 +220,11 @@ Inductive lit_neq (σ : state) : base_lit → base_lit → Prop :=
|
IntNeq
z1
z2
:
|
IntNeq
z1
z2
:
z1
≠
z2
→
lit_neq
σ
(
LitInt
z1
)
(
LitInt
z2
)
z1
≠
z2
→
lit_neq
σ
(
LitInt
z1
)
(
LitInt
z2
)
|
LocNeq
l1
l2
:
|
LocNeq
l1
l2
:
l1
≠
l2
→
lit_neq
σ
(
LitLoc
l1
)
(
LitLoc
l2
)
.
l1
≠
l2
→
lit_neq
σ
(
LitLoc
l1
)
(
LitLoc
l2
)
|
LocNeqNullR
l
:
lit_neq
σ
(
LitLoc
l
)
(
LitInt
0
)
|
LocNeqNullL
l
:
lit_neq
σ
(
LitInt
0
)
(
LitLoc
l
)
.
Inductive
bin_op_eval
(
σ
:
state
)
:
bin_op
→
base_lit
→
base_lit
→
base_lit
→
Prop
:=
Inductive
bin_op_eval
(
σ
:
state
)
:
bin_op
→
base_lit
→
base_lit
→
base_lit
→
Prop
:=
|
BinOpPlus
z1
z2
:
|
BinOpPlus
z1
z2
:
...
...
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