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
135bf3ec
Commit
135bf3ec
authored
Oct 28, 2014
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Compiler warnings.
parent
c556baa9
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
10 additions
and
10 deletions
+10
-10
src/aig/ivy/ivyRwr.c
+1
-1
src/aig/ivy/ivySeq.c
+1
-1
src/base/abci/abcRec3.c
+1
-2
src/bool/rpo/rpo.c
+1
-2
src/bool/rpo/rpo.h
+2
-0
src/misc/extra/extraUtilSupp.c
+1
-1
src/opt/rwr/rwrEva.c
+1
-1
src/sat/bsat/satSolver.h
+2
-2
No files found.
src/aig/ivy/ivyRwr.c
View file @
135bf3ec
...
...
@@ -163,7 +163,7 @@ int Ivy_NodeRewrite( Ivy_Man_t * pMan, Rwt_Man_t * p, Ivy_Obj_t * pNode, int fUp
char
*
pPerm
;
int
Required
,
nNodesSaved
;
int
nNodesSaveCur
=
-
1
;
// Suppress "might be used uninitialized"
int
i
,
c
,
GainCur
,
GainBest
=
-
1
;
int
i
,
c
,
GainCur
=
-
1
,
GainBest
=
-
1
;
abctime
clk
,
clk2
;
p
->
nNodesConsidered
++
;
...
...
src/aig/ivy/ivySeq.c
View file @
135bf3ec
...
...
@@ -156,7 +156,7 @@ int Ivy_NodeRewriteSeq( Ivy_Man_t * pMan, Rwt_Man_t * p, Ivy_Obj_t * pNode, int
char
*
pPerm
;
int
nNodesSaved
;
int
nNodesSaveCur
=
-
1
;
// Suppress "might be used uninitialized"
int
i
,
c
,
GainCur
,
GainBest
=
-
1
;
int
i
,
c
,
GainCur
=
-
1
,
GainBest
=
-
1
;
abctime
clk
,
clk2
;
//, clk3;
p
->
nNodesConsidered
++
;
...
...
src/base/abci/abcRec3.c
View file @
135bf3ec
...
...
@@ -1430,4 +1430,4 @@ void Abc_NtkRecStop3()
////////////////////////////////////////////////////////////////////////
ABC_NAMESPACE_IMPL_END
\ No newline at end of file
ABC_NAMESPACE_IMPL_END
src/bool/rpo/rpo.c
View file @
135bf3ec
...
...
@@ -380,4 +380,4 @@ Literal_t* Rpo_Recursion(unsigned* target, Literal_t** vecLit, int nLit, int nLi
return
result
;
}
ABC_NAMESPACE_IMPL_END
\ No newline at end of file
ABC_NAMESPACE_IMPL_END
src/bool/rpo/rpo.h
View file @
135bf3ec
...
...
@@ -55,4 +55,5 @@ ABC_NAMESPACE_HEADER_END
#endif
\ No newline at end of file
src/misc/extra/extraUtilSupp.c
View file @
135bf3ec
...
...
@@ -402,7 +402,7 @@ static inline int Abc_SuppCountOnes64( word i )
}
int
Abc_SuppFindVar
(
Vec_Wec_t
*
pS
,
Vec_Wec_t
*
pD
,
int
nVars
)
{
int
v
,
vBest
=
-
1
,
dBest
;
int
v
,
vBest
=
-
1
,
dBest
=
-
1
;
for
(
v
=
0
;
v
<
nVars
;
v
++
)
{
if
(
Vec_WecLevelSize
(
pS
,
v
)
)
...
...
src/opt/rwr/rwrEva.c
View file @
135bf3ec
...
...
@@ -68,7 +68,7 @@ int Rwr_NodeRewrite( Rwr_Man_t * p, Cut_Man_t * pManCut, Abc_Obj_t * pNode, int
char
*
pPerm
;
int
Required
,
nNodesSaved
;
int
nNodesSaveCur
=
-
1
;
// Suppress "might be used uninitialized"
int
i
,
GainCur
,
GainBest
=
-
1
;
int
i
,
GainCur
=
-
1
,
GainBest
=
-
1
;
abctime
clk
,
clk2
;
//, Counter;
p
->
nNodesConsidered
++
;
...
...
src/sat/bsat/satSolver.h
View file @
135bf3ec
...
...
@@ -211,8 +211,8 @@ static void sat_solver_act_var_clear(sat_solver* s)
{
int
i
;
for
(
i
=
0
;
i
<
s
->
size
;
i
++
)
s
->
activity
[
i
]
=
0
.
0
;
s
->
var_inc
=
1
.
0
;
s
->
activity
[
i
]
=
0
;
s
->
var_inc
=
1
;
}
static
void
sat_solver_compress
(
sat_solver
*
s
)
{
...
...
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