Skip to content
Snippets Groups Projects
Select Git revision
  • 8af9445fc80a01b353a3543f96e01bb93c98307a
  • master default protected
  • csv_export
  • ndex
  • v1.1.18-rc2
  • v1.1.17
  • v1.1.16
  • v1.1.16-rc12
  • v1.1.16-rc11
  • v1.1.16-rc10
  • v1.1.16-rc9
  • v1.1.16-rc8
  • v1.1.16-rc7
  • v1.1.16-rc4
  • v1.1.16-rc3
  • v1.1.16-rc1
  • v1.1.6-rc1
  • v1.1.15
  • v1.1.15-rc7
  • v1.1.15-rc6
  • v1.1.15-rc3
  • v1.1.15-rc1
  • v1.1.14
  • v1.1.13
24 results

explorer-page.component.html

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    CMakeLists.txt 512 B
    cmake_minimum_required(VERSION 3.3)
    
    project(LAGRANGIAN)
    
    find_package(SCIP REQUIRED)
    include_directories(${SCIP_INCLUDE_DIRS})
    
    add_executable(LAGRANGIAN
       SRC/relax_lagr.cpp
       src/cmain.c
       
    # link to math library if it is available
    find_library(LIBM m)
    if(NOT LIBM)
      set(LIBM "")
    endif()
    
    target_link_libraries(LAGRANGIAN ${SCIP_LIBRARIES} ${LIBM})
    if( TARGET examples )
        add_dependencies( examples LAGRANGIAN )
    endif()
    
    #
    # add check subdirectory for tests
    #
    add_subdirectory(check)
    
    enable_testing()