#include <gnodestuff.h>
Public Methods | |
| bool | operator() (GNode *a, GNode *b) |
|
||||||||||||
|
Definition at line 136 of file gnodestuff.h. References matvec::GNode::getWeight(), and matvec::GNode::sampled.
00136 {
00137 unsigned aw = a->sampled ? 1 : a->getWeight();
00138 unsigned bw = b->sampled ? 1 : b->getWeight();
00139 return aw>bw;
00140 }
|
1.2.16