Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abc
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
abc
Commits
152aaedc
Commit
152aaedc
authored
Sep 14, 2012
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prepared &gla to try abstracting and proving concurrently.
parent
080c3255
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
3 deletions
+7
-3
src/aig/gia/giaAbsGla2.c
+1
-1
src/aig/gia/giaAbsOut.c
+1
-1
src/aig/gia/giaAbsPth.c
+5
-1
No files found.
src/aig/gia/giaAbsGla2.c
View file @
152aaedc
...
@@ -1799,7 +1799,7 @@ int Ga2_ManPerform( Gia_Man_t * pAig, Gia_ParVta_t * pPars )
...
@@ -1799,7 +1799,7 @@ int Ga2_ManPerform( Gia_Man_t * pAig, Gia_ParVta_t * pPars )
}
}
// if abstraction grew more than a certain percentage, force a restart
// if abstraction grew more than a certain percentage, force a restart
if
(
pPars
->
nRatioMax
==
0
)
if
(
pPars
->
nRatioMax
==
0
)
break
;
continue
;
if
(
c
>
0
&&
(
f
>
20
||
Vec_IntSize
(
p
->
vAbs
)
>
100
)
&&
Vec_IntSize
(
p
->
vAbs
)
-
nAbsOld
>=
nAbsOld
*
pPars
->
nRatioMax
/
100
)
if
(
c
>
0
&&
(
f
>
20
||
Vec_IntSize
(
p
->
vAbs
)
>
100
)
&&
Vec_IntSize
(
p
->
vAbs
)
-
nAbsOld
>=
nAbsOld
*
pPars
->
nRatioMax
/
100
)
{
{
if
(
p
->
pPars
->
fVerbose
)
if
(
p
->
pPars
->
fVerbose
)
...
...
src/aig/gia/giaAbsOut.c
View file @
152aaedc
...
@@ -378,7 +378,7 @@ int Gia_ManNewRefine( Gia_Man_t * p, Abc_Cex_t * pCex, int iFrameStart, int iFra
...
@@ -378,7 +378,7 @@ int Gia_ManNewRefine( Gia_Man_t * p, Abc_Cex_t * pCex, int iFrameStart, int iFra
Gia_Man_t
*
pAbs
,
*
pNew
;
Gia_Man_t
*
pAbs
,
*
pNew
;
Vec_Int_t
*
vFlops
,
*
vInit
;
Vec_Int_t
*
vFlops
,
*
vInit
;
Vec_Int_t
*
vCopy
;
Vec_Int_t
*
vCopy
;
clock_t
clk
=
clock
();
//
clock_t clk = clock();
int
RetValue
;
int
RetValue
;
ABC_FREE
(
p
->
pCexSeq
);
ABC_FREE
(
p
->
pCexSeq
);
if
(
p
->
vGateClasses
==
NULL
)
if
(
p
->
vGateClasses
==
NULL
)
...
...
src/aig/gia/giaAbsPth.c
View file @
152aaedc
...
@@ -21,9 +21,13 @@
...
@@ -21,9 +21,13 @@
#include "aig/ioa/ioa.h"
#include "aig/ioa/ioa.h"
#include "proof/pdr/pdr.h"
#include "proof/pdr/pdr.h"
//
comment this out to dis
able pthreads
//
uncomment this line to en
able pthreads
//#define ABC_USE_PTHREADS
//#define ABC_USE_PTHREADS
// to compile on Linux, modify Makefile as follows:
// add -pthread to OPTFLAGS
// add -lpthread to LIBS
#ifdef ABC_USE_PTHREADS
#ifdef ABC_USE_PTHREADS
#ifdef WIN32
#ifdef WIN32
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment