aboutsummaryrefslogtreecommitdiff
path: root/Circuit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Circuit.cpp')
-rw-r--r--Circuit.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/Circuit.cpp b/Circuit.cpp
index 7da9384..102096c 100644
--- a/Circuit.cpp
+++ b/Circuit.cpp
@@ -16,11 +16,10 @@ void Circuit::new_node(string label, string type) {
nodes[label] = node;
- printf("[%s] (%s)\n", label.c_str(), type.c_str());
+ // printf("[%s] (%s)\n", label.c_str(), type.c_str());
}
void Circuit::new_net(string src, vector<string> dests) {
- printf("%s\n", src.c_str());
Net * net = new Net();
nets.push_back(net);