Remove connectivity debug statements

(cherry picked from commit 589e5b9ad7)
This commit is contained in:
Seth Hillbrand 2018-07-10 19:57:13 -07:00
parent d769d1649a
commit c7e511c919
1 changed files with 0 additions and 14 deletions

View File

@ -321,20 +321,6 @@ void CN_CONNECTIVITY_ALGO::searchConnections()
for( auto item : garbage )
delete item;
#ifdef CONNECTIVITY_DEBUG
for( auto item : m_padList )
if( all.find( item->Parent() ) == all.end() ) { printf("Failing pad : %p\n", item->Parent() ); assert ( false ); }
for( auto item : m_viaList )
if( all.find( item->Parent() ) == all.end() ) { printf("Failing via : %p\n", item->Parent() ); assert ( false ); }
for( auto item : m_trackList )
if( all.find( item->Parent() ) == all.end() ) { printf("Failing track : %p\n", item->Parent() ); assert ( false ); }
for( auto item : m_zoneList )
if( all.find( item->Parent() ) == all.end() ) { printf("Failing zome : %p\n", item->Parent() ); assert ( false ); }
#endif
#ifdef PROFILE
garbage_collection.Show();
PROF_COUNTER search_cnt( "search-connections" );