Skip to content

Commit

Permalink
add files
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuan Sun authored and Yuan Sun committed Feb 23, 2023
1 parent 9de2a25 commit b0216cc
Show file tree
Hide file tree
Showing 1,226 changed files with 2,827,119 additions and 4 deletions.
Binary file added .DS_Store
Binary file not shown.
27 changes: 27 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
cmake_minimum_required(VERSION 2.8.4)

project(GCP)

set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -O3 -flto -Wall -fPIC -fopenmp")
set(CMAKE_INCLUDE_SYSTEM_FLAG_CXX "-isystem ")
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/build")
set(LINKER_OPTIONS -flto -Wl,--no-as-needed)

FILE(GLOB SOURCE_FILES src/*.cpp src/*.cc src/*/*.c src/*/*.cpp src/*/*/*.c)

find_package(Gurobi)
include_directories(SYSTEM ${GUROBI_INCLUDE_DIRS})
include_directories(SYSTEM "/home/yuans/igraph-0.8.5/lib/usr/local/include/igraph")
include_directories(SYSTEM "/home/yuans/igraph-0.8.5/lib/usr/local/lib/")

add_executable(GCP ${SOURCE_FILES})

target_include_directories(GCP PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/src/svm"
"${CMAKE_CURRENT_SOURCE_DIR}/src/linear_svm"
"${CMAKE_CURRENT_SOURCE_DIR}/src/linear_svm/blas")
target_link_libraries( GCP PRIVATE ${GUROBI_CXX_LIBRARY})
target_link_libraries( GCP PRIVATE ${GUROBI_LIBRARY})
target_link_libraries( GCP PRIVATE dl)
target_link_libraries( GCP PRIVATE -L/home/yuans/igraph-0.8.5/lib/usr/local/lib igraph)

7 changes: 7 additions & 0 deletions MATILDA_Graphs/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
This archive contains graph instances generated using a genetic algorithm, with the aim of diversifying the available set of graphs. The data set is used to compare performance of graph colouring algorithms with respect to instance properties.

The method used is described in the following paper:
Smith-Miles, K. A. and Bowly, S., "Generating New Test Instances by Evolving in Instance Space", Computers & Operations Research

Instances are described in the format specified for the DIMACS challenges (see ccformat.ps, included).

Loading

0 comments on commit b0216cc

Please sign in to comment.