Skip to content

Commit c928ade

Browse files
committed
Added comment to attraction groups constructor to explain how it will differ based on packer option
1 parent 4dc0fe4 commit c928ade

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

vpr/src/pack/attraction_groups.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ AttractionInfo::AttractionInfo(bool attraction_groups_on) {
1111
atom_attraction_group.resize(num_atoms);
1212
fill(atom_attraction_group.begin(), atom_attraction_group.end(), AttractGroupId::INVALID());
1313

14-
//Create an attraction group for each partition in the floorplanning constraints
14+
/*
15+
* Create an attraction group for each partition in the floorplanning constraints
16+
* if the packer option for attraction groups is turned on.
17+
*/
1518
if (attraction_groups_on) {
1619
for (int ipart = 0; ipart < num_parts; ipart++) {
1720
PartitionId partid(ipart);

0 commit comments

Comments
 (0)