#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 95 of file structures.h. 00095 : modified(0) {;}
|
|
||||||||||||||||
|
Definition at line 96 of file structures.h.
|
|
|
Definition at line 101 of file structures.h. 00102 {
00103 return atom1 + atom2;
00104 }
|
|
|
Definition at line 109 of file structures.h. 00110 {
00111 return
00112 (
00113 ( atom1 < o.atom1 ) ||
00114 ( atom1 == o.atom1 && atom2 < o.atom2 )
00115 );
00116 }
|
|
|
Definition at line 105 of file structures.h.
|
|
|
Definition at line 98 of file structures.h. Referenced by operator<(), operator==(), and Molecule::read_parm(). |
|
|
Definition at line 99 of file structures.h. Referenced by operator<(), operator==(), and Molecule::read_parm(). |
|
|
Definition at line 100 of file structures.h. Referenced by Molecule::read_parm(). |
1.3.9.1