summaryrefslogtreecommitdiffstats
path: root/src/sop/ft
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2005-09-01 08:01:00 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2005-09-01 08:01:00 -0700
commit9c98ba1794a2422f1be8202d615633e1c8e74b10 (patch)
tree1ba2fa5e41276af419164f6eff3192b6bebaa47c /src/sop/ft
parentab7cb9c6ad52934b80e44f2bb5ae94049a5a4ae5 (diff)
downloadabc-9c98ba1794a2422f1be8202d615633e1c8e74b10.tar.gz
abc-9c98ba1794a2422f1be8202d615633e1c8e74b10.tar.bz2
abc-9c98ba1794a2422f1be8202d615633e1c8e74b10.zip
Version abc50901
Diffstat (limited to 'src/sop/ft')
-rw-r--r--src/sop/ft/ftFactor.c1
-rw-r--r--src/sop/ft/ftPrint.c35
2 files changed, 9 insertions, 27 deletions
diff --git a/src/sop/ft/ftFactor.c b/src/sop/ft/ftFactor.c
index 19f70e36..0a32e1c8 100644
--- a/src/sop/ft/ftFactor.c
+++ b/src/sop/ft/ftFactor.c
@@ -19,6 +19,7 @@
#include "abc.h"
#include "mvc.h"
#include "ft.h"
+#include "dec.h"
////////////////////////////////////////////////////////////////////////
/// DECLARATIONS ///
diff --git a/src/sop/ft/ftPrint.c b/src/sop/ft/ftPrint.c
index e08ceaae..78f91b8f 100644
--- a/src/sop/ft/ftPrint.c
+++ b/src/sop/ft/ftPrint.c
@@ -46,9 +46,8 @@ static int Ft_FactorPrintOutputName( FILE * pFile, char * pNameOut, int fComp
void Ft_FactorPrint( FILE * pFile, Vec_Int_t * vForm, char * pNamesIn[], char * pNameOut )
{
Ft_Node_t * pNode;
- char Buffer[5];
- int Pos, i, LitSizeMax, LitSizeCur, nVars;
- int fMadeupNames;
+ Vec_Ptr_t * vNamesIn = NULL;
+ int LitSizeMax, LitSizeCur, nVars, Pos, i;
// sanity checks
nVars = Ft_FactorGetNumVars( vForm );
@@ -56,27 +55,13 @@ void Ft_FactorPrint( FILE * pFile, Vec_Int_t * vForm, char * pNamesIn[], char *
assert( vForm->nSize > nVars );
// create the names if not given by the user
- fMadeupNames = 0;
if ( pNamesIn == NULL )
{
- fMadeupNames = 1;
- pNamesIn = ALLOC( char *, nVars );
- for ( i = 0; i < nVars; i++ )
- {
- if ( nVars < 26 )
- {
- Buffer[0] = 'a' + i;
- Buffer[1] = 0;
- }
- else
- {
- Buffer[0] = 'a' + i%26;
- Buffer[1] = '0' + i/26;
- Buffer[2] = 0;
- }
- pNamesIn[i] = util_strsav( Buffer );
- }
+ vNamesIn = Abc_NodeGetFakeNames( nVars );
+ pNamesIn = (char **)vNamesIn->pArray;
}
+ if ( pNameOut == NULL )
+ pNameOut = "F";
// get the size of the longest literal
LitSizeMax = 0;
@@ -103,12 +88,8 @@ void Ft_FactorPrint( FILE * pFile, Vec_Int_t * vForm, char * pNamesIn[], char *
}
fprintf( pFile, "\n" );
- if ( fMadeupNames )
- {
- for ( i = 0; i < nVars; i++ )
- free( pNamesIn[i] );
- free( pNamesIn );
- }
+ if ( vNamesIn )
+ Abc_NodeFreeNames( vNamesIn );
}
/**Function*************************************************************