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
726a1d72
Commit
726a1d72
authored
Sep 07, 2013
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improvements to the new technology mapper.
parent
56e784a2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/aig/gia/giaJf.c
+3
-3
No files found.
src/aig/gia/giaJf.c
View file @
726a1d72
...
...
@@ -375,7 +375,7 @@ int Jf_CutRef_rec( Jf_Man_t * p, int * pCut, int fEdge, int Limit )
for
(
i
=
1
;
i
<=
pCut
[
0
];
i
++
)
if
(
Gia_ObjRefIncId
(
p
->
pGia
,
pCut
[
i
]
)
==
0
)
Count
+=
Jf_CutRef_rec
(
p
,
Jf_ObjCutBest
(
p
,
pCut
[
i
]),
fEdge
,
Limit
-
1
);
return
Count
+
(
fEdge
?
pCut
[
0
]
:
1
);
return
Count
+
(
fEdge
?
(
1
<<
16
)
+
pCut
[
0
]
:
1
);
}
int
Jf_CutDeref_rec
(
Jf_Man_t
*
p
,
int
*
pCut
,
int
fEdge
,
int
Limit
)
{
...
...
@@ -385,7 +385,7 @@ int Jf_CutDeref_rec( Jf_Man_t * p, int * pCut, int fEdge, int Limit )
for
(
i
=
1
;
i
<=
pCut
[
0
];
i
++
)
if
(
Gia_ObjRefDecId
(
p
->
pGia
,
pCut
[
i
]
)
==
0
)
Count
+=
Jf_CutDeref_rec
(
p
,
Jf_ObjCutBest
(
p
,
pCut
[
i
]),
fEdge
,
Limit
-
1
);
return
Count
+
(
fEdge
?
pCut
[
0
]
:
1
);
return
Count
+
(
fEdge
?
(
1
<<
16
)
+
pCut
[
0
]
:
1
);
}
static
inline
int
Jf_CutElaOld
(
Jf_Man_t
*
p
,
int
*
pCut
,
int
fEdge
)
{
...
...
@@ -405,7 +405,7 @@ int Jf_CutRef2_rec( Jf_Man_t * p, int * pCut, int fEdge, int Limit )
if
(
Gia_ObjRefIncId
(
p
->
pGia
,
pCut
[
i
]
)
==
0
)
Count
+=
Jf_CutRef2_rec
(
p
,
Jf_ObjCutBest
(
p
,
pCut
[
i
]),
fEdge
,
Limit
-
1
);
}
return
Count
+
(
fEdge
?
pCut
[
0
]
:
1
);
return
Count
+
(
fEdge
?
(
1
<<
16
)
+
pCut
[
0
]
:
1
);
}
static
inline
int
Jf_CutEla
(
Jf_Man_t
*
p
,
int
*
pCut
,
int
fEdge
)
{
...
...
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