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
2a83a971
Commit
2a83a971
authored
Sep 28, 2013
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changing default values.
parent
797cb495
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
4 deletions
+11
-4
abc.rc
+1
-0
src/aig/gia/giaJf.c
+1
-1
src/base/abci/abc.c
+9
-3
No files found.
abc.rc
View file @
2a83a971
...
...
@@ -122,6 +122,7 @@ alias addinit "read_init; undc; strash; zero"
alias blif2aig "undc; strash; zero"
alias v2p "&vta_gla; &ps; &gla_derive; &put; w 1.aig; pdr -v"
alias g2p "&ps; &gla_derive; &put; w 2.aig; pdr -v"
alias &fx_ "&put; sweep; sop; fx; st; &get"
# resubstitution scripts for the IWLS paper
alias src_rw "st; rw -l; rwz -l; rwz -l"
...
...
src/aig/gia/giaJf.c
View file @
2a83a971
...
...
@@ -32,7 +32,7 @@ ABC_NAMESPACE_IMPL_START
/// DECLARATIONS ///
////////////////////////////////////////////////////////////////////////
#define JF_LEAF_MAX
6
#define JF_LEAF_MAX
8
#define JF_CUT_MAX 16
typedef
struct
Jf_Cut_t_
Jf_Cut_t
;
...
...
src/base/abci/abc.c
View file @
2a83a971
...
...
@@ -30074,16 +30074,22 @@ int Abc_CommandAbc9Jf( Abc_Frame_t * pAbc, int argc, char ** argv )
return
1
;
}
if
(
pPars
->
fCutMin
&&
!
Sdm_ManCanRead
()
)
if
(
(
pPars
->
fCutMin
||
pPars
->
fGenCnf
)
&&
pPars
->
nLutSize
>
6
)
{
Abc_Print
(
-
1
,
"Abc_CommandAbc9If2(): Cannot input DSD data from file.
\n
"
);
Abc_Print
(
-
1
,
"Abc_CommandAbc9Jf(): Cut minimization works for LUT6 or less.
\n
"
);
return
1
;
}
if
(
((
pPars
->
fCutMin
&&
pPars
->
fFuncDsd
)
||
pPars
->
fGenCnf
)
&&
!
Sdm_ManCanRead
()
)
{
Abc_Print
(
-
1
,
"Abc_CommandAbc9Jf(): Cannot input DSD data from file.
\n
"
);
return
1
;
}
pNew
=
Jf_ManPerformMapping
(
pAbc
->
pGia
,
pPars
);
if
(
pNew
==
NULL
)
{
Abc_Print
(
-
1
,
"Abc_CommandAbc9
If2
(): Mapping into LUTs has failed.
\n
"
);
Abc_Print
(
-
1
,
"Abc_CommandAbc9
Jf
(): Mapping into LUTs has failed.
\n
"
);
return
1
;
}
Abc_FrameUpdateGia
(
pAbc
,
pNew
);
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