Changeset c9b3a41 for doc/papers/general/evaluation/cfa-pair.c
- Timestamp:
- Mar 2, 2018, 6:52:37 AM (6 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 000ff2c
- Parents:
- ab3251e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/papers/general/evaluation/cfa-pair.c
rab3251e rc9b3a41 1 1 #include "cfa-pair.h" 2 #include "fstream" 2 3 3 4 forall(otype R, otype S … … 34 35 return p.first > q.first || ( p.first == q.first && p.second >= q.second ); 35 36 } 37 38 forall(otype R, otype S) 39 forall(dtype ostype | ostream( ostype ) | { ostype & ?|?( ostype &, pair(R, S) ); }) 40 ostype & ?|?( ostype & os, pair(R, S) p ) { 41 return os | '[' | p.first | ',' | p.second | ']'; 42 } // ?|?
Note: See TracChangeset
for help on using the changeset viewer.