| 133 | } |
| 134 | |
| 135 | void Program::print_offline_cost() const |
| 136 | { |
| 137 | if (unknown_usage) |
| 138 | { |
| 139 | cerr << "Tape has unknown usage" << endl; |
| 140 | return; |
| 141 | } |
| 142 | |
| 143 | cerr << "Cost of first tape:" << endl; |
| 144 | offline_data_used.print_cost(); |
| 145 | } |
| 146 | |
| 147 | |
| 148 | ostream& operator<<(ostream& s,const Program& P) |