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
408ce468
Commit
408ce468
authored
Feb 16, 2017
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing memory leak in 'pdr'.
parent
c7b68c5e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
src/proof/pdr/pdrCore.c
+7
-6
No files found.
src/proof/pdr/pdrCore.c
View file @
408ce468
...
...
@@ -378,7 +378,7 @@ int ZPdr_ManDown( Pdr_Man_t * p, int k, Pdr_Set_t ** ppCube, Pdr_Set_t * pPred,
ctgAttempts
=
0
;
while
(
p
->
pPars
->
fCtgs
&&
RetValue
==
0
&&
k
>
1
&&
ctgAttempts
<
3
)
{
pCtg
=
Pdr_SetDup
(
pPred
);
pCtg
=
Pdr_SetDup
(
pPred
);
//Check CTG for inductiveness
if
(
Pdr_SetIsInit
(
pCtg
,
-
1
)
)
{
...
...
@@ -392,7 +392,7 @@ int ZPdr_ManDown( Pdr_Man_t * p, int k, Pdr_Set_t ** ppCube, Pdr_Set_t * pPred,
*
added
=
1
;
}
ctgAttempts
++
;
CtgRetValue
=
Pdr_ManCheckCube
(
p
,
k
-
1
,
pCtg
,
NULL
,
p
->
pPars
->
nConfLimit
,
0
,
1
);
CtgRetValue
=
Pdr_ManCheckCube
(
p
,
k
-
1
,
pCtg
,
NULL
,
p
->
pPars
->
nConfLimit
,
0
,
1
);
if
(
CtgRetValue
!=
1
)
{
Pdr_SetDeref
(
pCtg
);
...
...
@@ -430,7 +430,8 @@ int ZPdr_ManDown( Pdr_Man_t * p, int k, Pdr_Set_t ** ppCube, Pdr_Set_t * pPred,
// add clause
for
(
i
=
1
;
i
<=
l
;
i
++
)
Pdr_ManSolverAddClause
(
p
,
i
,
pCubeMin
);
RetValue
=
Pdr_ManCheckCube
(
p
,
k
,
*
ppCube
,
&
pPred
,
p
->
pPars
->
nConfLimit
,
0
,
1
);
Pdr_SetDeref
(
pPred
);
RetValue
=
Pdr_ManCheckCube
(
p
,
k
,
*
ppCube
,
&
pPred
,
p
->
pPars
->
nConfLimit
,
0
,
1
);
assert
(
RetValue
>=
0
);
Pdr_SetDeref
(
pCtg
);
if
(
RetValue
==
1
)
...
...
@@ -464,7 +465,7 @@ int ZPdr_ManDown( Pdr_Man_t * p, int k, Pdr_Set_t ** ppCube, Pdr_Set_t * pPred,
printf
(
"Failed initiation
\n
"
);
return
0
;
}
RetValue
=
Pdr_ManCheckCube
(
p
,
k
,
*
ppCube
,
&
pPred
,
p
->
pPars
->
nConfLimit
,
0
,
1
);
RetValue
=
Pdr_ManCheckCube
(
p
,
k
,
*
ppCube
,
&
pPred
,
p
->
pPars
->
nConfLimit
,
0
,
1
);
if
(
RetValue
==
-
1
)
return
-
1
;
if
(
RetValue
==
1
)
...
...
@@ -598,8 +599,8 @@ int Pdr_ManGeneralize( Pdr_Man_t * p, int k, Pdr_Set_t * pCube, Pdr_Set_t ** ppP
{
if
(
p
->
pPars
->
fSkipDown
)
continue
;
pCubeCpy
=
Pdr_SetCreateFrom
(
pCubeMin
,
i
);
RetValue
=
ZPdr_ManDown
(
p
,
k
,
&
pCubeCpy
,
pPred
,
keep
,
pCubeMin
,
&
added
);
pCubeCpy
=
Pdr_SetCreateFrom
(
pCubeMin
,
i
);
RetValue
=
ZPdr_ManDown
(
p
,
k
,
&
pCubeCpy
,
pPred
,
keep
,
pCubeMin
,
&
added
);
if
(
p
->
pPars
->
fCtgs
)
//CTG handling code messes up with the internal order array
pOrder
=
Pdr_ManSortByPriority
(
p
,
pCubeMin
);
...
...
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