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
e52dc774
Commit
e52dc774
authored
Nov 11, 2012
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improved DSD.
parent
1116313d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
src/map/if/ifTruth.c
+5
-2
No files found.
src/map/if/ifTruth.c
View file @
e52dc774
...
...
@@ -28,6 +28,7 @@ ABC_NAMESPACE_IMPL_START
/// DECLARATIONS ///
////////////////////////////////////////////////////////////////////////
//#define IF_TRY_NEW
////////////////////////////////////////////////////////////////////////
/// FUNCTION DEFINITIONS ///
...
...
@@ -520,13 +521,14 @@ static inline int If_CutComputeTruth6( If_Man_t * p, If_Cut_t * pCut, If_Cut_t *
t1
=
If_TruthStretch6
(
t1
,
pCut
,
pCut1
);
*
If_CutTruthW
(
pCut
)
=
t0
&
t1
;
if
(
0
)
#ifdef IF_TRY_NEW
{
word
pCopy
[
1024
];
char
pCanonPerm
[
16
];
memcpy
(
pCopy
,
If_CutTruthW
(
pCut
),
sizeof
(
word
)
*
1
);
Abc_TtCanonicize
(
pCopy
,
pCut
->
nLimit
,
pCanonPerm
);
}
#endif
if
(
p
->
pPars
->
fCutMin
)
return
If_CutTruthMinimize6
(
p
,
pCut
);
...
...
@@ -638,13 +640,14 @@ inline int If_CutComputeTruth2( If_Man_t * p, If_Cut_t * pCut, If_Cut_t * pCut0,
If_TruthStretch2
(
(
word
*
)
p
->
puTemp
[
1
],
pCut
,
pCut1
);
Abc_TtAnd
(
If_CutTruthW
(
pCut
),
(
word
*
)
p
->
puTemp
[
0
],
(
word
*
)
p
->
puTemp
[
1
],
nWords
,
0
);
if
(
0
)
#ifdef IF_TRY_NEW
{
word
pCopy
[
1024
];
char
pCanonPerm
[
16
];
memcpy
(
pCopy
,
If_CutTruthW
(
pCut
),
sizeof
(
word
)
*
nWords
);
Abc_TtCanonicize
(
pCopy
,
pCut
->
nLimit
,
pCanonPerm
);
}
#endif
if
(
p
->
pPars
->
fCutMin
)
return
If_CutTruthMinimize2
(
p
,
pCut
);
...
...
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