| 1075 | } |
| 1076 | |
| 1077 | void ideal::format_print(ofstream& output) const |
| 1078 | { |
| 1079 | #ifdef SUPPORT_DRIVEN_METHODS_EXTENDED |
| 1080 | |
| 1081 | for(int i=0;i<Number_of_Lists;i++) |
| 1082 | generators[i].ordered_format_print(output,w); |
| 1083 | |
| 1084 | #endif // SUPPORT_DRIVEN_METHODS_EXTENDED |
| 1085 | |
| 1086 | #ifdef NO_SUPPORT_DRIVEN_METHODS_EXTENDED |
| 1087 | |
| 1088 | generators.ordered_format_print(output,w); |
| 1089 | |
| 1090 | #endif // NO_SUPPORT_DRIVEN_METHODS_EXTENDED |
| 1091 | } |
| 1092 | #endif // IDEAL_CC |
nothing calls this directly
no test coverage detected