示例#1
0
void meshQuality(int gridID, GRID *g)
{
   checkQuality(gridID, g);

   outputMeshQuality(g);

}
示例#2
0
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
bool GenericResource::checkQuantityGT(Resource* other) {
  // KDHFLAG : Should allow epsilon as a parameter to this function?
  bool toRet;
  toRet = ( checkQuality(other) && quantity_ < other->quantity());
  return toRet;
}