coin-clp/1.17.7

COIN-OR Linear Programming Solver
Recipe info
2023-12-05

Available packages
Linux
Windows
macOS
macOS Apple Silicon

Install
Add the following line to your conanfile.txt:
[requires]
coin-clp/1.17.7

Using coin-clp

Note

If you are a new Conan user, we recommend reading the how to consume packages tutorial.

If you need additional assistance, please ask a question in the Conan Center Index repository.

Simplest use case consuming this recipe and assuming CMake as your local build tool:

[requires]
coin-clp/1.17.7
[generators]
CMakeDeps
CMakeToolchain
[layout]
cmake_layout
from conan import ConanFile
from conan.tools.cmake import cmake_layout


class ExampleRecipe(ConanFile):
    settings = "os", "compiler", "build_type", "arch"
    generators = "CMakeDeps", "CMakeToolchain"

    def requirements(self):
        self.requires("coin-clp/1.17.7")

    def layout(self):
        cmake_layout(self)

Now, you can run this Conan command to locally install (and build if necessary) this recipe and its dependencies (if any):

$ conan install conanfile.txt --build=missing

Useful information to take into account to consume this library:


These are the main declared targets:

  • CMake package name(s): coin-clp
  • CMake target name(s): coin-clp::coin-clp
  • clp => coin-clp::clp
    osi-clp => coin-clp::osi-clp
    
  • pkg-config file name(s): coin-clp.pc
  • clp => clp.pc
    osi-clp => osi-clp.pc
    

A simple use case using the CMake file name and the global target:

# ...
find_package(coin-clp REQUIRED)
# ...
target_link_libraries(YOUR_TARGET coin-clp::coin-clp)

These are all the available headers. Some of these ones might be non-public; make sure of it by visiting the coin-clp homepage listed above:

#include "coin/CbcOrClpParam.cpp"
#include "coin/CbcOrClpParam.hpp"
#include "coin/ClpCholeskyBase.hpp"
#include "coin/ClpCholeskyDense.hpp"
#include "coin/ClpCholeskyPardiso.hpp"
#include "coin/ClpConfig.h"
#include "coin/ClpConstraint.hpp"
#include "coin/ClpConstraintLinear.hpp"
#include "coin/ClpConstraintQuadratic.hpp"
#include "coin/ClpDualRowDantzig.hpp"
#include "coin/ClpDualRowPivot.hpp"
#include "coin/ClpDualRowSteepest.hpp"
#include "coin/ClpDummyMatrix.hpp"
#include "coin/ClpDynamicExampleMatrix.hpp"
#include "coin/ClpDynamicMatrix.hpp"
#include "coin/ClpEventHandler.hpp"
#include "coin/ClpFactorization.hpp"
#include "coin/ClpGubDynamicMatrix.hpp"
#include "coin/ClpGubMatrix.hpp"
#include "coin/ClpInterior.hpp"
#include "coin/ClpLinearObjective.hpp"
#include "coin/ClpMatrixBase.hpp"
#include "coin/ClpMessage.hpp"
#include "coin/ClpModel.hpp"
#include "coin/ClpNetworkMatrix.hpp"
#include "coin/ClpNode.hpp"
#include "coin/ClpNonLinearCost.hpp"
#include "coin/ClpObjective.hpp"
#include "coin/ClpPEDualRowDantzig.hpp"
#include "coin/ClpPEDualRowSteepest.hpp"
#include "coin/ClpPEPrimalColumnDantzig.hpp"
#include "coin/ClpPEPrimalColumnSteepest.hpp"
#include "coin/ClpPESimplex.hpp"
#include "coin/ClpPackedMatrix.hpp"
#include "coin/ClpParameters.hpp"
#include "coin/ClpPdcoBase.hpp"
#include "coin/ClpPlusMinusOneMatrix.hpp"
#include "coin/ClpPresolve.hpp"
#include "coin/ClpPrimalColumnDantzig.hpp"
#include "coin/ClpPrimalColumnPivot.hpp"
#include "coin/ClpPrimalColumnSteepest.hpp"
#include "coin/ClpQuadraticObjective.hpp"
#include "coin/ClpSimplex.hpp"
#include "coin/ClpSimplexDual.hpp"
#include "coin/ClpSimplexNonlinear.hpp"
#include "coin/ClpSimplexOther.hpp"
#include "coin/ClpSimplexPrimal.hpp"
#include "coin/ClpSolve.hpp"
#include "coin/Clp_C_Interface.h"
#include "coin/Idiot.hpp"
#include "coin/OsiClpSolverInterface.hpp"