~ubuntu-branches/ubuntu/utopic/dune-grid/utopic-proposed

« back to all changes in this revision

Viewing changes to src/gridinfo-gmsh/gridinfo-gmsh-alusimplex-3d.cc

  • Committer: Package Import Robot
  • Author(s): Ansgar Burchardt
  • Date: 2014-02-14 10:49:16 UTC
  • mfrom: (1.3.1) (5.1.4 experimental)
  • Revision ID: package-import@ubuntu.com-20140214104916-2clchnny3eu7ks4w
Tags: 2.3.0-2
InstallĀ /usr/share/dune-grid.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// -*- tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2
 
// vi: set et ts=8 sw=2 sts=2:
 
1
// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
 
2
// vi: set et ts=4 sw=2 sts=2:
3
3
 
4
4
#ifdef HAVE_CONFIG_H
5
5
#include "config.h"
10
10
#include <dune/grid/alugrid.hh>
11
11
 
12
12
const std::string programName = "dune-gridinfo-gmsh-alusimplex-3d";
13
 
typedef Dune::ALUSimplexGrid<3, 3> Grid;
 
13
typedef Dune::ALUGrid<3, 3, Dune::simplex, Dune::nonconforming> Grid;
14
14
 
15
15
#include <dune/grid/utility/gridinfo-gmsh-main.hh>