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
951afa27
Commit
951afa27
authored
Jan 27, 2020
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleaning up code and fixing for several typos.
parent
8c8f39ad
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
12 additions
and
16 deletions
+12
-16
src/aig/saig/saigInd.c
+2
-2
src/base/abci/abcQbf.c
+2
-6
src/base/acb/acbFunc.c
+1
-1
src/bdd/reo/reo.h
+1
-1
src/bool/dec/dec.h
+2
-2
src/bool/deco/deco.h
+2
-2
src/opt/ret/retDelay.c
+1
-1
src/proof/fra/fraLcr.c
+1
-1
No files found.
src/aig/saig/saigInd.c
View file @
951afa27
...
...
@@ -383,9 +383,9 @@ nextrun:
else
if
(
status
==
l_Undef
)
printf
(
"Conflict limit (%d) was reached during iteration %d.
\n
"
,
nConfMax
,
f
+
1
);
else
if
(
fUnique
||
fUniqueAll
)
printf
(
"Completed %d i
n
terations and added %d uniqueness constraints.
\n
"
,
f
+
1
,
nConstrs
);
printf
(
"Completed %d iterations and added %d uniqueness constraints.
\n
"
,
f
+
1
,
nConstrs
);
else
printf
(
"Completed %d i
n
terations.
\n
"
,
f
+
1
);
printf
(
"Completed %d iterations.
\n
"
,
f
+
1
);
}
// cleanup
sat_solver_delete
(
pSat
);
...
...
src/base/abci/abcQbf.c
View file @
951afa27
...
...
@@ -195,8 +195,6 @@ clkV = Abc_Clock() - clkV;
ABC_PRT
(
"Syn"
,
clkS
);
// ABC_PRT( "Ver", clkV );
}
if
(
nIters
+
1
==
nItersMax
)
break
;
}
Abc_NtkDelete
(
pNtkSyn
);
// report the results
...
...
@@ -206,12 +204,10 @@ clkV = Abc_Clock() - clkV;
printf
(
"Parameters: "
);
Abc_NtkVectorPrintPars
(
vPiValues
,
nPars
);
printf
(
" Statistics: 0=%d 1=%d
\n
"
,
nZeros
,
Vec_IntSize
(
vPiValues
)
-
nZeros
);
printf
(
"Solved after %d i
n
terations. "
,
nIters
);
printf
(
"Solved after %d iterations. "
,
nIters
);
}
else
if
(
nIters
==
nItersMax
)
printf
(
"Unsolved after %d interations. "
,
nIters
);
else
if
(
nIters
==
nItersMax
)
printf
(
"Quit after %d interatios. "
,
nItersMax
);
printf
(
"Quit after %d iterations. "
,
nItersMax
);
else
printf
(
"Implementation does not exist. "
);
ABC_PRT
(
"Total runtime"
,
Abc_Clock
()
-
clkTotal
);
...
...
src/base/acb/acbFunc.c
View file @
951afa27
...
...
@@ -1094,7 +1094,7 @@ Vec_Int_t * Acb_FindSupport( sat_solver * pSat, int iFirstDiv, Vec_Int_t * vWeig
vSuppBest
=
Vec_IntDup
(
vSuppStart
);
printf
(
"Starting cost = %d.
\n
"
,
CostBest
);
// i
n
teratively find the one with the most ones in the uncovered rows
// iteratively find the one with the most ones in the uncovered rows
for
(
Iter
=
0
;
Iter
<
200
;
Iter
++
)
{
if
(
Abc_Clock
()
>
clkLimit
)
...
...
src/bdd/reo/reo.h
View file @
951afa27
...
...
@@ -106,7 +106,7 @@ struct _reo_man
int
fVerbose
;
// the verbosity level
int
fVerify
;
// the flag toggling verification
int
fRemapUp
;
// the flag to enable remapping
int
nIters
;
// the number of i
n
terations of sifting to perform
int
nIters
;
// the number of iterations of sifting to perform
// parameters given by the user when reordering is called
DdManager
*
dd
;
// the CUDD BDD manager
...
...
src/bool/dec/dec.h
View file @
951afa27
...
...
@@ -94,10 +94,10 @@ struct Dec_Man_t_
/// ITERATORS ///
////////////////////////////////////////////////////////////////////////
// i
nterator throught
the leaves
// i
terator through
the leaves
#define Dec_GraphForEachLeaf( pGraph, pLeaf, i ) \
for ( i = 0; (i < (pGraph)->nLeaves) && (((pLeaf) = Dec_GraphNode(pGraph, i)), 1); i++ )
// i
nterator throught
the internal nodes
// i
terator through
the internal nodes
#define Dec_GraphForEachNode( pGraph, pAnd, i ) \
for ( i = (pGraph)->nLeaves; (i < (pGraph)->nSize) && (((pAnd) = Dec_GraphNode(pGraph, i)), 1); i++ )
...
...
src/bool/deco/deco.h
View file @
951afa27
...
...
@@ -94,10 +94,10 @@ struct Dec_Man_t_
/// ITERATORS ///
////////////////////////////////////////////////////////////////////////
// i
nterator throught
the leaves
// i
terator through
the leaves
#define Dec_GraphForEachLeaf( pGraph, pLeaf, i ) \
for ( i = 0; (i < (pGraph)->nLeaves) && (((pLeaf) = Dec_GraphNode(pGraph, i)), 1); i++ )
// i
nterator throught
the internal nodes
// i
terator through
the internal nodes
#define Dec_GraphForEachNode( pGraph, pAnd, i ) \
for ( i = (pGraph)->nLeaves; (i < (pGraph)->nSize) && (((pAnd) = Dec_GraphNode(pGraph, i)), 1); i++ )
...
...
src/opt/ret/retDelay.c
View file @
951afa27
...
...
@@ -123,7 +123,7 @@ if ( fVerbose && !fInitial )
// quit after timing analysis
if
(
i
==
nIterLimit
)
break
;
// skip if 10 i
n
terations did not give improvement
// skip if 10 iterations did not give improvement
if
(
i
-
IterBest
>
20
)
break
;
// skip if delay limit is reached
...
...
src/proof/fra/fraLcr.c
View file @
951afa27
...
...
@@ -604,7 +604,7 @@ p->timePart += Abc_Clock() - clk2;
p
->
nNodesBeg
=
Aig_ManNodeNum
(
p
->
pAig
);
p
->
nRegsBeg
=
Aig_ManRegNum
(
p
->
pAig
);
// perfor
n in
terative reduction of the partitions
// perfor
m i
terative reduction of the partitions
p
->
fRefining
=
1
;
for
(
nIter
=
0
;
p
->
fRefining
;
nIter
++
)
{
...
...
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