diff --git a/search/Bfs.cc b/search/Bfs.cc index 42cb4885..c6d23ec9 100644 --- a/search/Bfs.cc +++ b/search/Bfs.cc @@ -327,7 +327,6 @@ BfsIterator::remove(Vertex *vertex) && static_cast(queue_.size()) > level) { debugPrint(debug_, "bfs", 2, "remove %s", vertex->to_string(this).c_str()); - printf("bfs remove %s\n", vertex->to_string(this).c_str()); for (Vertex *&v : queue_[level]) { if (v == vertex) { v = nullptr;