summaryrefslogtreecommitdiff
path: root/test-suite/complexity/injection.v
diff options
context:
space:
mode:
authorGravatar Enrico Tassi <gareuselesinge@debian.org>2015-01-25 14:42:51 +0100
committerGravatar Enrico Tassi <gareuselesinge@debian.org>2015-01-25 14:42:51 +0100
commit7cfc4e5146be5666419451bdd516f1f3f264d24a (patch)
treee4197645da03dc3c7cc84e434cc31d0a0cca7056 /test-suite/complexity/injection.v
parent420f78b2caeaaddc6fe484565b2d0e49c66888e5 (diff)
Imported Upstream version 8.5~beta1+dfsg
Diffstat (limited to 'test-suite/complexity/injection.v')
-rw-r--r--test-suite/complexity/injection.v8
1 files changed, 4 insertions, 4 deletions
diff --git a/test-suite/complexity/injection.v b/test-suite/complexity/injection.v
index 335996c2..08f489d7 100644
--- a/test-suite/complexity/injection.v
+++ b/test-suite/complexity/injection.v
@@ -72,14 +72,14 @@ Definition own_join (a b c: own) : Prop :=
match a , b , c with
| NO , _ , _ => b=c
| _ , NO , _ => a=c
- | VAL' sa _ , VAL' sb _, VAL' sc _ => Share.j.(join) sa sb sc
- | LK sa pa ha fa, LK sb pb hb fb, LK sc pc hc fc =>
+ | @VAL' sa _, @VAL' sb _, @VAL' sc _ => Share.j.(join) sa sb sc
+ | @LK sa pa ha fa, @LK sb pb hb fb, @LK sc pc hc fc =>
Share.j.(join) sa sb sc /\
Share.j.(join) ha hb hc /\
fa=fc /\
fb=fc
- | CT sa pa , CT sb pb, CT sc pc => Share.j.(join) sa sb sc
- | FUN sa pa fa, FUN sb pb fb, FUN sc pc fc =>
+ | @CT sa pa , @CT sb pb, @CT sc pc => Share.j.(join) sa sb sc
+ | @FUN sa pa fa, @FUN sb pb fb, @FUN sc pc fc =>
Share.j.(join) sa sb sc /\ fa=fc /\ fb=fc
| _ , _ , _ => False
end.