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
3169bd96
Commit
3169bd96
authored
Dec 05, 2016
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Compiler warnings.
parent
6a351c4d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
src/aig/miniaig/minilut.h
+2
-2
src/base/abci/abc.c
+1
-1
src/proof/acec/acecPolyn.c
+1
-1
No files found.
src/aig/miniaig/minilut.h
View file @
3169bd96
...
...
@@ -214,8 +214,8 @@ static Mini_Lut_t * Mini_LutLoad( char * pFileName )
p
->
nSize
=
p
->
nCap
=
nSize
;
RetValue
=
fread
(
&
p
->
nRegs
,
sizeof
(
int
),
1
,
pFile
);
RetValue
=
fread
(
&
p
->
LutSize
,
sizeof
(
int
),
1
,
pFile
);
p
->
pArray
=
MINI_LUT_ALLOC
(
int
,
p
->
nCap
*
p
->
LutSize
);
p
->
pTruths
=
MINI_LUT_ALLOC
(
int
,
p
->
nCap
*
Mini_LutWordNum
(
p
->
LutSize
)
);
p
->
pArray
=
MINI_LUT_ALLOC
(
int
,
p
->
nCap
*
p
->
LutSize
);
p
->
pTruths
=
MINI_LUT_ALLOC
(
unsigned
,
p
->
nCap
*
Mini_LutWordNum
(
p
->
LutSize
)
);
RetValue
=
fread
(
p
->
pArray
,
sizeof
(
int
),
p
->
nCap
*
p
->
LutSize
,
pFile
);
RetValue
=
fread
(
p
->
pTruths
,
sizeof
(
int
),
p
->
nCap
*
Mini_LutWordNum
(
p
->
LutSize
),
pFile
);
fclose
(
pFile
);
...
...
src/base/abci/abc.c
View file @
3169bd96
...
...
@@ -11867,7 +11867,7 @@ int Abc_CommandTestColor( Abc_Frame_t * pAbc, int argc, char ** argv )
***********************************************************************/
int
Abc_CommandTest
(
Abc_Frame_t
*
pAbc
,
int
argc
,
char
**
argv
)
{
Abc_Ntk_t
*
pNtk
=
Abc_FrameReadNtk
(
pAbc
);
//
Abc_Ntk_t * pNtk = Abc_FrameReadNtk(pAbc);
int
nCutMax
=
1
;
int
nLeafMax
=
4
;
int
nDivMax
=
2
;
src/proof/acec/acecPolyn.c
View file @
3169bd96
...
...
@@ -429,7 +429,7 @@ void Gia_PolynBuild2( Gia_Man_t * pGia, int fSigned, int fVerbose, int fVeryVerb
{
Hsh_VecMan_t
*
pHashC
=
Hsh_VecManStart
(
1000
);
// hash table for constants
Hsh_VecMan_t
*
pHashM
=
Hsh_VecManStart
(
1000
);
// hash table for monomials
Vec_Wec_t
*
vLit2Mono
=
Vec_WecStart
(
Gia_ManObjNum
(
pGia
)
*
2
);
//
Vec_Wec_t * vLit2Mono = Vec_WecStart( Gia_ManObjNum(pGia) * 2 );
Hsh_VecManStop
(
pHashC
);
Hsh_VecManStop
(
pHashM
);
...
...
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