-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Yuan Sun
authored and
Yuan Sun
committed
Feb 23, 2023
1 parent
9de2a25
commit b0216cc
Showing
1,226 changed files
with
2,827,119 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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). | ||
|
Oops, something went wrong.