Skip to content

Commit

Permalink
removed print
Browse files Browse the repository at this point in the history
  • Loading branch information
drexlerd committed Mar 2, 2024
1 parent 32991e2 commit 07562b6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from setuptools import setup, find_packages, Extension
from setuptools.command.build_ext import build_ext

__version__ = "0.3.18"
__version__ = "0.3.19"
HERE = Path(__file__).resolve().parent


Expand Down
1 change: 0 additions & 1 deletion src/novelty/tuple_graph_builder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@ void TupleGraphBuilder::build_width_equal_0_tuple_graph() {
TupleNodeIndex node_index = m_nodes.size();
curr_tuple_layer.push_back(node_index);
auto tuple_node = TupleNode(node_index, node_index, {target_index});
std::cout << node_index << std::endl;
m_nodes.push_back(tuple_node);
m_nodes[initial_node_index].add_successor(node_index);
m_nodes[node_index].add_predecessor(initial_node_index);
Expand Down

0 comments on commit 07562b6

Please sign in to comment.