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
1e34a38b
Commit
1e34a38b
authored
May 19, 2013
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
g++ warnings.
parent
6ad94cd9
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
src/aig/aig/aigRet.c
+1
-1
src/aig/gia/giaIso.c
+1
-1
src/opt/sfm/sfmWin.c
+1
-1
src/proof/llb/llb2Flow.c
+1
-1
src/proof/ssc/sscSim.c
+1
-1
src/sat/cnf/cnfFast.c
+1
-1
No files found.
src/aig/aig/aigRet.c
View file @
1e34a38b
...
...
@@ -277,7 +277,7 @@ void Rtm_ObjAddFirst2( Rtm_Man_t * p, Rtm_Edg_t * pEdge, Rtm_Init_t Val )
void
Rtm_PrintEdge
(
Rtm_Man_t
*
p
,
Rtm_Edg_t
*
pEdge
)
{
// unsigned LData = pEdge->LData;
printf
(
"%d : "
,
pEdge
->
nLats
);
printf
(
"%d : "
,
(
int
)
pEdge
->
nLats
);
/*
if ( pEdge->nLats > 10 )
Extra_PrintBinary( stdout, p->pExtra + pEdge->LData, 2*(pEdge->nLats+1) );
...
...
src/aig/gia/giaIso.c
View file @
1e34a38b
...
...
@@ -511,7 +511,7 @@ void Gia_IsoSimulateBack( Gia_IsoMan_t * p, int Iter )
***********************************************************************/
void
Gia_IsoAssignOneClass2
(
Gia_IsoMan_t
*
p
)
{
int
i
,
iBegin
,
nSize
=
-
1
;
int
i
,
iBegin
=
-
1
,
nSize
=
-
1
;
// find two variable class
assert
(
Vec_IntSize
(
p
->
vClasses
)
>
0
);
Vec_IntForEachEntryDouble
(
p
->
vClasses
,
iBegin
,
nSize
,
i
)
...
...
src/opt/sfm/sfmWin.c
View file @
1e34a38b
...
...
@@ -112,7 +112,7 @@ int Sfm_NtkWindow( Sfm_Ntk_t * p, int iNode )
void
Sfm_NtkWin2Sat
(
Sfm_Ntk_t
*
p
)
{
Vec_Int_t
*
vClause
;
int
RetValue
,
Lit
,
iNode
,
iFanin
,
i
,
k
;
int
RetValue
,
Lit
,
iNode
=
-
1
,
iFanin
,
i
,
k
;
sat_solver
*
pSat0
=
sat_solver_new
();
sat_solver
*
pSat1
=
sat_solver_new
();
sat_solver_setnvars
(
pSat0
,
1
+
Vec_IntSize
(
p
->
vLeaves
)
+
Vec_IntSize
(
p
->
vNodes
)
+
2
*
Vec_IntSize
(
p
->
vTfo
)
+
Vec_IntSize
(
p
->
vRoots
)
);
...
...
src/proof/llb/llb2Flow.c
View file @
1e34a38b
...
...
@@ -523,7 +523,7 @@ void Llb_ManCutPrint( Aig_Man_t * p, Vec_Ptr_t * vLower, Vec_Ptr_t * vUpper )
***********************************************************************/
void
Llb_ManResultPrint
(
Aig_Man_t
*
p
,
Vec_Ptr_t
*
vResult
)
{
Vec_Ptr_t
*
vLower
,
*
vUpper
;
Vec_Ptr_t
*
vLower
,
*
vUpper
=
NULL
;
int
i
;
Vec_PtrForEachEntryReverse
(
Vec_Ptr_t
*
,
vResult
,
vLower
,
i
)
{
...
...
src/proof/ssc/sscSim.c
View file @
1e34a38b
...
...
@@ -179,7 +179,7 @@ void Ssc_GiaPrintPiPatterns( Gia_Man_t * p )
{
Gia_Obj_t
*
pObj
;
word
*
pSimAig
;
int
i
,
nWords
=
Gia_ObjSimWords
(
p
);
int
i
;
//
, nWords = Gia_ObjSimWords( p );
Gia_ManForEachCi
(
p
,
pObj
,
i
)
{
pSimAig
=
Gia_ObjSimObj
(
p
,
pObj
);
...
...
src/sat/cnf/cnfFast.c
View file @
1e34a38b
...
...
@@ -147,7 +147,7 @@ word Cnf_CutDeriveTruth( Aig_Man_t * p, Vec_Ptr_t * vLeaves, Vec_Ptr_t * vNodes
};
static
word
C
[
2
]
=
{
0
,
~
(
word
)
0
};
static
word
S
[
256
];
Aig_Obj_t
*
pObj
;
Aig_Obj_t
*
pObj
=
NULL
;
int
i
;
assert
(
Vec_PtrSize
(
vLeaves
)
<=
6
&&
Vec_PtrSize
(
vNodes
)
>
0
);
assert
(
Vec_PtrSize
(
vLeaves
)
+
Vec_PtrSize
(
vNodes
)
<=
256
);
...
...
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