NAMD
Classes | Functions
ComputeGlobal.h File Reference
#include "ComputeHomePatches.h"
#include "NamdTypes.h"

Go to the source code of this file.

Classes

struct  intpair
 
class  ComputeGlobal
 

Functions

bool operator< (const intpair &lhs, const intpair &rhs)
 

Function Documentation

bool operator< ( const intpair lhs,
const intpair rhs 
)
inline

Definition at line 29 of file ComputeGlobal.h.

References intpair::first, and intpair::second.

29  {
30  return lhs.first < rhs.first ? true :
31  lhs.first != rhs.first ? false :
32  lhs.second < rhs.second;
33 }
int second
Definition: ComputeGlobal.h:24