Skip to content

Commit

Permalink
Add missing include
Browse files Browse the repository at this point in the history
  • Loading branch information
fontanf committed Apr 1, 2024
1 parent 1af438b commit 62a168d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 0 deletions.
4 changes: 4 additions & 0 deletions treesearchsolver/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ cc_library(
"iterative_memory_bounded_best_first_search.hpp",
"anytime_column_search.hpp",
],
srcs = [
"common.cpp",
"algorithm_formatter.cpp",
],
deps = [
"@optimizationtools//optimizationtools/utils:utils",
"@optimizationtools//optimizationtools/containers:containers",
Expand Down
3 changes: 3 additions & 0 deletions treesearchsolver/algorithm_formatter.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#include "treesearchsolver/algorithm_formatter.hpp"

using namespace treesearchsolver;
1 change: 1 addition & 0 deletions treesearchsolver/algorithm_formatter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

#include "treesearchsolver/common.hpp"

#include <sstream>
#include <iomanip>

namespace treesearchsolver
Expand Down
3 changes: 3 additions & 0 deletions treesearchsolver/common.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#include "treesearchsolver/common.hpp"

using namespace treesearchsolver;

0 comments on commit 62a168d

Please sign in to comment.