bug fixing for naming the duplicated pins

This commit is contained in:
tangxifan 2020-03-07 15:44:57 -07:00
parent c36c302052
commit 37423729ec
1 changed files with 1 additions and 1 deletions

View File

@ -496,7 +496,7 @@ std::string generate_grid_duplicated_port_name(const size_t& width,
port_name += std::to_string(width);
port_name += std::string("_height_");
port_name += std::to_string(height);
port_name += std::string("_pin_");
port_name += std::string("__pin_");
port_name += std::to_string(pin_id);
port_name += std::string("_");