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
184c5d4e
Commit
184c5d4e
authored
Jun 28, 2013
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding timeout to the interpolant computation procedure.
parent
e93cfb18
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
23 additions
and
4 deletions
+23
-4
src/aig/aig/aigInter.c
+1
-1
src/proof/int/intM114.c
+3
-1
src/sat/bsat/satInterA.c
+18
-1
src/sat/bsat/satStore.h
+1
-1
No files found.
src/aig/aig/aigInter.c
View file @
184c5d4e
...
...
@@ -271,7 +271,7 @@ timeSat += Abc_Clock() - clk;
// create the resulting manager
clk
=
Abc_Clock
();
pManInter
=
Inta_ManAlloc
();
pRes
=
(
Aig_Man_t
*
)
Inta_ManInterpolate
(
pManInter
,
(
Sto_Man_t
*
)
pSatCnf
,
vVarsAB
,
fVerbose
);
pRes
=
(
Aig_Man_t
*
)
Inta_ManInterpolate
(
pManInter
,
(
Sto_Man_t
*
)
pSatCnf
,
0
,
vVarsAB
,
fVerbose
);
Inta_ManFree
(
pManInter
);
timeInt
+=
Abc_Clock
()
-
clk
;
/*
...
...
src/proof/int/intM114.c
View file @
184c5d4e
...
...
@@ -304,11 +304,13 @@ clk = Abc_Clock();
*/
pManInterA
=
Inta_ManAlloc
();
p
->
pInterNew
=
(
Aig_Man_t
*
)
Inta_ManInterpolate
(
pManInterA
,
(
Sto_Man_t
*
)
pSatCnf
,
p
->
vVarsAB
,
0
);
p
->
pInterNew
=
(
Aig_Man_t
*
)
Inta_ManInterpolate
(
pManInterA
,
(
Sto_Man_t
*
)
pSatCnf
,
nTimeNewOut
,
p
->
vVarsAB
,
0
);
Inta_ManFree
(
pManInterA
);
p
->
timeInt
+=
Abc_Clock
()
-
clk
;
Sto_ManFree
(
(
Sto_Man_t
*
)
pSatCnf
);
if
(
p
->
pInterNew
==
NULL
)
RetValue
=
-
1
;
return
RetValue
;
}
...
...
src/sat/bsat/satInterA.c
View file @
184c5d4e
...
...
@@ -948,7 +948,7 @@ void Inta_ManPrepareInter( Inta_Man_t * p )
SeeAlso []
***********************************************************************/
void
*
Inta_ManInterpolate
(
Inta_Man_t
*
p
,
Sto_Man_t
*
pCnf
,
void
*
vVarsAB
,
int
fVerbose
)
void
*
Inta_ManInterpolate
(
Inta_Man_t
*
p
,
Sto_Man_t
*
pCnf
,
abctime
TimeToStop
,
void
*
vVarsAB
,
int
fVerbose
)
{
Aig_Man_t
*
pRes
;
Aig_Obj_t
*
pObj
;
...
...
@@ -956,6 +956,9 @@ void * Inta_ManInterpolate( Inta_Man_t * p, Sto_Man_t * pCnf, void * vVarsAB, in
int
RetValue
=
1
;
abctime
clkTotal
=
Abc_Clock
();
if
(
Abc_Clock
()
>
TimeToStop
)
return
NULL
;
// check that the CNF makes sense
assert
(
pCnf
->
nVars
>
0
&&
pCnf
->
nClauses
>
0
);
p
->
pCnf
=
pCnf
;
...
...
@@ -980,7 +983,15 @@ void * Inta_ManInterpolate( Inta_Man_t * p, Sto_Man_t * pCnf, void * vVarsAB, in
// write the root clauses
Sto_ManForEachClauseRoot
(
p
->
pCnf
,
pClause
)
{
Inta_ManProofWriteOne
(
p
,
pClause
);
if
(
TimeToStop
&&
Abc_Clock
()
>
TimeToStop
)
{
Aig_ManStop
(
pRes
);
p
->
pAig
=
NULL
;
return
NULL
;
}
}
// propagate root level assignments
if
(
Inta_ManProcessRoots
(
p
)
)
...
...
@@ -995,6 +1006,12 @@ void * Inta_ManInterpolate( Inta_Man_t * p, Sto_Man_t * pCnf, void * vVarsAB, in
RetValue
=
0
;
break
;
}
if
(
TimeToStop
&&
Abc_Clock
()
>
TimeToStop
)
{
Aig_ManStop
(
pRes
);
p
->
pAig
=
NULL
;
return
NULL
;
}
}
}
...
...
src/sat/bsat/satStore.h
View file @
184c5d4e
...
...
@@ -130,7 +130,7 @@ extern int Int_ManInterpolate( Int_Man_t * p, Sto_Man_t * pCnf, int fVe
typedef
struct
Inta_Man_t_
Inta_Man_t
;
extern
Inta_Man_t
*
Inta_ManAlloc
();
extern
void
Inta_ManFree
(
Inta_Man_t
*
p
);
extern
void
*
Inta_ManInterpolate
(
Inta_Man_t
*
p
,
Sto_Man_t
*
pCnf
,
void
*
vVarsAB
,
int
fVerbose
);
extern
void
*
Inta_ManInterpolate
(
Inta_Man_t
*
p
,
Sto_Man_t
*
pCnf
,
abctime
TimeToStop
,
void
*
vVarsAB
,
int
fVerbose
);
/*=== satInterB.c ==========================================================*/
typedef
struct
Intb_Man_t_
Intb_Man_t
;
...
...
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