|
SoPlex Doxygen Documentation
|
Go to the documentation of this file.
96 MSG_INFO1( spxout << "ISTEEP01 initializing steepest edge multipliers" << std::endl; )
174 coPref[i] *= 1.0 - mult * i;
177 pref[i] *= 1.0 + mult * i;
225 Real rhov_1 = 1.0 / rhoVec[n];
230 if (fabs(rhoVec[n]) < theeps * 0.5)
233 << rhoVec[n] << " with smaller absolute value than 0.5*theeps = " << 0.5* theeps << std::endl; )
241 for( int i = 0; i < len; ++i)
243 int j = rhoIdx.index(i);
245 coPenalty_ptr[j] += rhoVec[j] * (beta_q * rhoVec[j] - 2.0 * rhov_1 * workVec_ptr[j]);
247 if (coPenalty_ptr[j] < delta)
248 coPenalty_ptr[j] = delta;
249 else if (coPenalty_ptr[j] >= infinity)
250 coPenalty_ptr[j] = 1.0 / theeps;
252 coPenalty_ptr[n] = beta_q;
262 #ifdef PARTIAL_PRICING
287 if( coPenalty_ptr[i] < theeps )
289 #ifdef ENABLE_ADDITIONAL_CHECKS
290 MSG_WARNING( spxout << "WSTEEP02 SPxSteepPR::selectLeaveX(): coPenalty too small ("
291 << coPenalty_ptr[i] << "), assuming epsilon (" << theeps << ")!" << std::endl; )
294 x = x * x / theeps * p[i];
297 x = x * x / coPenalty_ptr[i] * p[i];
338 for ( int i = oldstart; i < dim; ++i)
344 if( coPenalty_ptr[i] < theeps )
346 #ifdef ENABLE_ADDITIONAL_CHECKS
347 MSG_WARNING( spxout << "WSTEEP02 SPxSteepPR::selectLeavePart(): coPenalty too small ("
348 << coPenalty_ptr[i] << "), assuming epsilon (" << theeps << ")!" << std::endl; )
351 x = x * x / theeps * p[i];
354 x = x * x / coPenalty_ptr[i] * p[i];
372 for ( int i = 0; i < oldstart; ++i)
378 if( coPenalty_ptr[i] < theeps )
380 #ifdef ENABLE_ADDITIONAL_CHECKS
381 MSG_WARNING( spxout << "WSTEEP02 SPxSteepPR::selectLeavePart(): coPenalty too small ("
382 << coPenalty_ptr[i] << "), assuming epsilon (" << theeps << ")!" << std::endl; )
384 x = x * x / theeps * p[i];
387 x = x * x / coPenalty_ptr[i] * p[i];
437 if( coPenalty_ptr[idx] < theeps )
439 #ifdef ENABLE_ADDITIONAL_CHECKS
440 MSG_WARNING( spxout << "WSTEEP02 SPxSteepPR::selectLeaveSparse(): coPenalty too small ("
441 << coPenalty_ptr[idx] << "), assuming epsilon (" << theeps << ")!" << std::endl; )
444 x = x * x / theeps * p[idx];
447 x = x * x / coPenalty_ptr[idx] * p[idx];
485 if (n >= 0 && n < thesolver->dim())
502 for (j = coPidx. size() - 1; j >= 0; --j)
505 xi_ip = xi_p * coPvec[i];
506 x = coPenalty_ptr[i] += xi_ip * (xi_ip * pi_p - 2 * workVec_ptr[i]);
512 coPenalty_ptr[i] = delta;
518 for (j = pIdx. size() - 1; j >= 0; --j)
521 xi_ip = xi_p * pVec[i];
528 penalty_ptr[i] = delta;
606 coPen = coPenalty_ptr[idx];
646 pen = penalty_ptr[idx];
681 x *= x / coPenalty_ptr[i];
707 x *= x / penalty_ptr[i];
766 for (i = 0; i < j; ++i)
787 for (i = 0; i < j; ++i)
796 #ifdef ENABLE_CONSISTENCY_CHECKS
|