| 191 | } |
| 192 | |
| 193 | void SimpleDeltaSequence::output_one(ostream &out, |
| 194 | const SimpleDeltaSequence::ValuePair *p) |
| 195 | { |
| 196 | assert(p); |
| 197 | int value = p->get_value(); |
| 198 | int bound = p->get_bound(); |
| 199 | out << value << sep_char_ << bound; |
| 200 | out << std::endl; |
| 201 | } |
| 202 | |
| 203 | void |
| 204 | SimpleDeltaSequence::get_sequence(ostream &out) |