From 5aa3025ce7264a172a070a78d7b7db0cd1fca3f0 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Wed, 21 Nov 2018 13:12:01 -0800 Subject: Adding switch &w -n to modify the comment section of the AIGER file written. --- src/proof/cec/cecSeq.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/proof/cec/cecSeq.c') diff --git a/src/proof/cec/cecSeq.c b/src/proof/cec/cecSeq.c index f39fb2a4..81420e03 100644 --- a/src/proof/cec/cecSeq.c +++ b/src/proof/cec/cecSeq.c @@ -401,14 +401,14 @@ int Cec_ManSeqSemiformal( Gia_Man_t * pAig, Cec_ParSmf_t * pPars ) } // write equivalence classes - Gia_AigerWrite( pAig, "gore.aig", 0, 0 ); + Gia_AigerWrite( pAig, "gore.aig", 0, 0, 0 ); // reduce the model pReduce = Gia_ManSpecReduce( pAig, 0, 0, 1, 0, 0 ); if ( pReduce ) { pReduce = Gia_ManSeqStructSweep( pAux = pReduce, 1, 1, 0 ); Gia_ManStop( pAux ); - Gia_AigerWrite( pReduce, "gsrm.aig", 0, 0 ); + Gia_AigerWrite( pReduce, "gsrm.aig", 0, 0, 0 ); // Abc_Print( 1, "Speculatively reduced model was written into file \"%s\".\n", "gsrm.aig" ); // Gia_ManPrintStatsShort( pReduce ); Gia_ManStop( pReduce ); -- cgit v1.2.3