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
bc288a76
Commit
bc288a76
authored
Mar 04, 2019
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Suggested white-space changes for fewer gcc warnings.
parent
9842e823
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
10 additions
and
8 deletions
+10
-8
src/aig/ivy/ivyCheck.c
+0
-0
src/base/io/ioWriteBlif.c
+0
-0
src/bool/kit/kitTruth.c
+0
-0
src/bool/lucky/lucky.c
+0
-0
src/misc/bar/bar.h
+3
-1
src/opt/ret/retDelay.c
+2
-2
src/opt/sfm/sfmSat.c
+1
-1
src/opt/sim/simSupp.c
+2
-2
src/proof/fraig/fraigSat.c
+2
-2
src/sat/glucose/Options.cpp
+0
-0
No files found.
src/aig/ivy/ivyCheck.c
View file @
bc288a76
src/base/io/ioWriteBlif.c
View file @
bc288a76
src/bool/kit/kitTruth.c
View file @
bc288a76
src/bool/lucky/lucky.c
View file @
bc288a76
src/misc/bar/bar.h
View file @
bc288a76
...
@@ -61,7 +61,9 @@ extern void Bar_ProgressStop( Bar_Progress_t * p );
...
@@ -61,7 +61,9 @@ extern void Bar_ProgressStop( Bar_Progress_t * p );
extern
void
Bar_ProgressUpdate_int
(
Bar_Progress_t
*
p
,
int
nItemsCur
,
char
*
pString
);
extern
void
Bar_ProgressUpdate_int
(
Bar_Progress_t
*
p
,
int
nItemsCur
,
char
*
pString
);
static
inline
void
Bar_ProgressUpdate
(
Bar_Progress_t
*
p
,
int
nItemsCur
,
char
*
pString
)
{
static
inline
void
Bar_ProgressUpdate
(
Bar_Progress_t
*
p
,
int
nItemsCur
,
char
*
pString
)
{
if
(
BAR_PROGRESS_USE
&&
p
&&
(
nItemsCur
<
*
((
int
*
)
p
))
)
return
;
Bar_ProgressUpdate_int
(
p
,
nItemsCur
,
pString
);
}
if
(
BAR_PROGRESS_USE
&&
p
&&
(
nItemsCur
<
*
((
int
*
)
p
))
)
return
;
Bar_ProgressUpdate_int
(
p
,
nItemsCur
,
pString
);
}
...
...
src/opt/ret/retDelay.c
View file @
bc288a76
...
@@ -96,7 +96,7 @@ int Abc_NtkRetimeMinDelayTry( Abc_Ntk_t * pNtk, int nDelayLim, int fForward, int
...
@@ -96,7 +96,7 @@ int Abc_NtkRetimeMinDelayTry( Abc_Ntk_t * pNtk, int nDelayLim, int fForward, int
}
}
}
}
if
(
fVerbose
&&
!
fInitial
)
if
(
fVerbose
&&
!
fInitial
)
printf
(
"Performing analysis:
\n
"
);
printf
(
"Performing analysis:
\n
"
);
// find the best iteration
// find the best iteration
DelayBest
=
ABC_INFINITY
;
IterBest
=
0
;
LatchesBest
=
Abc_NtkLatchNum
(
pNtk
);
DelayBest
=
ABC_INFINITY
;
IterBest
=
0
;
LatchesBest
=
Abc_NtkLatchNum
(
pNtk
);
...
@@ -150,7 +150,7 @@ if ( fVerbose && !fInitial )
...
@@ -150,7 +150,7 @@ if ( fVerbose && !fInitial )
Vec_IntFree
(
vValues
);
Vec_IntFree
(
vValues
);
}
}
}
}
if
(
fVerbose
&&
!
fInitial
)
if
(
fVerbose
&&
!
fInitial
)
printf
(
"%s : Starting delay = %3d. Final delay = %3d. IterBest = %2d (out of %2d).
\n
"
,
printf
(
"%s : Starting delay = %3d. Final delay = %3d. IterBest = %2d (out of %2d).
\n
"
,
fForward
?
"Forward "
:
"Backward"
,
DelayStart
,
DelayBest
,
IterBest
,
nIterLimit
);
fForward
?
"Forward "
:
"Backward"
,
DelayStart
,
DelayBest
,
IterBest
,
nIterLimit
);
*
pIterBest
=
(
nIterLimit
==
1
)
?
1
:
IterBest
;
*
pIterBest
=
(
nIterLimit
==
1
)
?
1
:
IterBest
;
...
...
src/opt/sfm/sfmSat.c
View file @
bc288a76
...
@@ -260,7 +260,7 @@ void Sfm_ComputeInterpolantCheck( Sfm_Ntk_t * p )
...
@@ -260,7 +260,7 @@ void Sfm_ComputeInterpolantCheck( Sfm_Ntk_t * p )
else
if
(
uTruth
==
SFM_SAT_UNDEC
)
else
if
(
uTruth
==
SFM_SAT_UNDEC
)
printf
(
"The problem is UNDEC.
\n
"
);
printf
(
"The problem is UNDEC.
\n
"
);
else
else
Kit_DsdPrintFromTruth
(
(
unsigned
*
)
&
uTruth
,
2
)
;
printf
(
"
\n
"
);
Kit_DsdPrintFromTruth
(
(
unsigned
*
)
&
uTruth
,
2
)
,
printf
(
"
\n
"
);
}
}
}
}
...
...
src/opt/sim/simSupp.c
View file @
bc288a76
...
@@ -118,7 +118,7 @@ Vec_Ptr_t * Sim_ComputeFunSupp( Abc_Ntk_t * pNtk, int fVerbose )
...
@@ -118,7 +118,7 @@ Vec_Ptr_t * Sim_ComputeFunSupp( Abc_Ntk_t * pNtk, int fVerbose )
// set the support targets
// set the support targets
Sim_ComputeSuppSetTargets
(
p
);
Sim_ComputeSuppSetTargets
(
p
);
if
(
fVerbose
)
if
(
fVerbose
)
printf
(
"Number of support targets after simulation = %5d.
\n
"
,
Vec_VecSizeSize
(
p
->
vSuppTargs
)
);
printf
(
"Number of support targets after simulation = %5d.
\n
"
,
Vec_VecSizeSize
(
p
->
vSuppTargs
)
);
if
(
Vec_VecSizeSize
(
p
->
vSuppTargs
)
==
0
)
if
(
Vec_VecSizeSize
(
p
->
vSuppTargs
)
==
0
)
goto
exit
;
goto
exit
;
...
@@ -131,7 +131,7 @@ if ( fVerbose )
...
@@ -131,7 +131,7 @@ if ( fVerbose )
if
(
Vec_VecSizeSize
(
p
->
vSuppTargs
)
==
0
)
if
(
Vec_VecSizeSize
(
p
->
vSuppTargs
)
==
0
)
goto
exit
;
goto
exit
;
if
(
fVerbose
)
if
(
fVerbose
)
printf
(
"Targets = %5d. Solved = %5d. Fifo = %5d.
\n
"
,
printf
(
"Targets = %5d. Solved = %5d. Fifo = %5d.
\n
"
,
Vec_VecSizeSize
(
p
->
vSuppTargs
),
nSolved
,
Vec_PtrSize
(
p
->
vFifo
)
);
Vec_VecSizeSize
(
p
->
vSuppTargs
),
nSolved
,
Vec_PtrSize
(
p
->
vFifo
)
);
}
}
...
...
src/proof/fraig/fraigSat.c
View file @
bc288a76
...
@@ -358,7 +358,7 @@ p->timeTrav += Abc_Clock() - clk;
...
@@ -358,7 +358,7 @@ p->timeTrav += Abc_Clock() - clk;
// printf( "The number of MUXes detected = %d (%5.2f %% of logic). ", nMuxes, 300.0*nMuxes/(p->vNodes->nSize - p->vInputs->nSize) );
// printf( "The number of MUXes detected = %d (%5.2f %% of logic). ", nMuxes, 300.0*nMuxes/(p->vNodes->nSize - p->vInputs->nSize) );
// ABC_PRT( "Time", Abc_Clock() - clk );
// ABC_PRT( "Time", Abc_Clock() - clk );
if
(
fVerbose
)
if
(
fVerbose
)
printf
(
"%d(%d) - "
,
Fraig_CountPis
(
p
,
p
->
vVarsInt
),
Msat_IntVecReadSize
(
p
->
vVarsInt
)
);
printf
(
"%d(%d) - "
,
Fraig_CountPis
(
p
,
p
->
vVarsInt
),
Msat_IntVecReadSize
(
p
->
vVarsInt
)
);
...
@@ -574,7 +574,7 @@ clk = Abc_Clock();
...
@@ -574,7 +574,7 @@ clk = Abc_Clock();
// Fraig_PrepareCones( p, pOld, pNew );
// Fraig_PrepareCones( p, pOld, pNew );
p
->
timeTrav
+=
Abc_Clock
()
-
clk
;
p
->
timeTrav
+=
Abc_Clock
()
-
clk
;
if
(
fVerbose
)
if
(
fVerbose
)
printf
(
"%d(%d) - "
,
Fraig_CountPis
(
p
,
p
->
vVarsInt
),
Msat_IntVecReadSize
(
p
->
vVarsInt
)
);
printf
(
"%d(%d) - "
,
Fraig_CountPis
(
p
,
p
->
vVarsInt
),
Msat_IntVecReadSize
(
p
->
vVarsInt
)
);
...
...
src/sat/glucose/Options.cpp
View file @
bc288a76
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