Skip to content

Commit

Permalink
Fix bug of bin being higher than vector contents. Initial implementat…
Browse files Browse the repository at this point in the history
…ion of CRS tuner for DCOP
  • Loading branch information
Nick Tsiogkas committed Jan 24, 2018
1 parent 8c43b54 commit 00de442
Show file tree
Hide file tree
Showing 4 changed files with 787 additions and 9 deletions.
10 changes: 8 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -81,5 +81,11 @@ target_link_libraries(icra18_ctop_miqp_compare pthread)
add_executable(crs_tuner ${CTOP_TUNING})
target_link_libraries(crs_tuner pthread)

add_executable(dcop-ga src/dubins.cpp src/ga_utils.cpp src/dcop_ga.cpp src/dcop_ga_main.cpp)
target_link_libraries(dcop-ga pthread)
add_library(dcop-ga src/dubins.cpp src/ga_utils.cpp src/dcop_ga.cpp)
target_link_libraries(dcop-ga pthread)

add_executable(dubins-crs-tuner src/dcop_crs_tuner.cpp)
target_link_libraries(dubins-crs-tuner dcop-ga)

add_executable(dcop-ga-main src/dcop_ga_main.cpp)
target_link_libraries(dcop-ga-main dcop-ga)
Loading

0 comments on commit 00de442

Please sign in to comment.