|
SoPlex Doxygen Documentation
|
Go to the documentation of this file.
19 #define DEVEX_REFINETOL 2.0
33 #ifdef ENABLE_CONSISTENCY_CHECKS
85 #ifdef PARTIAL_PRICING
113 for (; start < end; start += incr)
115 if (fTest[start] < -feastol)
117 x = fTest[start] * fTest[start] / cpen[start];
140 int oldstartpricing = startpricing;
143 for ( int i = oldstartpricing; i < dim; ++i)
145 Real fTesti = fTest[i];
146 if (fTesti < -feastol)
148 Real cpeni = cpen[i];
149 x = fTesti * fTesti / cpeni;
157 startpricing = (i + 1) % dim;
175 for ( int i = 0; i < oldstartpricing; ++i)
177 Real fTesti = fTest[i];
178 if (fTesti < -feastol)
180 Real cpeni = cpen[i];
181 x = fTesti * fTesti / cpeni;
189 startpricing = (i + 1) % dim;
217 if (fTesti < -feastol)
220 x = fTesti * fTesti / coPeni;
253 Real rhov_1 = 1 / rhoVec[n];
257 if (fabs(rhoVec[n]) < theeps)
260 << rhoVec[n] << " with smaller absolute value than theeps = " << theeps << std::endl; )
267 for (i = len - 1 - start; i >= 0; i -= incr)
270 x = rhoVec[j] * rhoVec[j] * beta_q;
334 coTesti = cTest[idx];
335 if (coTesti < -feastol)
338 x = coTesti * coTesti / coPeni;
377 if (testi < -feastol)
380 x = testi * testi / peni;
413 for (; start < end; start += incr)
415 if (cTest[start] < -feastol)
417 x = cTest[start] * cTest[start] / cpen[start];
444 for (; start < end; start += incr)
446 if (test[start] < -feastol)
448 x = test[start] * test[start] / pen[start];
476 int start1, int incr1, int start2, int incr2)
478 if (n >= 0 && n < thesolver->dim())
490 xi_p = xi_p * xi_p * last;
492 for (j = coPidx. size() - 1 - start1; j >= 0; j -= incr1)
495 coPenalty[i] += xi_p * coPvec[i] * coPvec[i];
503 for (j = pIdx. size() - 1 - start2; j >= 0; j -= incr2)
506 penalty[i] += xi_p * pVec[i] * pVec[i];
|