| 204 | |
| 205 | |
| 206 | void Foam::graph::writeTable(Ostream& os) const |
| 207 | { |
| 208 | forAll(x_, xi) |
| 209 | { |
| 210 | os << setw(10) << x_[xi]; |
| 211 | |
| 212 | forAllConstIter(graph, *this, iter) |
| 213 | { |
| 214 | os << token::SPACE << setw(10) << (*iter())[xi]; |
| 215 | } |
| 216 | os << endl; |
| 217 | } |
| 218 | } |
| 219 | |
| 220 | |
| 221 | void Foam::graph::write(Ostream& os, const word& format) const |
no test coverage detected