#include <structures.h>
Public Member Functions | |
| Exclusion (void) | |
| Exclusion (int a1, int a2, int mod=0) | |
| int | hash (void) const |
| int | operator== (const Exclusion &o) const |
| int | operator< (const Exclusion &o) const |
Public Attributes | |
| int32 | atom1 |
| int32 | atom2 |
| Index | modified |
|
|
Definition at line 137 of file structures.h. 00137 : modified(0) {;}
|
|
||||||||||||||||
|
Definition at line 138 of file structures.h.
|
|
|
Definition at line 143 of file structures.h. 00144 {
00145 return atom1 + atom2;
00146 }
|
|
|
Definition at line 151 of file structures.h. 00152 {
00153 return
00154 (
00155 ( atom1 < o.atom1 ) ||
00156 ( atom1 == o.atom1 && atom2 < o.atom2 )
00157 );
00158 }
|
|
|
Definition at line 147 of file structures.h.
|
|
|
Definition at line 140 of file structures.h. Referenced by ExclElem::ExclElem(), operator<(), and operator==(). |
|
|
Definition at line 141 of file structures.h. Referenced by ExclElem::ExclElem(), operator<(), and operator==(). |
|
|
Definition at line 142 of file structures.h. Referenced by ExclElem::ExclElem(). |
1.3.9.1