ADT
aaron-thesis
arm-eh
ast-experimental
cleanup-dtors
deferred_resn
demangler
enum
forall-pointer-decay
jacob/cs343-translation
jenkins-sandbox
new-ast
new-ast-unique-expr
new-env
no_list
persistent-indexer
pthread-emulation
qualifiedEnum
resolv-new
with_gc
Last change
on this file since 92f8e18 was 604e76d, checked in by Peter A. Buhr <pabuhr@…>, 8 years ago |
initial setup for general and concurrency papers
|
-
Property mode
set to
100644
|
File size:
753 bytes
|
Rev | Line | |
---|
[604e76d] | 1 | #pragma once
|
---|
| 2 |
|
---|
| 3 | forall(otype R, otype S) struct pair {
|
---|
| 4 | R first;
|
---|
| 5 | S second;
|
---|
| 6 | };
|
---|
| 7 |
|
---|
| 8 | forall(otype R, otype S
|
---|
| 9 | | { int ?==?(R, R); int ?<?(R, R); int ?<?(S, S); })
|
---|
| 10 | int ?<?(pair(R, S) p, pair(R, S) q);
|
---|
| 11 |
|
---|
| 12 | forall(otype R, otype S
|
---|
| 13 | | { int ?==?(R, R); int ?<?(R, R); int ?<=?(S, S); })
|
---|
| 14 | int ?<=?(pair(R, S) p, pair(R, S) q);
|
---|
| 15 |
|
---|
| 16 | forall(otype R, otype S | { int ?==?(R, R); int ?==?(S, S); })
|
---|
| 17 | int ?==?(pair(R, S) p, pair(R, S) q);
|
---|
| 18 |
|
---|
| 19 | forall(otype R, otype S | { int ?!=?(R, R); int ?!=?(S, S); })
|
---|
| 20 | int ?!=?(pair(R, S) p, pair(R, S) q);
|
---|
| 21 |
|
---|
| 22 | forall(otype R, otype S
|
---|
| 23 | | { int ?==?(R, R); int ?>?(R, R); int ?>?(S, S); })
|
---|
| 24 | int ?>?(pair(R, S) p, pair(R, S) q);
|
---|
| 25 |
|
---|
| 26 | forall(otype R, otype S
|
---|
| 27 | | { int ?==?(R, R); int ?>?(R, R); int ?>=?(S, S); })
|
---|
| 28 | int ?>=?(pair(R, S) p, pair(R, S) q);
|
---|
Note:
See
TracBrowser
for help on using the repository browser.