Skip to content

Commit

Permalink
implementing RadarInstallation
Browse files Browse the repository at this point in the history
  • Loading branch information
uhSuiL committed Oct 26, 2023
1 parent b0b80f6 commit 1d410bc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ project(AlgorithmDesign)

set(CMAKE_CXX_STANDARD 11)

add_executable(AlgorithmDesign src/main.cpp include/MaximumSubArray.hpp include/ActivitySelection.hpp)
add_executable(AlgorithmDesign src/main.cpp include/MaximumSubArray.hpp include/ActivitySelection.hpp include/RadarInstallation.hpp)
7 changes: 7 additions & 0 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#include <algorithm>
#include "../include/MaximumSubArray.hpp"
#include "../include/ActivitySelection.hpp"
#include "../include/RadarInstallation.hpp"


void test_activity_selection(int n = 10) {
Expand Down Expand Up @@ -37,6 +38,12 @@ void test_activity_selection(int n = 10) {
std::cout << "------" << std::endl;
}

void test_radar_selection() {
auto islands = get_islands(10);
// std::for_each(islands.begin(), islands.end())
}


int main(int argc, char* argv[]) {
test_activity_selection();
return 0;
Expand Down

0 comments on commit 1d410bc

Please sign in to comment.