File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -1201,12 +1201,14 @@ static std::unordered_set<t_pb_type*> get_pattern_blocks(const t_pack_patterns&
1201
1201
std::unordered_set<t_pb_graph_pin*> visited_to_pins;
1202
1202
std::queue<t_pack_pattern_block*> pack_pattern_blocks;
1203
1203
pack_pattern_blocks.push (connections->from_block );
1204
+
1204
1205
/* * Start from the root block of the pack pattern and add the connected block to the queue */
1205
1206
while (!pack_pattern_blocks.empty ()) {
1206
1207
t_pack_pattern_block* current_pattern_block = pack_pattern_blocks.front ();
1207
1208
pack_pattern_blocks.pop ();
1208
1209
t_pack_pattern_connections* current_connenction = current_pattern_block->connections ;
1209
- /* * Iterate through all the connections of the current pattern block to
1210
+ /*
1211
+ * Iterate through all the connections of the current pattern block to
1210
1212
* add the connected block to the queue
1211
1213
*/
1212
1214
while (current_connenction != nullptr ) {
@@ -1222,6 +1224,7 @@ static std::unordered_set<t_pb_type*> get_pattern_blocks(const t_pack_patterns&
1222
1224
*/
1223
1225
visited_from_pins.insert (current_connenction->from_pin );
1224
1226
visited_to_pins.insert (current_connenction->to_pin );
1227
+
1225
1228
/* * The from_pin block belongs to the pattern block */
1226
1229
pattern_blocks.insert (current_connenction->from_pin ->port ->parent_pb_type );
1227
1230
pack_pattern_blocks.push (current_connenction->to_block );
You can’t perform that action at this time.
0 commit comments