From: bangerth Date: Fri, 12 Jan 2007 16:55:47 +0000 (+0000) Subject: Undo accidental checkin. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5a711f642eefe7816127dd50de5cf34462226863;p=dealii-svn.git Undo accidental checkin. git-svn-id: https://svn.dealii.org/trunk@14306 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/deal.II/grid_in.cc b/tests/deal.II/grid_in.cc index 2b8552f87c..cb88cc6213 100644 --- a/tests/deal.II/grid_in.cc +++ b/tests/deal.II/grid_in.cc @@ -36,12 +36,11 @@ void test1 () Triangulation tria; GridIn gi; gi.attach_triangulation (tria); - std::ifstream in ("test.ucd"); + std::ifstream in ("grid_in_2d.inp"); gi.read_ucd (in); - - std::ofstream xx("xx"); + GridOut grid_out; - grid_out.write_gnuplot (tria, xx); + grid_out.write_ucd (tria, logfile); } @@ -113,8 +112,8 @@ int main () deallog.depth_console(0); deallog.threshold_double(1.e-10); - test1<3> (); -// test2<2> (); + test1<2> (); + test2<2> (); // test3 needs NetCDF // test3<2> ();