From 14a1587e400eff7a481f4187ae68a09dfca69c3e Mon Sep 17 00:00:00 2001 From: wolf Date: Mon, 18 Apr 2005 21:43:13 +0000 Subject: [PATCH] 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 --- deal.II/examples/step-18/step-18.cc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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); } -- 2.39.5