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
c9635d02
Commit
c9635d02
authored
Oct 04, 2013
by
Niklas Een
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added 'abort' message in bridge mode for pdr -a timeout
parent
f24a4e1a
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
8 deletions
+30
-8
src/misc/util/utilBridge.c
+30
-8
src/proof/pdr/pdrCore.c
+0
-0
No files found.
src/misc/util/utilBridge.c
View file @
c9635d02
...
...
@@ -34,15 +34,19 @@ ABC_NAMESPACE_IMPL_START
/// DECLARATIONS ///
////////////////////////////////////////////////////////////////////////
#define BRIDGE_TEXT_MESSAGE 999996
#define BRIDGE_RESULTS 101
//#define BRIDGE_NETLIST 106
//#define BRIDGE_ABS_NETLIST 107
#define BRIDGE_BAD_ABS 105
#define BRIDGE_TEXT_MESSAGE 999996
#define BRIDGE_ABORT 5
#define BRIDGE_PROGRESS 3
#define BRIDGE_RESULTS 101
#define BRIDGE_BAD_ABS 105
//#define BRIDGE_NETLIST 106
//#define BRIDGE_ABS_NETLIST 107
#define BRIDGE_VALUE_X 0
#define BRIDGE_VALUE_0 2
#define BRIDGE_VALUE_1 3
#define BRIDGE_VALUE_X 0
#define BRIDGE_VALUE_0 2
#define BRIDGE_VALUE_1 3
////////////////////////////////////////////////////////////////////////
/// FUNCTION DEFINITIONS ///
...
...
@@ -166,6 +170,22 @@ int Gia_ManToBridgeText( FILE * pFile, int Size, unsigned char * pBuffer )
Gia_CreateHeader
(
pFile
,
BRIDGE_TEXT_MESSAGE
,
Size
,
pBuffer
);
return
1
;
}
int
Gia_ManToBridgeAbort
(
FILE
*
pFile
,
int
Size
,
unsigned
char
*
pBuffer
)
{
Gia_CreateHeader
(
pFile
,
BRIDGE_ABORT
,
Size
,
pBuffer
);
return
1
;
}
int
Gia_ManToBridgeProgress
(
FILE
*
pFile
,
int
Size
,
unsigned
char
*
pBuffer
)
{
Gia_CreateHeader
(
pFile
,
BRIDGE_PROGRESS
,
Size
,
pBuffer
);
return
1
;
}
int
Gia_ManToBridgeAbsNetlist
(
FILE
*
pFile
,
void
*
p
,
int
pkg_type
)
{
Vec_Str_t
*
vBuffer
;
...
...
@@ -174,6 +194,8 @@ int Gia_ManToBridgeAbsNetlist( FILE * pFile, void * p, int pkg_type )
Vec_StrFree
(
vBuffer
);
return
1
;
}
int
Gia_ManToBridgeBadAbs
(
FILE
*
pFile
)
{
Gia_CreateHeader
(
pFile
,
BRIDGE_BAD_ABS
,
0
,
NULL
);
...
...
src/proof/pdr/pdrCore.c
View file @
c9635d02
This diff is collapsed.
Click to expand it.
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