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
bab462d5
Commit
bab462d5
authored
Sep 13, 2020
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Compiler warnings.
parent
07bf95f4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/aig/gia/giaSimBase.c
+1
-1
src/base/acb/acbUtil.c
+1
-1
No files found.
src/aig/gia/giaSimBase.c
View file @
bab462d5
...
...
@@ -2104,7 +2104,7 @@ void Gia_ManSimGen( Gia_Man_t * pGia )
Gia_ManForEachCiId
(
pGia
,
Id
,
i
)
{
word
*
pSim
=
Vec_WrdEntryP
(
vSim0
,
i
*
nWords
);
unsigned
*
pSimU
=
(
unsigned
*
)
pSim
;
//
unsigned * pSimU = (unsigned *)pSim;
for
(
k
=
0
;
k
<
nWords
;
k
++
)
fprintf
(
pFile
,
" unsigned long s%07d_%d = ((unsigned long)rand() << 48) | ((unsigned long)rand() << 32) | ((unsigned long)rand() << 16) | (unsigned long)rand();
\n
"
,
Id
,
k
);
}
...
...
src/base/acb/acbUtil.c
View file @
bab462d5
...
...
@@ -1151,7 +1151,7 @@ void Acb_Ntk4CollectRing( Acb_Ntk_t * pNtk, Vec_Int_t * vStart, Vec_Int_t * vRes
}
void
Acb_Ntk4DumpWeightsInt
(
Acb_Ntk_t
*
pNtk
,
Vec_Int_t
*
vObjs
,
char
*
pFileName
)
{
int
i
,
iObj
,
Count
=
0
;
//, Weight;
int
i
,
iObj
;
//
, Count = 0;//, Weight;
Vec_Int_t
*
vDists
,
*
vStart
,
*
vNexts
;
FILE
*
pFile
=
fopen
(
pFileName
,
"wb"
);
if
(
pFile
==
NULL
)
...
...
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