Commit 75e613f6 authored by jean-pierre charras's avatar jean-pierre charras

Netlist.cpp: remove debug lines

parent a12b80f6
...@@ -405,7 +405,6 @@ static NETLIST_OBJECT* FindBestNetName( NETLIST_OBJECT_LIST& aLabelItemBuffer ) ...@@ -405,7 +405,6 @@ 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;
} }
...@@ -420,12 +419,10 @@ static NETLIST_OBJECT* FindBestNetName( NETLIST_OBJECT_LIST& aLabelItemBuffer ) ...@@ -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 ");
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment