Increasing memory page limit in the main SAT solver.

This commit is contained in:
Alan Mishchenko 2012-10-31 10:22:54 -07:00
parent 74986b2853
commit 770838254a
1 changed files with 1 additions and 1 deletions

View File

@ -925,7 +925,7 @@ sat_solver* sat_solver_new(void)
sat_solver* s = (sat_solver*)ABC_CALLOC( char, sizeof(sat_solver));
// Vec_SetAlloc_(&s->Mem, 15);
Sat_MemAlloc_(&s->Mem, 14);
Sat_MemAlloc_(&s->Mem, 15);
s->hLearnts = -1;
s->hBinary = Sat_MemAppend( &s->Mem, NULL, 2, 0, 0 );
s->binary = clause_read( s, s->hBinary );