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
33261c33
Commit
33261c33
authored
Feb 11, 2012
by
Baruch Sterin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pyabc: replace 'bool' with 'int' as it was removed from the rest of ABC
parent
c395afe2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
src/python/pyabc.i
+8
-8
No files found.
src/python/pyabc.i
View file @
33261c33
...
...
@@ -89,7 +89,7 @@ int n_latches()
return -1;
}
bool
has_comb_model()
int
has_comb_model()
{
Abc_Frame_t* pAbc = Abc_FrameGetGlobalFrame();
Abc_Ntk_t * pNtk = Abc_FrameReadNtk(pAbc);
...
...
@@ -97,7 +97,7 @@ bool has_comb_model()
return pNtk && pNtk->pModel;
}
bool
has_seq_model()
int
has_seq_model()
{
Abc_Frame_t* pAbc = Abc_FrameGetGlobalFrame();
Abc_Ntk_t * pNtk = Abc_FrameReadNtk(pAbc);
...
...
@@ -117,7 +117,7 @@ int prob_status()
return Abc_FrameReadProbStatus(pAbc);
}
bool
is_valid_cex()
int
is_valid_cex()
{
Abc_Frame_t* pAbc = Abc_FrameGetGlobalFrame();
Abc_Ntk_t * pNtk = Abc_FrameReadNtk(pAbc);
...
...
@@ -125,7 +125,7 @@ bool is_valid_cex()
return pNtk && Abc_FrameReadCex(pAbc) && Abc_NtkIsValidCex( pNtk, Abc_FrameReadCex(pAbc) );
}
bool
is_true_cex()
int
is_true_cex()
{
Abc_Frame_t* pAbc = Abc_FrameGetGlobalFrame();
Abc_Ntk_t * pNtk = Abc_FrameReadNtk(pAbc);
...
...
@@ -546,14 +546,14 @@ int n_latches();
int run_command(char* cmd);
bool
has_comb_model();
bool
has_seq_model();
int
has_comb_model();
int
has_seq_model();
int n_bmc_frames();
int prob_status();
bool
is_valid_cex();
bool
is_true_cex();
int
is_valid_cex();
int
is_true_cex();
int n_cex_pis();
int n_cex_regs();
int cex_po();
...
...
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