// ---------------------------------------------------------------------
//
-// Copyright (C) 2002 - 2015 by the deal.II authors
+// Copyright (C) 2002 - 2016 by the deal.II authors
//
// This file is part of the deal.II library.
//
// ---------------------------------------------------------------------
-// read in a 2d file in the UNV format used by the Salome program
+// read in a Triangulation<2,3> from a mesh file writtent in the UCD format
-// the meshes used here were generated by Valentin Zingan using the Salome
-// mesh generator
+// the meshe used here were generated by Andrea Mola
#include "../tests.h"
#include <deal.II/dofs/dof_handler.h>
#include <iomanip>
#include <string>
-std::ofstream logfile("output");
-
-
int main ()
{
- deallog << std::setprecision (2);
- logfile << std::setprecision (2);
- deallog.attach(logfile);
- deallog.threshold_double(1.e-10);
+ initlog();
std::string name(std::string(SOURCE_DIR "/grids/kcs_initial.inp"));
- //deallog<<"Filename: "<<name<<std::endl;
std::ifstream in;
in.open(name.c_str());