#include <string>#include <iostream>#include <cassert>#include <cstring>#include "CoinUtilsConfig.h"#include "CoinPragma.hpp"

Go to the source code of this file.
Classes | |
| class | CoinError |
| Error Class thrown by an exception. More... | |
Defines | |
| #define | __STRING(x) #x |
| #define | __GNUC_PREREQ(maj, min) (0) |
| #define | CoinAssertDebug(expression) assert(expression) |
| #define | CoinAssertDebugHint(expression, hint) assert(expression) |
| #define | CoinAssert(expression) assert(expression) |
| #define | CoinAssertHint(expression, hint) assert(expression) |
Functions | |
| void | WindowsErrorPopupBlocker () |
| A function to block the popup windows that windows creates when the code crashes. | |
| void | CoinErrorUnitTest () |
| A function that tests the methods in the CoinError class. | |
| #define __STRING | ( | x | ) | #x |
Definition at line 169 of file CoinError.hpp.
| #define __GNUC_PREREQ | ( | maj, | |||
| min | ) | (0) |
Definition at line 173 of file CoinError.hpp.
| #define CoinAssertDebug | ( | expression | ) | assert(expression) |
Definition at line 177 of file CoinError.hpp.
Referenced by GAP_KnapPisinger::calcScaleFactor().
| #define CoinAssertDebugHint | ( | expression, | |||
| hint | ) | assert(expression) |
Definition at line 178 of file CoinError.hpp.
| #define CoinAssert | ( | expression | ) | assert(expression) |
Definition at line 179 of file CoinError.hpp.
Referenced by AlpsDecompSolution::AlpsDecompSolution(), VRP_Concorde::buildExpandedCompleteGraph(), VRP_CVRPsep::createVrpCuts(), VRP_Concorde::createVrpRouteFromTspEdgeList(), VRP_Concorde::createVrpRouteFromTspRoute(), DecompSolution::DecompSolution(), GAP_Knapsack::GAP_Knapsack(), OsiData::initializeOtherData(), VRP_Concorde::setExpandedCost(), GAP_KnapPisinger::solve(), GAP_Knapsack::solveKnapsack(), and VRP_Concorde::solveTSP().
| #define CoinAssertHint | ( | expression, | |||
| hint | ) | assert(expression) |
Definition at line 180 of file CoinError.hpp.
Referenced by OsiNullSolverInterface::addCol(), OsiNullSolverInterface::addRow(), DecompMemPool::allocateMemory(), AlpsDecompSolution::AlpsDecompSolution(), OsiNullSolverInterface::applyColCut(), OsiNullSolverInterface::applyRowCut(), OsiNullSolverInterface::assignProblem(), OsiNullSolverInterface::branchAndBound(), OsiNullSolverInterface::clone(), DecompSolution::DecompSolution(), OsiNullSolverInterface::deleteCols(), OsiNullSolverInterface::deleteRows(), GAP_KnapPisinger::GAP_KnapPisinger(), GAP_Knapsack::GAP_Knapsack(), OsiNullSolverInterface::getDualRays(), OsiNullSolverInterface::getEmptyWarmStart(), OsiNullSolverInterface::getIterationCount(), OsiNullSolverInterface::getObjSense(), OsiNullSolverInterface::getObjValue(), OsiNullSolverInterface::getPrimalRays(), OsiNullSolverInterface::getReducedCost(), OsiNullSolverInterface::getRowPrice(), OsiNullSolverInterface::getWarmStart(), CVRPsep_LPSol::init(), VRP_Concorde::init(), ConcordeGraph::init(), OsiNullSolverInterface::initialSolve(), OsiNullSolverInterface::isAbandoned(), OsiNullSolverInterface::isDualObjectiveLimitReached(), OsiNullSolverInterface::isIterationLimitReached(), OsiNullSolverInterface::isPrimalObjectiveLimitReached(), OsiNullSolverInterface::isProvenDualInfeasible(), OsiNullSolverInterface::isProvenOptimal(), OsiNullSolverInterface::isProvenPrimalInfeasible(), OsiNullSolverInterface::loadProblem(), DecompSolution::operator=(), OsiNullSolverInterface::resolve(), OsiNullSolverInterface::setColLower(), OsiNullSolverInterface::setColUpper(), OsiNullSolverInterface::setContinuous(), OsiNullSolverInterface::setInteger(), OsiNullSolverInterface::setObjCoeff(), OsiNullSolverInterface::setObjSense(), OsiNullSolverInterface::setRowLower(), OsiNullSolverInterface::setRowPrice(), OsiNullSolverInterface::setRowType(), OsiNullSolverInterface::setRowUpper(), OsiNullSolverInterface::setWarmStart(), UtilOpenFile(), and OsiNullSolverInterface::writeMps().
| void WindowsErrorPopupBlocker | ( | ) |
A function to block the popup windows that windows creates when the code crashes.
| void CoinErrorUnitTest | ( | ) |
A function that tests the methods in the CoinError class.
The only reason for it not to be a member method is that this way it doesn't have to be compiled into the library. And that's a gain, because the library should be compiled with optimization on, but this method should be compiled with debugging.
1.6.1