-
-//---------------------------- template.cc ---------------------------
+//----------------------------------------------------------------------
// $Id$
-// Version: $Name$
+// Version: $Name$
//
-// Copyright (C) 2005, 2008 by the deal.II authors
+// Copyright (C) 2005, 2008, 2011 by the deal.II authors
//
// This file is subject to QPL and may not be distributed
// without copyright and license information. Please refer
// to the file deal.II/doc/license.html for the text and
// further information on this license.
//
-//---------------------------- template.cc ---------------------------
+//----------------------------------------------------------------------
-// a short (a few lines) description of what the program does
+// see what happens when creating a surface mesh and then refining it
#include "../tests.h"
#include <fstream>
gi.attach_triangulation (tria);
std::ifstream in (filename.c_str());
gi.read_ucd (in);
-
+
GridOut grid_out;
grid_out.set_flags (GridOutFlags::Ucd(true));
for(unsigned int cycle=0; cycle<3; ++cycle) {
}
}
-int main ()
+int main ()
{
deallog.attach(logfile);
deallog.depth_console(0);
-
+
deallog << "Test<1,2>" << std::endl;
test<1,2>("grids/circle_1.inp");
-
+
deallog << std::endl << "Test<1,2>" << std::endl;
test<2,3>("grids/sphere_1.inp");
return 0;
}
-
+