synaps/base/comparison.h

00001 #ifndef synaps_base_comparison_h_
00002 #define synaps_base_comparison_h_
00003 
00004 __BEGIN_NAMESPACE_SYNAPS
00005 
00006 // typedef int Sign;
00007 const int NEGATIVE = -1;
00008 const int POSITIVE =  1;
00009 const int ZERO     =  0;
00010 
00011 
00012 typedef int Comparison_result;
00013 
00014 const int SMALLER  = -1;
00015 const int LARGER   =  1;
00016 const int EQUAL    =  0;
00017 const int UNKNOWN  = -100;
00018 const int ERROR    = -200;
00019 
00020 __END_NAMESPACE_SYNAPS
00021 
00022 
00023 #endif  //synaps_base_comparison_h_

SYNAPS DOCUMENTATION
logo