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
10f5e944
Commit
10f5e944
authored
Jun 06, 2017
by
Yen-Sheng Ho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
%pdra: fixed a bug
parent
38e5c8c9
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/base/wlc/wlcPth.c
+2
-2
No files found.
src/base/wlc/wlcPth.c
View file @
10f5e944
...
...
@@ -40,7 +40,7 @@ ABC_NAMESPACE_IMPL_START
extern
Abc_Ntk_t
*
Abc_NtkFromAigPhase
(
Aig_Man_t
*
pAig
);
extern
int
Abc_NtkDarBmc3
(
Abc_Ntk_t
*
pAbcNtk
,
Saig_ParBmc_t
*
pBmcPars
,
int
fOrDecomp
);
extern
int
Wla_ManShrinkAbs
(
Wla_Man_t
*
pWla
,
int
nFrames
);
extern
int
Wla_ManShrinkAbs
(
Wla_Man_t
*
pWla
,
int
nFrames
,
int
RunId
);
static
volatile
int
g_nRunIds
=
0
;
// the number of the last prover instance
int
Wla_CallBackToStop
(
int
RunId
)
{
assert
(
RunId
<=
g_nRunIds
);
return
RunId
<
g_nRunIds
;
}
...
...
@@ -119,7 +119,7 @@ void * Wla_Bmc3Thread ( void * pArg )
if
(
pData
->
pWla
->
nIters
>
1
&&
pData
->
RunId
==
g_nRunIds
)
{
RetValue
=
Wla_ManShrinkAbs
(
pData
->
pWla
,
pData
->
pWla
->
iCexFrame
+
nFramesNoChangeLim
);
RetValue
=
Wla_ManShrinkAbs
(
pData
->
pWla
,
pData
->
pWla
->
iCexFrame
+
nFramesNoChangeLim
,
pData
->
RunId
);
pData
->
pWla
->
iCexFrame
+=
nFramesNoChangeLim
;
if
(
RetValue
==
1
)
...
...
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