coin-cgl/0.60.7

COIN-OR Cut Generator Library
Recipe info
2023-10-24

Available packages
Linux
Windows
macOS
macOS Apple Silicon

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

Using coin-cgl

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-cgl/0.60.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-cgl/0.60.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-cgl
  • CMake target name(s): coin-cgl::coin-cgl
  • pkg-config file name(s): cgl.pc

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

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

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

#include "Cgl012cut.hpp"
#include "CglAllDifferent.hpp"
#include "CglClique.hpp"
#include "CglConfig.h"
#include "CglCutGenerator.hpp"
#include "CglDuplicateRow.hpp"
#include "CglFlowCover.hpp"
#include "CglGMI.hpp"
#include "CglGMIParam.hpp"
#include "CglGomory.hpp"
#include "CglKnapsackCover.hpp"
#include "CglLandP.hpp"
#include "CglLandPValidator.hpp"
#include "CglLiftAndProject.hpp"
#include "CglMessage.hpp"
#include "CglMixedIntegerRounding.hpp"
#include "CglMixedIntegerRounding2.hpp"
#include "CglOddHole.hpp"
#include "CglParam.hpp"
#include "CglPreProcess.hpp"
#include "CglProbing.hpp"
#include "CglRedSplit.hpp"
#include "CglRedSplit2.hpp"
#include "CglRedSplit2Param.hpp"
#include "CglRedSplitParam.hpp"
#include "CglResidualCapacity.hpp"
#include "CglSimpleRounding.hpp"
#include "CglStored.hpp"
#include "CglTreeInfo.hpp"
#include "CglTwomir.hpp"
#include "CglZeroHalf.hpp"
#include "coin/Cgl012cut.hpp"
#include "coin/CglAllDifferent.hpp"
#include "coin/CglClique.hpp"
#include "coin/CglConfig.h"
#include "coin/CglCutGenerator.hpp"
#include "coin/CglDuplicateRow.hpp"
#include "coin/CglFlowCover.hpp"
#include "coin/CglGMI.hpp"
#include "coin/CglGMIParam.hpp"
#include "coin/CglGomory.hpp"
#include "coin/CglKnapsackCover.hpp"
#include "coin/CglLandP.hpp"
#include "coin/CglLandPValidator.hpp"
#include "coin/CglLiftAndProject.hpp"
#include "coin/CglMessage.hpp"
#include "coin/CglMixedIntegerRounding.hpp"
#include "coin/CglMixedIntegerRounding2.hpp"
#include "coin/CglOddHole.hpp"
#include "coin/CglParam.hpp"
#include "coin/CglPreProcess.hpp"
#include "coin/CglProbing.hpp"
#include "coin/CglRedSplit.hpp"
#include "coin/CglRedSplit2.hpp"
#include "coin/CglRedSplit2Param.hpp"
#include "coin/CglRedSplitParam.hpp"
#include "coin/CglResidualCapacity.hpp"
#include "coin/CglSimpleRounding.hpp"
#include "coin/CglStored.hpp"
#include "coin/CglTreeInfo.hpp"
#include "coin/CglTwomir.hpp"
#include "coin/CglZeroHalf.hpp"