| 265 | } |
| 266 | |
| 267 | void vtkXMLStatisticalModelWriter::WriteInlinePieceAttributes() |
| 268 | { |
| 269 | vtkStatisticalModel* input = this->GetModelInput(); |
| 270 | this->WriteScalarAttribute( |
| 271 | "NumberOfLearnedTables", input->GetNumberOfTables(vtkStatisticalModel::Learned)); |
| 272 | this->WriteScalarAttribute( |
| 273 | "NumberOfDerivedTables", input->GetNumberOfTables(vtkStatisticalModel::Derived)); |
| 274 | } |
| 275 | |
| 276 | void vtkXMLStatisticalModelWriter::WriteInlinePiece(vtkIndent indent) |
| 277 | { |
no test coverage detected