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
5a5577f9
Commit
5a5577f9
authored
Sep 06, 2012
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Integrated new fast semi-canonical form for Boolean functions up to 16 inputs.
parent
39fe23f0
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
6 deletions
+2
-6
src/bool/lucky/luckyFast16.c
+0
-4
src/bool/lucky/luckyFast6.c
+2
-2
No files found.
src/bool/lucky/luckyFast16.c
View file @
5a5577f9
...
...
@@ -175,8 +175,6 @@ inline void minimalSwapAndFlipIVar_superFast_lessThen5(word* pInOut, int iVar, i
{
int
min1
,
min2
,
DifStart0
,
DifStart1
,
DifStartMin
;
int
M
[
2
];
int
blockSize
=
1
<<
iVar
;
// int shiftSize = blockSize*4;
M
[
0
]
=
minTemp0_fast
(
pInOut
,
iVar
,
nWords
,
&
DifStart0
);
// 0, 3
M
[
1
]
=
minTemp1_fast
(
pInOut
,
iVar
,
nWords
,
&
DifStart1
);
// 1, 2
...
...
@@ -512,8 +510,6 @@ inline void minimalSwapAndFlipIVar_superFast_moreThen5(word* pInOut, int iVar, i
int
min1
,
min2
,
DifStart0
,
DifStart1
,
DifStartMin
;
int
M
[
2
];
word
temp
[
1024
];
int
blockSize
=
1
<<
(
iVar
-
6
);
// int shiftSize = blockSize*4;
M
[
0
]
=
minTemp0_fast_moreThen5
(
pInOut
,
iVar
,
nWords
,
&
DifStart0
);
// 0, 3
M
[
1
]
=
minTemp1_fast_moreThen5
(
pInOut
,
iVar
,
nWords
,
&
DifStart1
);
// 1, 2
...
...
src/bool/lucky/luckyFast6.c
View file @
5a5577f9
...
...
@@ -49,7 +49,7 @@ void swapAndFlip(word* pAfter, int nVars, int iVarInPosition, int jVar, char * p
*
pUCanonPhase
^=
(
1
<<
iVarInPosition
);
*
pUCanonPhase
^=
(
1
<<
jVar
);
}
if
(
*
pUCanonPhase
>>
iVarInPosition
&
(
unsigned
)
1
==
1
)
if
(
(
*
pUCanonPhase
>>
iVarInPosition
)
&
1
)
Kit_TruthChangePhase_64bit
(
pAfter
,
nVars
,
iVarInPosition
);
}
...
...
@@ -68,7 +68,7 @@ int luckyCheck(word* pAfter, word* pBefore, int nVars, char * pCanonPerm, unsign
break
;
}
}
if
(
uCanonPhase
>>
nVars
&
(
unsigned
)
1
==
1
)
if
(
(
uCanonPhase
>>
nVars
)
&
1
)
Kit_TruthNot_64bit
(
pAfter
,
nVars
);
if
(
memcmp
(
pAfter
,
pBefore
,
Kit_TruthWordNum_64bit
(
nVars
)
*
sizeof
(
word
))
==
0
)
return
0
;
...
...
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