Remove debug output

This commit is contained in:
Robert Haschke 2020-12-08 11:39:03 +01:00 committed by v4hn
parent d3864596b6
commit c0100ff775
2 changed files with 0 additions and 4 deletions

View File

@ -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) {}

View File

@ -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.