Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037 #ifndef __JAG_PQ_OPT_INTERVAL__
00038 #define __JAG_PQ_OPT_INTERVAL__
00039
00040 #include <util/aggreg2dto1dpart.hpp>
00041 #include <twod/part_base.hpp>
00042
00043 namespace twod
00044 {
00045
00062 template <typename T, typename Pr>
00063 class JagPQOptIntervalHor : public PartBase<T, Pr>
00064 {
00065 int P;
00066
00067 static T internal(int procX, int procY, const Pr& prefixSumArray, util::RectList<T, Pr > &parts);
00068
00069 public:
00070
00071 virtual ~JagPQOptIntervalHor();
00072 JagPQOptIntervalHor();
00073
00081 void setP(int P);
00102 virtual T part (int procCount, const Pr& prefixSumArray, util::RectList<T, Pr > &parts);
00103 };
00104
00116 template<typename T, typename Pr>
00117 class JagPQOptIntervalVer : public PartBase<T,Pr>
00118 {
00119 int P;
00120 public:
00121 JagPQOptIntervalVer();
00122
00123
00131 void setP(int P);
00132
00133 virtual T part(int procCount, const Pr& prefixSumArray, util::RectList<T,Pr> &parts);
00134
00135 virtual ~JagPQOptIntervalVer();
00136 };
00137
00150 template<typename T, typename Pr>
00151 class JagPQOptIntervalBest : public PartBase<T,Pr>
00152 {
00153 public:
00154 virtual T part(int procCount, const Pr& prefixSumArray, util::RectList<T,Pr> &parts);
00155
00156 virtual ~JagPQOptIntervalBest();
00157 };
00158
00159 }
00160
00161 #include <twod/jag_pq_opt_interval_impl.hpp>
00162 #endif