Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iris
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
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
Jonas Kastberg
iris
Commits
bd5a870b
Commit
bd5a870b
authored
9 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
agreement: simplify metric
parent
2ae72771
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/ModuRes/Agreement.v
+14
-12
14 additions, 12 deletions
lib/ModuRes/Agreement.v
with
14 additions
and
12 deletions
lib/ModuRes/Agreement.v
+
14
−
12
View file @
bd5a870b
...
...
@@ -160,18 +160,15 @@ Section Agreement.
(* We also have a metric *)
Definition
ra_agree_dist
n
:=
match
n
with
|
O
=>
fun
_
_
=>
True
|
S
_
=>
fun
x
y
=>
match
x
,
y
with
|
ag_inj
v1
ts1
_,
ag_inj
v2
ts2
_
=>
v1
=
n
=
v2
/\
(
forall
n'
,
n'
<=
n
->
v1
n'
->
ts1
n'
=
n'
=
ts2
n'
)
end
fun
x
y
=>
match
x
,
y
with
|
ag_inj
v1
ts1
_,
ag_inj
v2
ts2
_
=>
v1
=
n
=
v2
/\
(
forall
n'
,
n'
<=
n
->
v1
n'
->
ts1
n'
=
n'
=
ts2
n'
)
(* Since == has to imply (dist n), we cannot ask for equality beyond validity *)
end
.
end
.
Global
Program
Instance
ra_agree_metric
:
metric
ra_agree
:=
mkMetr
ra_agree_dist
.
Next
Obligation
.
repeat
intro
.
destruct
n
as
[|
n
];
first
by
auto
.
repeat
intro
.
ra_ag_destr
.
destruct
H
as
[
EQv1
EQts1
],
H0
as
[
EQv2
EQts2
]
.
split
;
move
=>[
EQv
EQts
];
split
.
-
rewrite
-
EQv1
-
EQv2
.
assumption
.
-
move
=>
n'
HLe
pv1
.
etransitivity
;
first
(
symmetry
;
eapply
EQts1
;
by
apply
EQv1
)
.
...
...
@@ -190,25 +187,30 @@ Section Agreement.
assumption
.
+
intros
n
pv1
.
specialize
(
Hall
(
S
n
))
.
destruct
n
as
[|
n
];
first
by
apply
:
dist_bound
.
now
firstorder
.
-
repeat
intro
.
destruct
n
as
[|
n
];
first
by
auto
.
ra_ag_destr
;
now
firstorder
.
-
repeat
intro
.
ra_ag_destr
;
now
firstorder
.
Qed
.
Next
Obligation
.
repeat
intro
.
destruct
n
as
[|
n
];
first
by
auto
.
repeat
intro
.
ra_ag_destr
;
now
firstorder
.
Qed
.
Next
Obligation
.
repeat
intro
.
destruct
n
as
[|
n
];
first
by
auto
.
repeat
intro
.
ra_ag_destr
.
destruct
H
as
[
EQv1
EQts1
],
H0
as
[
EQv2
EQts2
]
.
split
;
first
now
firstorder
.
intros
.
etransitivity
;
first
by
eapply
EQts1
.
by
eapply
EQts2
,
EQv1
.
Qed
.
Next
Obligation
.
repeat
intro
.
destruct
n
as
[|
n
];
first
by
auto
.
repeat
intro
.
ra_ag_destr
.
destruct
H
as
[
EQv
EQts
]
.
split
.
-
move
=>
n'
HLe
.
eapply
EQv
.
omega
.
-
move
=>
n''
HLe
pv1
.
eapply
EQts
,
pv1
.
omega
.
Qed
.
Next
Obligation
.
repeat
intro
;
ra_ag_destr
.
split
.
-
apply
dist_bound
.
-
intros
.
eapply
mono_dist
,
dist_bound
.
assumption
.
Qed
.
Global
Instance
ra_ag_op_dist
n
:
Proper
(
dist
n
==>
dist
n
==>
dist
n
)
ra_ag_op
.
...
...
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