Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
abc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kestrel Collaboration
Kestrel Tooling
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
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/aig/gia/giaSimBase.c
src/aig/gia/giaSimBase.c
+1
-1
src/base/acb/acbUtil.c
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