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
323229a4
Commit
323229a4
authored
May 02, 2023
by
MyskYko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix build
parent
ce3843ec
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
60 additions
and
20 deletions
+60
-20
abclib.dsp
+16
-0
src/aig/gia/giaNewBdd.h
+30
-14
src/aig/gia/giaNewTt.h
+14
-6
No files found.
abclib.dsp
View file @
323229a4
...
...
@@ -5107,6 +5107,14 @@ SOURCE=.\src\aig\gia\giaMuxes.c
# End Source File
# Begin Source File
SOURCE=.\src\aig\gia\giaNewBdd.h
# End Source File
# Begin Source File
SOURCE=.\src\aig\gia\giaNewTt.h
# End Source File
# Begin Source File
SOURCE=.\src\aig\gia\giaNf.c
# End Source File
# Begin Source File
...
...
@@ -5303,6 +5311,14 @@ SOURCE=.\src\aig\gia\giaTtopt.cpp
# End Source File
# Begin Source File
SOURCE=.\src\aig\gia\giaTransduction.cpp
# End Source File
# Begin Source File
SOURCE=.\src\aig\gia\giaTransduction.h
# End Source File
# Begin Source File
SOURCE=.\src\aig\gia\giaUnate.c
# End Source File
# Begin Source File
...
...
src/aig/gia/giaNewBdd.h
View file @
323229a4
...
...
@@ -137,20 +137,36 @@ namespace NewBdd {
};
struct
Param
{
int
nObjsAllocLog
=
20
;
int
nObjsMaxLog
=
25
;
int
nUniqueSizeLog
=
10
;
double
UniqueDensity
=
4
;
int
nCacheSizeLog
=
15
;
int
nCacheMaxLog
=
20
;
int
nCacheVerbose
=
0
;
bool
fCountOnes
=
false
;
int
nGbc
=
0
;
bvar
nReo
=
BvarMax
();
double
MaxGrowth
=
1
.
2
;
bool
fReoVerbose
=
false
;
int
nVerbose
=
0
;
std
::
vector
<
var
>
*
pVar2Level
=
NULL
;
int
nObjsAllocLog
;
int
nObjsMaxLog
;
int
nUniqueSizeLog
;
double
UniqueDensity
;
int
nCacheSizeLog
;
int
nCacheMaxLog
;
int
nCacheVerbose
;
bool
fCountOnes
;
int
nGbc
;
bvar
nReo
;
double
MaxGrowth
;
bool
fReoVerbose
;
int
nVerbose
;
std
::
vector
<
var
>
*
pVar2Level
;
Param
()
{
nObjsAllocLog
=
20
;
nObjsMaxLog
=
25
;
nUniqueSizeLog
=
10
;
UniqueDensity
=
4
;
nCacheSizeLog
=
15
;
nCacheMaxLog
=
20
;
nCacheVerbose
=
0
;
fCountOnes
=
false
;
nGbc
=
0
;
nReo
=
BvarMax
();
MaxGrowth
=
1
.
2
;
fReoVerbose
=
false
;
nVerbose
=
0
;
pVar2Level
=
NULL
;
}
};
class
Man
{
...
...
src/aig/gia/giaNewTt.h
View file @
323229a4
...
...
@@ -22,12 +22,20 @@ namespace NewTt {
static
inline
size
SizeMax
()
{
return
std
::
numeric_limits
<
size
>::
max
();
}
struct
Param
{
int
nObjsAllocLog
=
15
;
int
nObjsMaxLog
=
20
;
int
nVerbose
=
0
;
bool
fCountOnes
=
false
;
int
nGbc
=
0
;
int
nReo
=
BvarMax
();
// dummy
int
nObjsAllocLog
;
int
nObjsMaxLog
;
int
nVerbose
;
bool
fCountOnes
;
int
nGbc
;
int
nReo
;
// dummy
Param
()
{
nObjsAllocLog
=
15
;
nObjsMaxLog
=
20
;
nVerbose
=
0
;
fCountOnes
=
false
;
nGbc
=
0
;
nReo
=
BvarMax
();
}
};
class
Man
{
...
...
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