diff --git a/core/src/container.cpp b/core/src/container.cpp index a80b10a9..f3fcf691 100644 --- a/core/src/container.cpp +++ b/core/src/container.cpp @@ -399,7 +399,6 @@ void SerialContainer::onNewSolution(const SolutionBase& current) { } } } - printChildrenInterfaces(*this, true, *current.creator()); // finally, store + announce new solutions to external interface for (const auto& solution : sorted) @@ -429,7 +428,6 @@ void SerialContainer::onNewFailure(const Stage& child, const InterfaceState* fro } break; } - printChildrenInterfaces(*this, false, child); } SerialContainer::SerialContainer(SerialContainerPrivate* impl) : ContainerBase(impl) {} diff --git a/core/src/stage.cpp b/core/src/stage.cpp index e1558f0c..b3b3fd3c 100644 --- a/core/src/stage.cpp +++ b/core/src/stage.cpp @@ -747,8 +747,6 @@ void ConnectingPrivate::newState(Interface::iterator it, bool updated) { } } } - std::cerr << name_ << ": "; - printPendingPairs(std::cerr); } // Check whether there are pending feasible states that could connect to source.