aboutsummaryrefslogtreecommitdiffstats
path: root/common/route.cc
diff options
context:
space:
mode:
Diffstat (limited to 'common/route.cc')
-rw-r--r--common/route.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/route.cc b/common/route.cc
index b57bc29f..b98db259 100644
--- a/common/route.cc
+++ b/common/route.cc
@@ -71,7 +71,7 @@ void route_design(Design *design)
log(" Source wire: %s\n", chip.getWireName(src_wire).c_str());
- dict<WireId, DelayInfo> src_wires;
+ std::unordered_map<WireId, DelayInfo> src_wires;
src_wires[src_wire] = DelayInfo();
net_info->wires[src_wire] = PipId();
chip.bindWire(src_wire, net_name);
@@ -97,7 +97,7 @@ void route_design(Design *design)
log(" Destination wire: %s\n",
chip.getWireName(dst_wire).c_str());
- dict<WireId, QueuedWire> visited;
+ std::unordered_map<WireId, QueuedWire> visited;
std::priority_queue<QueuedWire, std::vector<QueuedWire>,
std::greater<QueuedWire>>
queue;