Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
abc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kestrel Collaboration
Kestrel Tooling
abc
Commits
2e92256f
Commit
2e92256f
authored
Nov 22, 2020
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Passing conflict limit to &cec.
parent
4757c7fe
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
src/base/abci/abc.c
src/base/abci/abc.c
+2
-2
src/proof/cec/cecSatG2.c
src/proof/cec/cecSatG2.c
+2
-1
No files found.
src/base/abci/abc.c
View file @
2e92256f
...
...
@@ -37227,8 +37227,8 @@ int Abc_CommandAbc9Cec( Abc_Frame_t * pAbc, int argc, char ** argv )
if ( fUseNew )
{
abctime clk = Abc_Clock();
extern Gia_Man_t * Cec4_ManSimulateTest3( Gia_Man_t * p, int fVerbose );
Gia_Man_t * pNew = Cec4_ManSimulateTest3( pMiter, pPars->fVerbose );
extern Gia_Man_t * Cec4_ManSimulateTest3( Gia_Man_t * p, int
nBTLimit, int
fVerbose );
Gia_Man_t * pNew = Cec4_ManSimulateTest3( pMiter, pPars->
nBTLimit, pPars->
fVerbose );
if ( Gia_ManAndNum(pNew) == 0 )
Abc_Print( 1, "Networks are equivalent. " );
else
src/proof/cec/cecSatG2.c
View file @
2e92256f
...
...
@@ -1802,12 +1802,13 @@ void Cec4_ManSimulateTest2( Gia_Man_t * p, int fVerbose )
if
(
fVerbose
)
Abc_PrintTime
(
1
,
"New choice computation time"
,
Abc_Clock
()
-
clk
);
}
Gia_Man_t
*
Cec4_ManSimulateTest3
(
Gia_Man_t
*
p
,
int
fVerbose
)
Gia_Man_t
*
Cec4_ManSimulateTest3
(
Gia_Man_t
*
p
,
int
nBTLimit
,
int
fVerbose
)
{
Gia_Man_t
*
pNew
=
NULL
;
Cec_ParFra_t
ParsFra
,
*
pPars
=
&
ParsFra
;
Cec4_ManSetParams
(
pPars
);
pPars
->
fVerbose
=
fVerbose
;
pPars
->
nBTLimit
=
nBTLimit
;
Cec4_ManPerformSweeping
(
p
,
pPars
,
&
pNew
);
return
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