Prints everything in *this SEAM.
| 158 | |
| 159 | // Prints everything in *this SEAM. |
| 160 | void SEAM::Print(const char* label) const { |
| 161 | tprintf(label); |
| 162 | tprintf(" %6.2f @ (%d,%d), p=%d, n=%d ", priority_, location_.x, location_.y, |
| 163 | widthp_, widthn_); |
| 164 | for (int s = 0; s < num_splits_; ++s) { |
| 165 | splits_[s].Print(); |
| 166 | if (s + 1 < num_splits_) tprintf(", "); |
| 167 | } |
| 168 | tprintf("\n"); |
| 169 | } |
| 170 | |
| 171 | // Prints a collection of SEAMs. |
| 172 | /* static */ |
no outgoing calls
no test coverage detected