MCPcopy Create free account
hub / github.com/OpenFOAM/OpenFOAM-dev / writeTable

Function writeTable

src/OpenFOAM/graph/graph.C:206–218  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

204
205
206void 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
221void Foam::graph::write(Ostream& os, const word& format) const

Callers 1

writer.CFile · 0.85

Calls 3

setwFunction · 0.85
forAllFunction · 0.50
forAllConstIterFunction · 0.50

Tested by

no test coverage detected