Skip to content

Commit

Permalink
Fix regression
Browse files Browse the repository at this point in the history
It seems, that after rebasing on @93819d5, `node_map_` map started
being order-sensitive what prevents us from converting it to hashmap
  • Loading branch information
sgizler committed Nov 29, 2024
1 parent 2864c2c commit e33d5b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/drt/src/io/GuideProcessor.h
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ class GuidePathFinder
RouterConfiguration* router_cfg_{nullptr};
frNet* net_{nullptr};
bool force_feed_through_{false};
boost::unordered_flat_map<Point3D, std::set<int>> node_map_;
std::map<Point3D, std::set<int>> node_map_;
int guide_count_{0};
int node_count_{0};
bool allow_warnings_{false};
Expand Down

0 comments on commit e33d5b2

Please sign in to comment.