Skip to content

Commit

Permalink
changed output file name
Browse files Browse the repository at this point in the history
  • Loading branch information
djryn committed Apr 11, 2022
1 parent 667eb75 commit 3916036
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ configure_file(data/test_data_2.graphml data/test_data_2.graphml COPYONLY)
configure_file(data/dataset.graphml data/dataset.graphml COPYONLY)
configure_file(data/test_data_1.graphml data/test_data_1.graphml COPYONLY)
configure_file(data/test_data_3.graphml data/test_data_3.graphml COPYONLY)
configure_file(data/communities.txt data/communities.txt COPYONLY)
configure_file(data/community_report.txt data/community_report.txt COPYONLY)
configure_file(data/football.graphml data/football.graphml COPYONLY)


Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/Graph_helper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ void Graph_helper::reset_tracking_data(vertexIt iter) {

void Graph_helper::print_report(std::vector<std::string> report) const {
// outputs file with each component and their vertices
std::ofstream out("data/communities.txt");
std::ofstream out("data/community_report.txt");
if(out.is_open()) {
out << "Community Report\n";
std::cout << "Community Report" << std::endl;
Expand Down

0 comments on commit 3916036

Please sign in to comment.