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
6003e92e
Commit
6003e92e
authored
Jul 08, 2013
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug fix in 'mfs2'.
parent
9dfd8be5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/opt/sfm/sfmWin.c
+2
-2
No files found.
src/opt/sfm/sfmWin.c
View file @
6003e92e
...
...
@@ -201,8 +201,8 @@ static inline int Sfm_NtkCheckRoot( Sfm_Ntk_t * p, int iNode, int nLevelMax )
{
int
i
,
iFanout
;
// the node is the root if one of the following is true:
// (1) the node has more than fanouts than the limit
if
(
Sfm_ObjFanoutNum
(
p
,
iNode
)
>
p
->
pPars
->
nFanoutMax
)
// (1) the node has more than fanouts than the limit
or has no fanouts (should not happen in general)
if
(
Sfm_ObjFanoutNum
(
p
,
iNode
)
==
0
||
Sfm_ObjFanoutNum
(
p
,
iNode
)
>
p
->
pPars
->
nFanoutMax
)
return
1
;
// (2) the node has CO fanouts
// (3) the node has fanouts above the cutoff level
...
...
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