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
eec94a70
Commit
eec94a70
authored
Sep 22, 2013
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding API to return the mapped network.
parent
d61bedc6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
src/aig/miniaig/abcapis.h
+4
-0
src/base/abci/abcMap.c
+4
-3
No files found.
src/aig/miniaig/abcapis.h
View file @
eec94a70
...
...
@@ -53,6 +53,10 @@ extern int Cmd_CommandExecute( void * pAbc, char * pCommandLine );
extern
void
Abc_NtkInputMiniAig
(
void
*
pAbc
,
void
*
pMiniAig
);
extern
void
*
Abc_NtkOutputMiniAig
(
void
*
pAbc
);
// procedures to return the mapped network
extern
int
*
Abc_NtkOutputMiniMapping
(
Abc_Frame_t
*
pAbc
);
extern
void
Abc_NtkPrintMiniMapping
(
int
*
pArray
);
// procedures to access verifization status and a counter-example
extern
int
Abc_FrameReadProbStatus
(
void
*
pAbc
);
extern
void
*
Abc_FrameReadCex
(
void
*
pAbc
);
...
...
src/base/abci/abcMap.c
View file @
eec94a70
...
...
@@ -792,8 +792,8 @@ Vec_Int_t * Abc_NtkWriteMiniMapping( Abc_Ntk_t * pNtk )
pObj
->
iTemp
=
nNodes
++
;
Vec_PtrForEachEntry
(
Abc_Obj_t
*
,
vNodes
,
pObj
,
i
)
pObj
->
iTemp
=
nNodes
++
,
nFanins
+=
Abc_ObjFaninNum
(
pObj
);
// allocate attay to store mapping (4 counters +
N entries
vMapping
=
Vec_IntAlloc
(
4
+
Abc_NtkNodeNum
(
pNtk
)
+
nFanins
+
Abc_NtkCoNum
(
pNtk
)
);
// allocate attay to store mapping (4 counters +
fanins for each node + PO drivers + gate names)
vMapping
=
Vec_IntAlloc
(
4
+
Abc_NtkNodeNum
(
pNtk
)
+
nFanins
+
Abc_NtkCoNum
(
pNtk
)
+
10000
);
// write the numbers of CI/CO/Node/FF
Vec_IntPush
(
vMapping
,
Abc_NtkCiNum
(
pNtk
)
);
Vec_IntPush
(
vMapping
,
Abc_NtkCoNum
(
pNtk
)
);
...
...
@@ -806,6 +806,7 @@ Vec_Int_t * Abc_NtkWriteMiniMapping( Abc_Ntk_t * pNtk )
Vec_IntPush
(
vMapping
,
Abc_ObjFaninNum
(
pObj
)
);
Abc_ObjForEachFanin
(
pObj
,
pFanin
,
k
)
Vec_IntPush
(
vMapping
,
pFanin
->
iTemp
);
// remember this gate (to be added to the mapping later)
Vec_StrPrintStr
(
vGates
,
Mio_GateReadName
((
Mio_Gate_t
*
)
pObj
->
pData
)
);
Vec_StrPush
(
vGates
,
'\0'
);
}
...
...
@@ -904,7 +905,7 @@ int * Abc_NtkOutputMiniMapping( Abc_Frame_t * pAbc )
/**Function*************************************************************
Synopsis [Test mini-mapped format.]
Synopsis [Test
for
mini-mapped format.]
Description []
...
...
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