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
8a08453a
Commit
8a08453a
authored
Dec 09, 2012
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Corner-case bug fix in &rpm.
parent
b65ae734
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
9 deletions
+29
-9
src/aig/gia/giaTruth.c
+24
-9
src/proof/abs/absRpm.c
+5
-0
No files found.
src/aig/gia/giaTruth.c
View file @
8a08453a
...
...
@@ -245,18 +245,21 @@ void Gia_ObjComputeTruthTableTest( Gia_Man_t * p )
SeeAlso []
***********************************************************************/
void
Gia_ObjCollectInternalCut_rec
(
Gia_Man_t
*
p
,
Gia_Obj_t
*
pObj
)
int
Gia_ObjCollectInternalCut_rec
(
Gia_Man_t
*
p
,
Gia_Obj_t
*
pObj
)
{
if
(
pObj
->
fMark0
)
return
;
pObj
->
fMark0
=
1
;
return
0
;
assert
(
Gia_ObjIsAnd
(
pObj
)
);
Gia_ObjCollectInternalCut_rec
(
p
,
Gia_ObjFanin0
(
pObj
)
);
Gia_ObjCollectInternalCut_rec
(
p
,
Gia_ObjFanin1
(
pObj
)
);
if
(
Gia_ObjCollectInternalCut_rec
(
p
,
Gia_ObjFanin0
(
pObj
)
)
)
return
1
;
if
(
Gia_ObjCollectInternalCut_rec
(
p
,
Gia_ObjFanin1
(
pObj
)
)
)
return
1
;
pObj
->
fMark0
=
1
;
Gia_ObjSetNum
(
p
,
pObj
,
Vec_IntSize
(
p
->
vTtNodes
)
);
Vec_IntPush
(
p
->
vTtNodes
,
Gia_ObjId
(
p
,
pObj
)
);
return
(
Vec_IntSize
(
p
->
vTtNodes
)
>=
254
);
}
void
Gia_ObjCollectInternalCut
(
Gia_Man_t
*
p
,
Gia_Obj_t
*
pRoot
,
Vec_Int_t
*
vLeaves
)
int
Gia_ObjCollectInternalCut
(
Gia_Man_t
*
p
,
Gia_Obj_t
*
pRoot
,
Vec_Int_t
*
vLeaves
)
{
Gia_Obj_t
*
pObj
;
int
i
;
...
...
@@ -270,8 +273,7 @@ void Gia_ObjCollectInternalCut( Gia_Man_t * p, Gia_Obj_t * pRoot, Vec_Int_t * vL
}
assert
(
pRoot
->
fMark0
==
0
);
// the root cannot be one of the leaves
Vec_IntClear
(
p
->
vTtNodes
);
Gia_ObjCollectInternalCut_rec
(
p
,
pRoot
);
assert
(
Vec_IntSize
(
p
->
vTtNodes
)
<
254
);
return
Gia_ObjCollectInternalCut_rec
(
p
,
pRoot
);
}
/**Function*************************************************************
...
...
@@ -324,8 +326,21 @@ word * Gia_ObjComputeTruthTableCut( Gia_Man_t * p, Gia_Obj_t * pRoot, Vec_Int_t
assert
(
p
->
vTtMemory
!=
NULL
);
assert
(
Vec_IntSize
(
vLeaves
)
<=
p
->
nTtVars
);
// collect internal nodes
Gia_ObjCollectInternalCut
(
p
,
pRoot
,
vLeaves
);
if
(
Gia_ObjCollectInternalCut
(
p
,
pRoot
,
vLeaves
)
)
{
// unmark nodes makred by Gia_ObjCollectInternal()
Gia_ManForEachObjVec
(
p
->
vTtNodes
,
p
,
pTemp
,
i
)
pTemp
->
fMark0
=
0
;
// unmark leaves marked by Gia_ObjCollectInternal()
Gia_ManForEachObjVec
(
vLeaves
,
p
,
pTemp
,
i
)
{
assert
(
pTemp
->
fMark0
==
1
);
pTemp
->
fMark0
=
0
;
}
return
NULL
;
}
// compute the truth table for internal nodes
assert
(
Vec_IntSize
(
p
->
vTtNodes
)
<
254
);
Gia_ManForEachObjVec
(
p
->
vTtNodes
,
p
,
pTemp
,
i
)
{
pTemp
->
fMark0
=
0
;
// unmark nodes marked by Gia_ObjCollectInternal()
...
...
src/proof/abs/absRpm.c
View file @
8a08453a
...
...
@@ -666,6 +666,11 @@ void Abs_RpmPerformMark( Gia_Man_t * p, int nCutMax, int fVerbose, int fVeryVerb
assert
(
nSize0
>
0
&&
nSize0
<=
nCutMax
);
// check if truth table has const cofs
pTruth
=
Gia_ObjComputeTruthTableCut
(
p
,
pObj
,
vSupp
);
if
(
pTruth
==
NULL
)
{
Abs_GiaObjRef_rec
(
p
,
pObj
);
continue
;
}
fHasConst
=
!
Abs_GiaCheckTruth
(
pTruth
,
Vec_IntSize
(
vSupp
),
nSize0
);
if
(
fVeryVerbose
)
{
...
...
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