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
96c5b562
Commit
96c5b562
authored
Jun 27, 2017
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Not calling a changed API until it is fixed.
parent
584d52ba
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/aig/gia/giaSatEdge.c
+1
-1
src/aig/gia/giaSatLE.c
+1
-1
No files found.
src/aig/gia/giaSatEdge.c
View file @
96c5b562
...
...
@@ -459,7 +459,7 @@ void Seg_ManComputeDelay( Gia_Man_t * pGia, int DelayInit, int nFanouts, int fTw
sat_solver_set_runtime_limit
(
p
->
pSat
,
nTimeOut
?
nTimeOut
*
CLOCKS_PER_SEC
+
Abc_Clock
()
:
0
);
sat_solver_set_random
(
p
->
pSat
,
1
);
sat_solver_set_polarity
(
p
->
pSat
,
Vec_IntArray
(
p
->
vPolars
),
Vec_IntSize
(
p
->
vPolars
)
);
sat_solver_set_var_activity
(
p
->
pSat
,
NULL
,
p
->
nVars
);
//
sat_solver_set_var_activity( p->pSat, NULL, p->nVars );
// increment delay gradually
for
(
Delay
=
p
->
DelayMax
;
Delay
>=
0
;
Delay
--
)
{
...
...
src/aig/gia/giaSatLE.c
View file @
96c5b562
...
...
@@ -637,7 +637,7 @@ void Sle_ManDeriveCnf( Sle_Man_t * p, int nBTLimit, int fDynamic )
sat_solver_set_runtime_limit
(
p
->
pSat
,
nTimeOut
?
nTimeOut
*
CLOCKS_PER_SEC
+
Abc_Clock
()
:
0
);
sat_solver_set_random
(
p
->
pSat
,
1
);
sat_solver_set_polarity
(
p
->
pSat
,
Vec_IntArray
(
p
->
vPolars
),
Vec_IntSize
(
p
->
vPolars
)
);
sat_solver_set_var_activity
(
p
->
pSat
,
NULL
,
p
->
nVarsTotal
);
//
sat_solver_set_var_activity( p->pSat, NULL, p->nVarsTotal );
// set drivers to be mapped
Gia_ManForEachCoDriverId
(
p
->
pGia
,
iObj
,
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