Jafar
|
00001 /* $Id$ */ 00002 #ifndef _DSEG__GROW_STOP_CONDITION_H_ 00003 #define _DSEG_GROW_STOP_CONDITION_H_ 00004 00005 namespace jafar { 00006 namespace dseg { 00012 class GrowStopCondition { 00013 public: 00014 virtual ~GrowStopCondition(); 00015 virtual bool shouldStopPositiveSearch() const = 0; 00016 virtual bool shouldStopNegativeSearch() const = 0; 00017 virtual void reset() = 0; 00018 virtual void reached( double t ) = 0; 00019 }; 00020 } 00021 } 00022 00023 #endif
Generated on Wed Oct 15 2014 00:37:18 for Jafar by doxygen 1.7.6.1 |