Fix crash caused "-debug -noautosave" when exiting the debugger immediately.

This commit is contained in:
Couriersud 2014-06-24 17:58:10 +00:00
parent 28130d7aa1
commit e10dc03993

View File

@ -45,7 +45,9 @@ private:
template <int m_N, int _storage_N> template <int m_N, int _storage_N>
void netlist_matrix_solver_gauss_seidel_t<m_N, _storage_N>::log_stats() void netlist_matrix_solver_gauss_seidel_t<m_N, _storage_N>::log_stats()
{ {
#if 1 #if 0
if (this->m_calculations == 0)
return;
printf("==============================================\n"); printf("==============================================\n");
printf("Solver %s\n", this->name().cstr()); printf("Solver %s\n", this->name().cstr());
printf(" ==> %d nets\n", this->N()); //, (*(*groups[i].first())->m_core_terms.first())->name().cstr()); printf(" ==> %d nets\n", this->N()); //, (*(*groups[i].first())->m_core_terms.first())->name().cstr());