Skip to content

Commit

Permalink
Fixed missing include in bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
gAldeia committed Dec 18, 2024
1 parent 1805451 commit 9acbc45
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/bindings/bind_engines.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@
#include "../pop/archive.cpp"
#include "../pop/archive.h"

#include "../simplification/constants.cpp"
#include "../simplification/constants.h"

using Reg = Brush::RegressorEngine;
using Cls = Brush::ClassifierEngine;
using Rep = Brush::RepresenterEngine;
Expand Down
2 changes: 1 addition & 1 deletion src/bindings/module.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ PYBIND11_MODULE(_brush, m) {
#ifdef VERSION_INFO
m.attr("__version__") = MACRO_STRINGIFY(VERSION_INFO);
#else
m.attr("__version__") = "dev"; // TODO: uve version file
m.attr("__version__") = "dev"; // TODO: use version file
#endif
// data structures
bind_params(m);
Expand Down

0 comments on commit 9acbc45

Please sign in to comment.