00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef HxBpoMin_h
00011 #define HxBpoMin_h
00012
00013 #include "HxTagList.h"
00014 #include "HxClassName.h"
00015 #include "HxScalarInt.h"
00016 #include "HxCategories.h"
00017
00018
00021 template<class DstValT, class Src1ValT, class Src2ValT>
00022 class HxBpoMin
00023 {
00024 public:
00026 typedef HxTagTransInVar TransVarianceCategory;
00027
00029 HxBpoMin(HxTagList&)
00030 {}
00031
00033 DstValT doIt(const Src1ValT& x, const Src2ValT& y)
00034 { return x.min(y); }
00035
00036 static DstValT neutralElement()
00037 { return DstValT::LARGE_VAL; }
00038
00040 static HxString className()
00041 { return HxString("min"); }
00042 };
00043
00044 #endif