|
SoPlex Doxygen Documentation
|
Go to the documentation of this file.
41 #define MINSTABILITY REAL(4e-2)
45 METHOD( "SLUFactor::solveRight()" );
58 METHOD( "SLUFactor::solveRight()" );
72 METHOD( "SLUFactor::solveRight4update()" );
115 METHOD( "SLUFactor::solve2right4update()" );
123 int rsize = rhs. size();
167 METHOD( "SLUFactor::solve3right4update()" );
175 int rsize = rhs. size();
177 int rsize2 = rhs2. size();
219 METHOD( "SLUFactor::solveLeft()" );
234 METHOD( "SLUFactor::solveLeft()" );
266 METHOD( "SLUFactor::solveLeft()" );
273 int rn = rhs2. size();
302 METHOD( "SLUFactor::stability()" );
316 s << "Factorizations : " << std::setw(10) << getFactorCount() << std::endl
317 << " Time spent : " << std::setw(10) << std::fixed << std::setprecision(2) << getFactorTime() << std::endl
318 << "Solves : " << std::setw(10) << getSolveCount() << std::endl
319 << " Time spent : " << std::setw(10) << getSolveTime() << std::endl;
326 METHOD( "SLUFactor::changeEta()" );
339 METHOD( "SLUFactor::change()" );
400 METHOD( "SLUFactor::clear()" );
481 METHOD( "SLUFactor::operator=()" );
614 assert(old. l. ridx != 0);
615 assert(old. l. rbeg != 0);
635 assert(old. l. ridx == 0);
636 assert(old. l. rbeg == 0);
675 METHOD( "SLUFactor::operator=()" );
706 , uptype (FOREST_TOMLIN)
710 METHOD( "SLUFactor::SLUFactor()" );
883 METHOD( "SLUFactor::freeAll()" );
919 METHOD( "SLUFactor::~SLUFactor()" );
925 assert(th < REAL(1.0));
929 else if ( LT(th, REAL(0.9)))
931 else if ( LT(th, REAL(0.999)))
934 assert(th < REAL(1.0));
941 METHOD( "SLUFactor::Status()" );
1025 MSG_INFO3( spxout << "ISLUFA01 refactorizing with increased Markowitz threshold: "
1035 FILE* fl = fopen( "dump.lp", "w");
1036 spxout << "DSLUFA03 Basis:\n";
1038 for (i = 0; i < dim(); ++i)
1039 j += matrix[i]->size();
1040 for (i = 0; i < dim(); ++i)
1042 for (j = 0; j < matrix[i]-> size(); ++j)
1043 fprintf(fl, "%8d %8d %16g\n",
1044 i + 1, matrix[i]->index(j) + 1, matrix[i]-> value(j));
1047 spxout << "DSLUFA04 LU-Factors:" << std::endl;
1051 << "\tstability = " << stability() << std::endl;
1061 #ifdef ENABLE_CONSISTENCY_CHECKS
1062 METHOD( "SLUFactor::isConsistent()" );
1071 METHOD( "SLUFactor::dump()" );
|