Sim QA: Display the original netlist even if circuit fails to parse

This commit is contained in:
Mikolaj Wielgus 2022-09-10 02:44:50 +02:00
parent 1b7ff376b0
commit cb6b2da55f
1 changed files with 5 additions and 0 deletions

View File

@ -138,6 +138,11 @@ public:
m_abort = true;
// Still display the original netlist in this case.
*m_log << "Original Netlist\n";
*m_log << "----------------\n";
*m_log << netlist << "\n";
return;
}