File indexing completed on 2024-04-14 14:10:47

0001 #ifndef _SpatialSign_h_
0002 #define _SpatialSign_h_
0003 //########################################################################
0004 //#
0005 //# Spatial Sign helper class
0006 
0007 /** */
0008 enum Sign
0009 {
0010     nEG,  /// All constraints negative or zero
0011     zERO, /// All constraints zero
0012     pOS,  /// All constraints positive or zero
0013     mIXED /// At least one pos and one neg
0014 };
0015 
0016 #endif