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
e7a5a74b
Commit
e7a5a74b
authored
Jul 25, 2011
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding procedures to find the care bits of a counter-example.
parent
67e84b71
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
4 deletions
+10
-4
abclib.dsp
+4
-0
src/aig/saig/module.make
+1
-0
src/aig/saig/saig.h
+2
-0
src/aig/saig/saigRefSat.c
+0
-0
src/base/abci/abc.c
+3
-4
No files found.
abclib.dsp
View file @
e7a5a74b
...
...
@@ -3547,6 +3547,10 @@ SOURCE=.\src\aig\saig\saigPhase.c
# End Source File
# Begin Source File
SOURCE=.\src\aig\saig\saigRefSat.c
# End Source File
# Begin Source File
SOURCE=.\src\aig\saig\saigRetFwd.c
# End Source File
# Begin Source File
...
...
src/aig/saig/module.make
View file @
e7a5a74b
...
...
@@ -14,6 +14,7 @@ SRC += src/aig/saig/saigAbs.c \
src/aig/saig/saigOutDec.c
\
src/aig/saig/saigPba.c
\
src/aig/saig/saigPhase.c
\
src/aig/saig/saigRefSat.c
\
src/aig/saig/saigRetFwd.c
\
src/aig/saig/saigRetMin.c
\
src/aig/saig/saigRetStep.c
\
...
...
src/aig/saig/saig.h
View file @
e7a5a74b
...
...
@@ -175,6 +175,8 @@ extern int Saig_ManDemiterNew( Aig_Man_t * pMan );
extern
Aig_Man_t
*
Saig_ManDecPropertyOutput
(
Aig_Man_t
*
pAig
,
int
nLits
,
int
fVerbose
);
/*=== saigPhase.c ==========================================================*/
extern
Aig_Man_t
*
Saig_ManPhaseAbstract
(
Aig_Man_t
*
p
,
Vec_Int_t
*
vInits
,
int
nFrames
,
int
nPref
,
int
fIgnore
,
int
fPrint
,
int
fVerbose
);
/*=== saigRefSat.c ==========================================================*/
extern
Abc_Cex_t
*
Saig_ManRefineCexSat
(
Aig_Man_t
*
pAig
,
Abc_Cex_t
*
pCex
,
int
nInputs
,
int
fVerbose
);
/*=== saigRetFwd.c ==========================================================*/
extern
void
Saig_ManMarkAutonomous
(
Aig_Man_t
*
p
);
extern
Aig_Man_t
*
Saig_ManRetimeForward
(
Aig_Man_t
*
p
,
int
nMaxIters
,
int
fVerbose
);
...
...
src/aig/saig/saigRefSat.c
0 → 100644
View file @
e7a5a74b
This diff is collapsed.
Click to expand it.
src/base/abci/abc.c
View file @
e7a5a74b
...
...
@@ -8763,20 +8763,19 @@ int Abc_CommandTest( Abc_Frame_t * pAbc, int argc, char ** argv )
Aig_ManStop( pAig );
}
*/
/*
{
extern
Aig_Man_t
*
Abc_NtkToDar
(
Abc_Ntk_t
*
pNtk
,
int
fExors
,
int
fRegisters
);
extern Abc_Cex_t * Saig_PhaseTranslateCex( Aig_Man_t * p, Abc_Cex_t * pCex );
if
(
pAbc
->
pCex
&&
pNtk
)
{
Abc_Cex_t
*
pNew
;
Aig_Man_t
*
pAig
=
Abc_NtkToDar
(
pNtk
,
0
,
1
);
pNew = Saig_
PhaseTranslateCex( pAig, pAbc->pCex
);
pNew
=
Saig_
ManRefineCexSat
(
pAig
,
pAbc
->
pCex
,
0
,
0
);
Aig_ManStop
(
pAig
);
Abc_FrameReplaceCex
(
pAbc
,
&
pNew
);
}
}
*/
return
0
;
usage:
...
...
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