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
cf5d4ad0
Commit
cf5d4ad0
authored
Dec 21, 2016
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Converting some errors into warnings.
parent
cb49c5d0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
src/base/abci/abc.c
+2
-2
src/base/abci/abcMfs.c
+1
-1
No files found.
src/base/abci/abc.c
View file @
cf5d4ad0
...
@@ -19532,7 +19532,7 @@ int Abc_CommandSeqSweep( Abc_Frame_t * pAbc, int argc, char ** argv )
...
@@ -19532,7 +19532,7 @@ int Abc_CommandSeqSweep( Abc_Frame_t * pAbc, int argc, char ** argv )
if
(
Abc_NtkIsComb
(
pNtk
)
)
if
(
Abc_NtkIsComb
(
pNtk
)
)
{
{
Abc_Print
(
-
1
,
"The network is combinational (run
\"
fraig
\"
or
\"
fraig_sweep
\"
).
\n
"
);
Abc_Print
(
0
,
"The network is combinational (run
\"
fraig
\"
or
\"
fraig_sweep
\"
).
\n
"
);
return
0
;
return
0
;
}
}
...
@@ -31954,7 +31954,7 @@ int Abc_CommandAbc9Scorr( Abc_Frame_t * pAbc, int argc, char ** argv )
...
@@ -31954,7 +31954,7 @@ int Abc_CommandAbc9Scorr( Abc_Frame_t * pAbc, int argc, char ** argv )
}
}
if
(
Gia_ManRegNum
(
pAbc
->
pGia
)
==
0
)
if
(
Gia_ManRegNum
(
pAbc
->
pGia
)
==
0
)
{
{
Abc_Print
(
-
1
,
"The network is combinational.
\n
"
);
Abc_Print
(
0
,
"The network is combinational.
\n
"
);
return
0
;
return
0
;
}
}
pTemp
=
Cec_ManLSCorrespondence
(
pAbc
->
pGia
,
pPars
);
pTemp
=
Cec_ManLSCorrespondence
(
pAbc
->
pGia
,
pPars
);
src/base/abci/abcMfs.c
View file @
cf5d4ad0
...
@@ -259,7 +259,7 @@ int Abc_NtkPerformMfs( Abc_Ntk_t * pNtk, Sfm_Par_t * pPars )
...
@@ -259,7 +259,7 @@ int Abc_NtkPerformMfs( Abc_Ntk_t * pNtk, Sfm_Par_t * pPars )
if
(
nFaninMax
>
6
)
if
(
nFaninMax
>
6
)
{
{
Abc_Print
(
1
,
"Currently
\"
mfs
\"
cannot process the network containing nodes with more than 6 fanins.
\n
"
);
Abc_Print
(
1
,
"Currently
\"
mfs
\"
cannot process the network containing nodes with more than 6 fanins.
\n
"
);
return
0
;
return
1
;
}
}
if
(
!
Abc_NtkHasSop
(
pNtk
)
)
if
(
!
Abc_NtkHasSop
(
pNtk
)
)
if
(
!
Abc_NtkToSop
(
pNtk
,
-
1
,
ABC_INFINITY
)
)
if
(
!
Abc_NtkToSop
(
pNtk
,
-
1
,
ABC_INFINITY
)
)
...
...
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