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
e511b872
Commit
e511b872
authored
Jan 29, 2012
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moving Vec_IntPrint to where it belongs.
parent
5e91f132
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
20 deletions
+20
-20
src/base/abci/abcMffc.c
+0
-20
src/misc/vec/vecInt.h
+20
-0
No files found.
src/base/abci/abcMffc.c
View file @
e511b872
...
@@ -137,26 +137,6 @@ void Abc_MffcCollectLeaves( Vec_Ptr_t * vNodes, Vec_Ptr_t * vLeaves )
...
@@ -137,26 +137,6 @@ void Abc_MffcCollectLeaves( Vec_Ptr_t * vNodes, Vec_Ptr_t * vLeaves )
/**Function*************************************************************
/**Function*************************************************************
Synopsis []
Description []
SideEffects []
SeeAlso []
***********************************************************************/
void
Vec_IntPrint
(
Vec_Int_t
*
vVec
)
{
int
i
,
Entry
;
Vec_IntForEachEntry
(
vVec
,
Entry
,
i
)
printf
(
"%d "
,
Entry
);
printf
(
"
\n
"
);
}
/**Function*************************************************************
Synopsis [Collects internal nodes that are roots of MFFCs.]
Synopsis [Collects internal nodes that are roots of MFFCs.]
Description []
Description []
...
...
src/misc/vec/vecInt.h
View file @
e511b872
...
@@ -1237,6 +1237,26 @@ static inline void Vec_IntSelectSort( int * pArray, int nSize )
...
@@ -1237,6 +1237,26 @@ static inline void Vec_IntSelectSort( int * pArray, int nSize )
}
}
}
}
/**Function*************************************************************
Synopsis []
Description []
SideEffects []
SeeAlso []
***********************************************************************/
static
inline
void
Vec_IntPrint
(
Vec_Int_t
*
vVec
)
{
int
i
,
Entry
;
printf
(
"Vector has %d entries: {"
,
Vec_IntSize
(
vVec
)
);
Vec_IntForEachEntry
(
vVec
,
Entry
,
i
)
printf
(
" %d"
,
Entry
);
printf
(
" }
\n
"
);
}
ABC_NAMESPACE_HEADER_END
ABC_NAMESPACE_HEADER_END
...
...
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