- GridGenerator::laplace_transformation.
- The version of GridGenerator::parallelogram where the corners are given
as a rank-2 tensor rather than as an array of points.
+ - DataOutBase::create_xdmf_entry with 3 arguments.
</ol>
<li> Removed: The config.h file no longer exports HAVE_* definitions.
*/
void write_deal_II_intermediate (std::ostream &out) const;
- /**
- * Create an XDMFEntry based on the data in this DataOutInterface.
- * @deprecated: use create_xdmf_entry(DataOutFilter, ...) instead
- */
- XDMFEntry create_xdmf_entry (const std::string &h5_filename,
- const double cur_time,
- MPI_Comm comm) const DEAL_II_DEPRECATED;
-
/**
* Create an XDMFEntry based on the data in the data_filter. This assumes
* the mesh and solution data were written to a single file. See
}
-template <int dim, int spacedim>
-XDMFEntry DataOutInterface<dim,spacedim>::
-create_xdmf_entry (const std::string &h5_filename, const double cur_time, MPI_Comm comm) const
-{
- DataOutBase::DataOutFilter data_filter(DataOutBase::DataOutFilterFlags(false, true));
- write_filtered_data(data_filter);
- return create_xdmf_entry(data_filter, h5_filename, cur_time, comm);
-}
-
-
-
template <int dim, int spacedim>
XDMFEntry DataOutInterface<dim,spacedim>::
create_xdmf_entry (const DataOutBase::DataOutFilter &data_filter,