for (const auto &cell : tria.active_cell_iterators())
cell_ids.push_back(cell->id());
}
- deallog << "Creation successful." << std::endl
- << " Number of CellId objects: " << cell_ids.size() << std::endl;
+ deallog << "Creation successful." << std::endl;
+ std::cout << "Number of CellId objects: " << cell_ids.size() << std::endl;
//
ExcMessage("Serialization with boost binary archives failed."));
deallog << "Serialization with boost binary archives successful."
<< std::endl;
- std::cout << " Buffer size in bytes: " << size_in_bytes(buffer)
+ std::cout << "Buffer size in bytes with ..."
+ << " boost binary_archive : " << size_in_bytes(buffer)
<< std::endl;
}
AssertThrow(cell_ids == deserialized,
ExcMessage("Serialization with Utilities failed."));
deallog << "Serialization with Utilities successful." << std::endl;
- std::cout << " Buffer size in bytes: " << size_in_bytes(buffer)
+ std::cout << " Utilities : " << size_in_bytes(buffer)
<< std::endl;
}
ExcMessage("Serialization with binary representation failed."));
deallog << "Serialization with binary representation successful."
<< std::endl;
- std::cout << " Buffer size in bytes: " << size_in_bytes(buffer)
+ std::cout << " binary representation: " << size_in_bytes(buffer)
<< std::endl;
}
DEAL::Creation successful.
-DEAL:: Number of CellId objects: 256
DEAL::Serialization with boost binary archives successful.
DEAL::Serialization with Utilities successful.
DEAL::Serialization with binary representation successful.