28 #ifndef BZ_PRETTYPRINT_H
29 #define BZ_PRETTYPRINT_H
37 prettyPrintFormat(
const bool terse =
false)
38 : tersePrintingSelected_(terse)
40 arrayOperandCounter_ = 0;
41 scalarOperandCounter_ = 0;
42 dumpArrayShapes_ =
false;
46 char nextArrayOperandSymbol()
48 return static_cast<char>(
'A' + ((arrayOperandCounter_++) % 26));
50 char nextScalarOperandSymbol()
52 return static_cast<char>(
's' + ((scalarOperandCounter_++) % 26));
67 #endif // BZ_PRETTYPRINT_H