Skip to content

Commit 00910e3

Browse files
committed
Fixing typos.
1 parent a5715bc commit 00910e3

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/base/abci/abc.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56846,17 +56846,17 @@ int Abc_CommandAbc9GenPrefix( Abc_Frame_t * pAbc, int argc, char ** argv )
5684656846
Abc_Print( -2, "\t generates a prefix adder with minimum depth\n" );
5684756847
Abc_Print( -2, "\t-N num : the bit-width of the adder [default = %d]\n", nBits );
5684856848
Abc_Print( -2, "\t-F num : the limit on the fanout count [default = %d]\n", nFans );
56849-
Abc_Print( -2, "\t-S num : the user's seed used to randomize search [default = %d]\n", Seed );
56850-
Abc_Print( -2, "\t-I num : the number of iterations to find the smallest prefix [default = %d]\n", nIters );
56851-
Abc_Print( -2, "\t-R num : the delay relaxation (the allowed level increase over log2(N)) [default = %d]\n", DelayRelax );
56849+
Abc_Print( -2, "\t-S num : the random seed used to randomize search [default = %d]\n", Seed );
56850+
Abc_Print( -2, "\t-I num : the number of iterations to find the smallest prefix tree [default = %d]\n", nIters );
56851+
Abc_Print( -2, "\t-R num : the delay relaxation (the max allowed level increase over log2(N)) [default = %d]\n", DelayRelax );
5685256852
Abc_Print( -2, "\t-d : toggles dumping the adder in Verilog [default = %s]\n", fDumpVer ? "yes": "no" );
5685356853
Abc_Print( -2, "\t-m : toggles dumping the miter in Verilog [default = %s]\n", fDumpMiter ? "yes": "no" );
5685456854
Abc_Print( -2, "\t-o : toggles using additional optimization [default = %s]\n", use_or ? "yes": "no" );
5685556855
Abc_Print( -2, "\t-v : toggles printing verbose information [default = %s]\n\n", fVerbose ? "yes": "no" );
5685656856
Abc_Print( -2, "\t The code of this command is contributed by Martin Povišer <povik@cutebit.org>\n\n" );
5685756857
Abc_Print( -2, "\t The implementation is inspired by S. Roy, M. Choudhury, R. Puri, D. Pan,\n" );
5685856858
Abc_Print( -2, "\t \"Polynomial time algorithm for area and power efficient adder synthesis\n" );
56859-
Abc_Print( -2, "\t in high-performance designs\", Proc. ASP-DAC 2025.\n" );
56859+
Abc_Print( -2, "\t in high-performance designs\", Proc. ASP-DAC 2015.\n" );
5686056860
Abc_Print( -2, "\t https://www.cerc.utexas.edu/utda/publications/C166.pdf\n" );
5686156861
return 1;
5686256862
}

src/misc/util/utilPrefix.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/*
2222
The implementation is inspired by S. Roy, M. Choudhury, R. Puri, D. Pan,
2323
"Polynomial time algorithm for area and power efficient adder synthesis
24-
in high-performance designs", Proc. ASP-DAC 2025.
24+
in high-performance designs", Proc. ASP-DAC 2015.
2525
2626
https://www.cerc.utexas.edu/utda/publications/C166.pdf
2727
*/

0 commit comments

Comments
 (0)