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
4bafc98a
Commit
4bafc98a
authored
Apr 10, 2014
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Pass file name correctly.
parent
1c582413
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
src/base/abci/abcDar.c
+4
-3
No files found.
src/base/abci/abcDar.c
View file @
4bafc98a
...
...
@@ -160,7 +160,7 @@ Aig_Man_t * Abc_NtkToDarBmc( Abc_Ntk_t * pNtk, Vec_Int_t ** pvMap )
pMan
->
nConstrs
=
pNtk
->
nConstrs
;
pMan
->
nBarBufs
=
pNtk
->
nBarBufs
;
pMan
->
pName
=
Extra_UtilStrsav
(
pNtk
->
pName
);
pMan
->
pSpec
=
Extra_UtilStrsav
(
pNtk
->
pSpec
);
// transfer the pointers to the basic nodes
Abc_AigConst1
(
pNtk
)
->
pCopy
=
(
Abc_Obj_t
*
)
Aig_ManConst1
(
pMan
);
Abc_NtkForEachCi
(
pNtk
,
pObj
,
i
)
...
...
@@ -279,8 +279,8 @@ Aig_Man_t * Abc_NtkToDar( Abc_Ntk_t * pNtk, int fExors, int fRegisters )
pMan
->
fCatchExor
=
fExors
;
pMan
->
nConstrs
=
pNtk
->
nConstrs
;
pMan
->
nBarBufs
=
pNtk
->
nBarBufs
;
pMan
->
pName
=
Extra_UtilStrsav
(
pNtk
->
pName
);
pMan
->
pSpec
=
Extra_UtilStrsav
(
pNtk
->
pSpec
);
// transfer the pointers to the basic nodes
Abc_AigConst1
(
pNtk
)
->
pCopy
=
(
Abc_Obj_t
*
)
Aig_ManConst1
(
pMan
);
Abc_NtkForEachCi
(
pNtk
,
pObj
,
i
)
...
...
@@ -359,9 +359,10 @@ Aig_Man_t * Abc_NtkToDarChoices( Abc_Ntk_t * pNtk )
vNodes
=
Abc_AigDfs
(
pNtk
,
0
,
0
);
// create the manager
pMan
=
Aig_ManStart
(
Abc_NtkNodeNum
(
pNtk
)
+
100
);
pMan
->
pName
=
Extra_UtilStrsav
(
pNtk
->
pName
);
pMan
->
nConstrs
=
pNtk
->
nConstrs
;
pMan
->
nBarBufs
=
pNtk
->
nBarBufs
;
pMan
->
pName
=
Extra_UtilStrsav
(
pNtk
->
pName
);
pMan
->
pSpec
=
Extra_UtilStrsav
(
pNtk
->
pSpec
);
if
(
Abc_NtkGetChoiceNum
(
pNtk
)
)
{
pMan
->
pEquivs
=
ABC_ALLOC
(
Aig_Obj_t
*
,
Abc_NtkObjNum
(
pNtk
)
);
...
...
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