/usr/include/coin/OsiSymSolverParameters.hpp is in coinor-libsymphony-dev 5.6.1-1+b2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | /*===========================================================================*/
/* */
/* This file is part of the SYMPHONY Branch, Cut, and Price Callable */
/* Library. */
/* */
/* SYMPHONY was jointly developed by Ted Ralphs (tkralphs@lehigh.edu) and */
/* Laci Ladanyi (ladanyi@us.ibm.com). */
/* */
/* (c) Copyright 2004-2006 Ted Ralphs and Lehigh University. */
/* All Rights Reserved. */
/* */
/* The authors of this file are Menal Guzelsoy and Ted Ralphs */
/* */
/* This software is licensed under the Eclipse Public License. Please see */
/* accompanying file for terms. */
/* */
/*===========================================================================*/
#ifndef OsiSymSolverParameters_hpp
#define OsiSymSolverParameters_hpp
enum OsiSymIntParam {
/** This controls the level of output */
OsiSymMaxActiveNodes,
OsiSymVerbosity,
OsiSymNodeLimit,
OsiSymFindFirstFeasible,
OsiSymSearchStrategy,
OsiSymUsePermanentCutPools,
OsiSymKeepWarmStart,
OsiSymDoReducedCostFixing,
OsiSymMCFindSupportedSolutions,
OsiSymSensitivityAnalysis,
OsiSymRandomSeed,
OsiSymDivingStrategy,
OsiSymDivingK,
OsiSymDivingThreshold,
OsiSymTrimWarmTree,
OsiSymGenerateCglGomoryCuts,
OsiSymGenerateCglKnapsackCuts,
OsiSymGenerateCglOddHoleCuts,
OsiSymGenerateCglProbingCuts,
OsiSymGenerateCglFlowAndCoverCuts,
OsiSymGenerateCglRoundingCuts,
OsiSymGenerateCglLiftAndProjectCuts,
OsiSymGenerateCglCliqueCuts
};
enum OsiSymDblParam {
/** The granularity is the actual minimum difference in objective function
value for two solutions that actually have do different objective
function values. For integer programs with integral objective function
coefficients, this would be 1, for instance. */
OsiSymGranularity,
OsiSymTimeLimit,
OsiSymGapLimit,
OsiSymUpperBound,
OsiSymLowerBound
};
enum OsiSymStrParam {
};
#endif
|