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
881b5a24
Commit
881b5a24
authored
Feb 08, 2019
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add skip feature to CEX printing.
parent
4d838e75
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletions
+9
-1
src/base/io/io.c
+9
-1
No files found.
src/base/io/io.c
View file @
881b5a24
...
@@ -2292,6 +2292,14 @@ ABC_NAMESPACE_IMPL_END
...
@@ -2292,6 +2292,14 @@ ABC_NAMESPACE_IMPL_END
ABC_NAMESPACE_IMPL_START
ABC_NAMESPACE_IMPL_START
int
Abc_NtkCheckSpecialPi
(
Abc_Ntk_t
*
pNtk
)
{
Abc_Obj_t
*
pObj
;
int
i
;
Abc_NtkForEachPi
(
pNtk
,
pObj
,
i
)
if
(
!
strcmp
(
Abc_ObjName
(
pObj
),
"_abc_190121_abc_"
)
)
return
1
;
return
0
;
}
/**Function*************************************************************
/**Function*************************************************************
...
@@ -2448,7 +2456,7 @@ int IoCommandWriteCex( Abc_Frame_t * pAbc, int argc, char **argv )
...
@@ -2448,7 +2456,7 @@ int IoCommandWriteCex( Abc_Frame_t * pAbc, int argc, char **argv )
}
}
fprintf
(
pFile
,
"
\n
"
);
fprintf
(
pFile
,
"
\n
"
);
fprintf
(
pFile
,
"# COUNTEREXAMPLE LENGTH: %u
\n
"
,
pCex
->
iFrame
+
1
);
fprintf
(
pFile
,
"# COUNTEREXAMPLE LENGTH: %u
\n
"
,
pCex
->
iFrame
+
1
);
if
(
fUseFfNames
)
if
(
fUseFfNames
&&
Abc_NtkCheckSpecialPi
(
pNtk
)
)
{
{
int
*
pValues
;
int
*
pValues
;
int
nXValues
=
0
,
iFlop
=
0
,
iPivotPi
=
-
1
;
int
nXValues
=
0
,
iFlop
=
0
,
iPivotPi
=
-
1
;
...
...
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