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
46223f90
Commit
46223f90
authored
Oct 07, 2015
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Two fixes in 'dsd_filter'.
parent
a2692b70
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
src/base/abci/abc.c
+2
-1
src/map/if/ifDsd.c
+1
-1
No files found.
src/base/abci/abc.c
View file @
46223f90
...
...
@@ -16805,7 +16805,8 @@ int Abc_CommandDsdFilter( Abc_Frame_t * pAbc, int argc, char ** argv )
If_DsdManCleanMarks
(
pDsd
,
fVerbose
);
if
(
fInvMarks
)
If_DsdManInvertMarks
(
pDsd
,
fVerbose
);
Id_DsdManTuneThresh
(
pDsd
,
fUnate
,
fThresh
,
fThreshHeuristic
,
fVerbose
);
else
Id_DsdManTuneThresh
(
pDsd
,
fUnate
,
fThresh
,
fThreshHeuristic
,
fVerbose
);
return
0
;
usage:
src/map/if/ifDsd.c
View file @
46223f90
...
...
@@ -2772,7 +2772,7 @@ void Id_DsdManTuneThresh( If_DsdMan_t * p, int fUnate, int fThresh, int fThreshH
word
*
pTruth
,
Perm
;
int
i
,
nVars
,
Value
;
abctime
clk
=
Abc_Clock
();
assert
(
fUnate
!=
fThresh
||
fUnate
!=
fThreshHeuristic
);
assert
(
fUnate
+
fThresh
+
fThreshHeuristic
<=
1
);
if
(
p
->
nObjsPrev
>
0
)
printf
(
"Starting the tuning process from object %d (out of %d).
\n
"
,
p
->
nObjsPrev
,
Vec_PtrSize
(
&
p
->
vObjs
)
);
// clean the attributes
...
...
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