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
e80bd69e
Commit
e80bd69e
authored
Jul 07, 2012
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding flushing stdout after printing verbose stats.
parent
fc574a7c
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
0 deletions
+5
-0
src/aig/saig/saigBmc2.c
+2
-0
src/aig/saig/saigBmc3.c
+1
-0
src/proof/pdr/pdrInv.c
+1
-0
src/proof/pdr/pdrMan.c
+1
-0
No files found.
src/aig/saig/saigBmc2.c
View file @
e80bd69e
...
...
@@ -793,6 +793,7 @@ int Saig_BmcPerform( Aig_Man_t * pAig, int nStart, int nFramesMax, int nNodesMax
printf
(
"%4.0f Mb"
,
4
.
0
*
(
p
->
iFrameLast
+
1
)
*
p
->
nObjs
/
(
1
<<
20
)
);
printf
(
"%9.2f sec"
,
(
float
)(
clock
()
-
clkTotal
)
/
(
float
)(
CLOCKS_PER_SEC
)
);
printf
(
"
\n
"
);
fflush
(
stdout
);
}
if
(
RetValue
!=
l_False
)
break
;
...
...
@@ -846,6 +847,7 @@ int Saig_BmcPerform( Aig_Man_t * pAig, int nStart, int nFramesMax, int nNodesMax
printf
(
"Reached local conflict limit (%d).
\n
"
,
p
->
nConfMaxOne
);
}
Saig_BmcManStop
(
p
);
fflush
(
stdout
);
return
Status
;
}
...
...
src/aig/saig/saigBmc3.c
View file @
e80bd69e
...
...
@@ -1476,6 +1476,7 @@ clkOther += clock() - clk2;
// printf( "\n" );
}
Saig_Bmc3ManStop
(
p
);
fflush
(
stdout
);
return
RetValue
;
}
...
...
src/proof/pdr/pdrInv.c
View file @
e80bd69e
...
...
@@ -84,6 +84,7 @@ void Pdr_ManPrintProgress( Pdr_Man_t * p, int fClose, clock_t Time )
Abc_Print
(
1
,
"%s"
,
fClose
?
"
\n
"
:
"
\r
"
);
if
(
fClose
)
p
->
nQueMax
=
0
;
fflush
(
stdout
);
}
/**Function*************************************************************
...
...
src/proof/pdr/pdrMan.c
View file @
e80bd69e
...
...
@@ -105,6 +105,7 @@ void Pdr_ManStop( Pdr_Man_t * p )
ABC_PRTP
(
"Containment"
,
p
->
tContain
,
p
->
tTotal
);
ABC_PRTP
(
"CNF compute"
,
p
->
tCnf
,
p
->
tTotal
);
ABC_PRTP
(
"TOTAL "
,
p
->
tTotal
,
p
->
tTotal
);
fflush
(
stdout
);
}
// Abc_Print( 1, "SS =%6d. SU =%6d. US =%6d. UU =%6d.\n", p->nCasesSS, p->nCasesSU, p->nCasesUS, p->nCasesUU );
Vec_PtrForEachEntry
(
sat_solver
*
,
p
->
vSolvers
,
pSat
,
i
)
...
...
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