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
4507a5d3
Commit
4507a5d3
authored
Sep 04, 2012
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correcting the report of completed timeframes in &gla.
parent
b08aca5c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
src/aig/gia/giaAbsGla2.c
+5
-5
No files found.
src/aig/gia/giaAbsGla2.c
View file @
4507a5d3
...
@@ -1697,18 +1697,18 @@ finish:
...
@@ -1697,18 +1697,18 @@ finish:
if
(
Status
==
l_Undef
)
if
(
Status
==
l_Undef
)
{
{
if
(
p
->
pPars
->
nTimeOut
&&
clock
()
>=
p
->
pSat
->
nRuntimeLimit
)
if
(
p
->
pPars
->
nTimeOut
&&
clock
()
>=
p
->
pSat
->
nRuntimeLimit
)
Abc_Print
(
1
,
"Timeout %d sec in frame %d with a %d-stable abstraction. "
,
p
->
pPars
->
nTimeOut
,
iFrameProved
,
p
->
pPars
->
nFramesNoChange
);
Abc_Print
(
1
,
"Timeout %d sec in frame %d with a %d-stable abstraction. "
,
p
->
pPars
->
nTimeOut
,
iFrameProved
+
1
,
p
->
pPars
->
nFramesNoChange
);
else
if
(
pPars
->
nConfLimit
&&
sat_solver2_nconflicts
(
p
->
pSat
)
>=
pPars
->
nConfLimit
)
else
if
(
pPars
->
nConfLimit
&&
sat_solver2_nconflicts
(
p
->
pSat
)
>=
pPars
->
nConfLimit
)
Abc_Print
(
1
,
"Exceeded %d conflicts in frame %d with a %d-stable abstraction. "
,
pPars
->
nConfLimit
,
iFrameProved
,
p
->
pPars
->
nFramesNoChange
);
Abc_Print
(
1
,
"Exceeded %d conflicts in frame %d with a %d-stable abstraction. "
,
pPars
->
nConfLimit
,
iFrameProved
+
1
,
p
->
pPars
->
nFramesNoChange
);
else
if
(
Vec_IntSize
(
p
->
vAbs
)
>=
p
->
nMarked
*
(
100
-
pPars
->
nRatioMin
)
/
100
)
else
if
(
Vec_IntSize
(
p
->
vAbs
)
>=
p
->
nMarked
*
(
100
-
pPars
->
nRatioMin
)
/
100
)
Abc_Print
(
1
,
"The ratio of abstracted objects is less than %d %% in frame %d. "
,
pPars
->
nRatioMin
,
iFrameProved
);
Abc_Print
(
1
,
"The ratio of abstracted objects is less than %d %% in frame %d. "
,
pPars
->
nRatioMin
,
iFrameProved
+
1
);
else
else
Abc_Print
(
1
,
"Abstraction stopped for unknown reason in frame %d. "
,
iFrameProved
);
Abc_Print
(
1
,
"Abstraction stopped for unknown reason in frame %d. "
,
iFrameProved
+
1
);
}
}
else
else
{
{
p
->
pPars
->
iFrame
=
iFrameProved
;
p
->
pPars
->
iFrame
=
iFrameProved
;
Abc_Print
(
1
,
"GLA completed %d frames and produced a %d-stable abstraction. "
,
iFrameProved
,
p
->
pPars
->
nFramesNoChange
);
Abc_Print
(
1
,
"GLA completed %d frames and produced a %d-stable abstraction. "
,
iFrameProved
+
1
,
p
->
pPars
->
nFramesNoChange
);
}
}
}
}
else
else
...
...
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