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
2b336851
Commit
2b336851
authored
Mar 29, 2011
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added test package.
parent
6c01e8b9
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
19 additions
and
4 deletions
+19
-4
Makefile
+1
-1
abclib.dsp
+8
-0
src/aig/int/intCore.c
+1
-0
src/base/abci/abc.c
+2
-2
src/base/main/mainInit.c
+4
-0
src/base/main/mainInt.h
+3
-1
No files found.
Makefile
View file @
2b336851
...
...
@@ -9,7 +9,7 @@ PROG := abc
MODULES
:=
\
$
(
wildcard src/ext
)
src/misc/ext
\
src/base/abc src/base/abci src/base/cmd
\
src/base/io src/base/main src/base/ver
\
src/base/io src/base/main src/base/ver
src/base/test
\
src/bdd/cudd src/bdd/dsd src/bdd/epd src/bdd/mtr
\
src/bdd/parse src/bdd/reo src/bdd/cas
\
src/map/fpga src/map/mapper src/map/mio src/map/super
\
...
...
abclib.dsp
View file @
2b336851
...
...
@@ -4187,6 +4187,10 @@ SOURCE=.\src\aig\au\auDec6.c
# End Source File
# Begin Source File
SOURCE=.\src\aig\au\auDiv.c
# End Source File
# Begin Source File
SOURCE=.\src\aig\au\auDsd.c
# End Source File
# Begin Source File
...
...
@@ -4239,6 +4243,10 @@ SOURCE=.\src\aig\au\auResDiv.c
# End Source File
# Begin Source File
SOURCE=.\src\aig\au\auResTruth.c
# End Source File
# Begin Source File
SOURCE=.\src\aig\au\auSat.h
# End Source File
# Begin Source File
...
...
src/aig/int/intCore.c
View file @
2b336851
...
...
@@ -243,6 +243,7 @@ p->timeCnf += clock() - clk;
clk
=
clock
();
if
(
p
->
pInterNew
)
{
// Ioa_WriteAiger( p->pInterNew, "interpol.aig", 0, 0 );
p
->
pInterNew
=
Dar_ManRwsat
(
pAigTemp
=
p
->
pInterNew
,
1
,
0
);
// p->pInterNew = Dar_ManRwsat( pAigTemp = p->pInterNew, 0, 0 );
Aig_ManStop
(
pAigTemp
);
...
...
src/base/abci/abc.c
View file @
2b336851
...
...
@@ -8687,8 +8687,8 @@ int Abc_CommandTest( Abc_Frame_t * pAbc, int argc, char ** argv )
Aig_ManStop( pAig );
}
*/
/*
if ( Abc_NtkIsStrash(pNtk) )
{
extern Abc_Ntk_t * Au_ManTransformTest( Abc_Ntk_t * pAig );
...
...
@@ -8706,8 +8706,8 @@ int Abc_CommandTest( Abc_Frame_t * pAbc, int argc, char ** argv )
}
// replace the current network
Abc_FrameReplaceCurrentNetwork( pAbc, pNtkRes );
*/
*/
{
// extern void Au_Sat3DeriveImpls();
...
...
src/base/main/mainInit.c
View file @
2b336851
...
...
@@ -46,6 +46,8 @@ extern void Libs_Init( Abc_Frame_t * pAbc );
extern
void
Libs_End
(
Abc_Frame_t
*
pAbc
);
extern
void
Load_Init
(
Abc_Frame_t
*
pAbc
);
extern
void
Load_End
(
Abc_Frame_t
*
pAbc
);
extern
void
Test_Init
(
Abc_Frame_t
*
pAbc
);
extern
void
Test_End
(
Abc_Frame_t
*
pAbc
);
////////////////////////////////////////////////////////////////////////
/// FUNCTION DEFINITIONS ///
...
...
@@ -74,6 +76,7 @@ void Abc_FrameInit( Abc_Frame_t * pAbc )
Super_Init
(
pAbc
);
Libs_Init
(
pAbc
);
Load_Init
(
pAbc
);
Test_Init
(
pAbc
);
EXT_ABC_INIT
(
pAbc
)
// plugin for external functionality
}
...
...
@@ -100,6 +103,7 @@ void Abc_FrameEnd( Abc_Frame_t * pAbc )
Super_End
(
pAbc
);
Libs_End
(
pAbc
);
Load_End
(
pAbc
);
Test_End
(
pAbc
);
EXT_ABC_END
(
pAbc
)
// plugin for external functionality
}
...
...
src/base/main/mainInt.h
View file @
2b336851
...
...
@@ -63,7 +63,9 @@ struct Abc_Frame_t_
st_table
*
tFlags
;
// the flag table
Vec_Ptr_t
*
aHistory
;
// the command history
// the functionality
Abc_Ntk_t
*
pNtkCur
;
// the current network
Abc_Ntk_t
*
pNtkCur
;
// the current network
Abc_Ntk_t
*
pNtkBestDelay
;
// the current network
Abc_Ntk_t
*
pNtkBestArea
;
// the current network
int
nSteps
;
// the counter of different network processed
int
fAutoexac
;
// marks the autoexec mode
int
fBatchMode
;
// are we invoked in batch mode?
...
...
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