Netlist.cpp: remove debug lines
This commit is contained in:
parent
a12b80f6d2
commit
75e613f6af
|
@ -405,8 +405,7 @@ static NETLIST_OBJECT* FindBestNetName( NETLIST_OBJECT_LIST& aLabelItemBuffer )
|
||||||
}
|
}
|
||||||
if( candidate_priority > item_priority )
|
if( candidate_priority > item_priority )
|
||||||
{
|
{
|
||||||
printf(" prio (%d %d) ", item_priority, candidate_priority );
|
item = candidate;
|
||||||
item = candidate;
|
|
||||||
item_priority = candidate_priority;
|
item_priority = candidate_priority;
|
||||||
}
|
}
|
||||||
else if( candidate_priority == item_priority )
|
else if( candidate_priority == item_priority )
|
||||||
|
@ -420,12 +419,10 @@ static NETLIST_OBJECT* FindBestNetName( NETLIST_OBJECT_LIST& aLabelItemBuffer )
|
||||||
candidate->m_SheetList.Path().Length() < item->m_SheetList.Path().Length() )
|
candidate->m_SheetList.Path().Length() < item->m_SheetList.Path().Length() )
|
||||||
{
|
{
|
||||||
item = candidate;
|
item = candidate;
|
||||||
printf(" path (pr %d) ", item_priority);
|
|
||||||
}
|
}
|
||||||
else if( candidate->m_Label.Cmp( item->m_Label ) < 0 )
|
else if( candidate->m_Label.Cmp( item->m_Label ) < 0 )
|
||||||
{
|
{
|
||||||
item = candidate;
|
item = candidate;
|
||||||
printf(" alpha ");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue