mirror of https://github.com/YosysHQ/abc.git
Increasing memory page limit in the main SAT solver.
This commit is contained in:
parent
74986b2853
commit
770838254a
|
|
@ -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 );
|
||||
|
|
|
|||
Loading…
Reference in New Issue