AssertThrow(cell_ids == deserialized,
ExcMessage("Serialization with boost binary archives failed."));
deallog << "Serialization with boost binary archives successful."
- << std::endl
- << " Buffer size in bytes: " << size_in_bytes(buffer) << std::endl;
+ << std::endl;
+ std::cout << " Buffer size in bytes: " << size_in_bytes(buffer)
+ << std::endl;
}
}
AssertThrow(cell_ids == deserialized,
ExcMessage("Serialization with Utilities failed."));
- deallog << "Serialization with Utilities successful." << std::endl
- << " Buffer size in bytes: " << size_in_bytes(buffer) << std::endl;
+ deallog << "Serialization with Utilities successful." << std::endl;
+ std::cout << " Buffer size in bytes: " << size_in_bytes(buffer)
+ << std::endl;
}
AssertThrow(cell_ids == deserialized,
ExcMessage("Serialization with binary representation failed."));
deallog << "Serialization with binary representation successful."
- << std::endl
- << " Buffer size in bytes: " << size_in_bytes(buffer) << std::endl;
+ << std::endl;
+ std::cout << " Buffer size in bytes: " << size_in_bytes(buffer)
+ << std::endl;
}
deallog << "OK" << std::endl;
DEAL::Creation successful.
DEAL:: Number of CellId objects: 256
DEAL::Serialization with boost binary archives successful.
-DEAL:: Buffer size in bytes: 11875
DEAL::Serialization with Utilities successful.
-DEAL:: Buffer size in bytes: 10264
DEAL::Serialization with binary representation successful.
-DEAL:: Buffer size in bytes: 4120
DEAL::OK