diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2012-03-02 13:49:49 -0800 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2012-03-02 13:49:49 -0800 |
commit | a0933b1643d216ec401983580d896ab7d70669de (patch) | |
tree | 93d52bca83d88d1b8414a4865f2873b4c0c59089 /src/map/mapper | |
parent | 7e805e5c9ac3794b469f7bfe21bd933f49689afb (diff) | |
download | abc-a0933b1643d216ec401983580d896ab7d70669de.tar.gz abc-a0933b1643d216ec401983580d896ab7d70669de.tar.bz2 abc-a0933b1643d216ec401983580d896ab7d70669de.zip |
Adding switch -N to 'super' to set an upper bound on the number of supergates generated.
Diffstat (limited to 'src/map/mapper')
-rw-r--r-- | src/map/mapper/mapperLib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/mapper/mapperLib.c b/src/map/mapper/mapperLib.c index a4476bdd..c8b677bf 100644 --- a/src/map/mapper/mapperLib.c +++ b/src/map/mapper/mapperLib.c @@ -203,7 +203,7 @@ int Map_SuperLibDeriveFromGenlib( Mio_Library_t * pLib ) sprintf( FileNameSuper, "%s.super", pNameGeneric ); ABC_FREE( pNameGeneric ); - sprintf( CommandSuper, "super -l 1 -i 5 -d 10000000 -a 10000000 -t 100 %s", FileNameGenlib ); + sprintf( CommandSuper, "super -L 1 -I 5 -D 10000000 -A 10000000 -T 100 %s", FileNameGenlib ); if ( Cmd_CommandExecute( pAbc, CommandSuper ) ) { ABC_FREE( FileNameGenlib ); |