From: wolf Date: Mon, 18 Apr 2005 21:43:13 +0000 (+0000) Subject: Write in d2 format again, since that can be converted with step-19 now. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=14a1587e400eff7a481f4187ae68a09dfca69c3e;p=dealii-svn.git Write in d2 format again, since that can be converted with step-19 now. git-svn-id: https://svn.dealii.org/trunk@10515 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-18/step-18.cc b/deal.II/examples/step-18/step-18.cc index e3c723fae1..20276f92bb 100644 --- a/deal.II/examples/step-18/step-18.cc +++ b/deal.II/examples/step-18/step-18.cc @@ -1872,8 +1872,7 @@ namespace QuasiStaticElasticity // format. To determine it, we // use the same function that has // already been used in step-13: -//TODO - filename << data_out.default_suffix(DataOut::gmv); + filename << data_out.default_suffix(DataOut::deal_II_intermediate); // With the so-completed // filename, let us open a file @@ -1881,8 +1880,7 @@ namespace QuasiStaticElasticity // generated into it, using the // intermediate format: std::ofstream output (filename.str().c_str()); -//TODO - data_out.write_gmv (output); + data_out.write_deal_II_intermediate (output); }