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
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047 #include <oned/nicol.hpp>
00048
00049
00050
00051 template <typename T, typename Pr>
00052 T oned::Nicol<T,Pr>::nicol_internal(const Pr& w, int n, int p, T upperbound)
00053 {
00054 using namespace util;
00055 T LB = w[n - 1] / p, UB = w[n - 1];
00056 int *i_array = new int[p];
00057 T *Bb_array = new T[p];
00058 int b, ilow, ihigh, imid, i;
00059 T B, Bopt;
00060
00061 if (upperbound >= 0)
00062 UB=upperbound;
00063
00064 i_array[0] = 1;
00065 for(b = 1; b <= p - 1; b++)
00066 {
00067 ilow = i_array[b - 1];
00068 ihigh = n - 1;
00069 while(ilow < ihigh)
00070 {
00071 imid = (ilow + ihigh) / 2;
00072 B = w[imid] - w[i_array[b - 1] - 1];
00073 if(LB <= B && B < UB)
00074 if(ParametricSearch<T,Pr>::probe(B, p - 1, w, n))
00075 {
00076 ihigh = imid;
00077 UB = B;
00078 }
00079 else
00080 {
00081 ilow = imid + 1;
00082 LB = B;
00083 }
00084 else if(B >= UB)
00085 ihigh = imid;
00086 else
00087 ilow = imid + 1;
00088 }
00089 i_array[b] = ihigh;
00090 Bb_array[b-1] = w[i_array[b]] - w[i_array[b-1]-1];
00091 }
00092 assert(i_array[p-1]-1 > -1);
00093 Bb_array[p-1] = w[n-1] - w[i_array[p-1]-1];
00094 Bopt = Bb_array[0];
00095 for(i = 1; i < p; i++)
00096 {
00097 if(Bopt > Bb_array[i])
00098 {
00099 Bopt = Bb_array[i];
00100 }
00101 }
00102 delete[] i_array;
00103 delete[] Bb_array;
00104 return Bopt;
00105 }
00106
00107 template <typename T, typename Pr>
00108 T oned::Nicol<T,Pr>::nicol(int procCount, const Pr& prefixSumArray,
00109 int length, int *cutIndexes, T max)
00110 {
00111 using namespace util;
00112 T ub = (prefixSumArray[length - 1] + max * (procCount - 1)) / procCount;
00113 if (max < 0)
00114 ub = -1;
00115
00116 T b = nicol_internal (prefixSumArray, length, procCount, ub);
00117 if (cutIndexes != NULL)
00118 ParametricSearch<T,Pr>::probeCut (b, procCount-1, prefixSumArray,length,cutIndexes);
00119 return b;
00120 }