3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-07 19:51:23 +00:00

ezSAT bugfix: don't call virtual methods in base class constructor

This commit is contained in:
Clifford Wolf 2014-03-01 20:59:00 +01:00
parent edc2146056
commit 23f0a12c72
2 changed files with 5 additions and 2 deletions

View file

@ -35,6 +35,9 @@ ezMiniSAT::ezMiniSAT() : minisatSolver(NULL)
{
minisatSolver = NULL;
foundContradiction = false;
freeze(TRUE);
freeze(FALSE);
}
ezMiniSAT::~ezMiniSAT()