aboutsummaryrefslogtreecommitdiff
path: root/Circuit.cpp
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-06-12 14:01:07 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-06-12 14:01:07 +0200
commit30b979c0c4a231d3c55a465ccba2ecf751058b62 (patch)
tree316d54d5282c542741bfc34280d04e2dd969a492 /Circuit.cpp
parentc9c4b6caa2a14b7b5a338a6981a616506da7e78f (diff)
remove some printfs
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);