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
190dc376
Commit
190dc376
authored
Jul 19, 2016
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix in reading initial state for edge-detection.
parent
0f59f00c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
abclib.dsp
+4
-0
src/aig/gia/giaSatLE.c
+2
-0
No files found.
abclib.dsp
View file @
190dc376
...
...
@@ -267,6 +267,10 @@ SOURCE=.\src\base\abci\abcDsd.c
# End Source File
# Begin Source File
SOURCE=.\src\base\abci\abcExact.c
# End Source File
# Begin Source File
SOURCE=.\src\base\abci\abcExtract.c
# End Source File
# Begin Source File
...
...
src/aig/gia/giaSatLE.c
View file @
190dc376
...
...
@@ -605,6 +605,8 @@ void Sle_ManDeriveInit( Sle_Man_t * p )
assert
(
Gia_ObjIsAnd
(
Gia_ManObj
(
p
->
pGia
,
iObj
))
);
// find edge
iEdge
=
Vec_IntFind
(
Vec_WecEntry
(
p
->
vCutFanins
,
iObj
),
iFanin
);
if
(
iEdge
<
0
)
continue
;
assert
(
iEdge
>=
0
);
Vec_IntPush
(
p
->
vPolars
,
Vec_IntEntry
(
p
->
vEdgeFirst
,
iObj
)
+
iEdge
);
// edge
}
...
...
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