~njansson/dolfin/hpc

« back to all changes in this revision

Viewing changes to src/mesh/BoundaryMesh.cpp

  • Committer: Niclas Jansson
  • Date: 2011-06-10 14:33:43 UTC
  • Revision ID: njansson@csc.kth.se-20110610143343-d21p4am8rghiojfm
Added rudimentary header to binary files

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
// Copyright (C) 2006-2008 Anders Logg.
2
2
// Licensed under the GNU LGPL Version 2.1.
3
3
//
 
4
// Modified by Niclas Jansson 2008.
 
5
//
4
6
// First added:  2006-06-21
5
 
// Last changed: 2008-05-28
 
7
// Last changed: 2008-06-26
6
8
 
7
9
#include <iostream>
8
10
 
9
11
#include <dolfin/log/log.h>
10
 
#include "BoundaryComputation.h"
11
 
#include "BoundaryMesh.h"
 
12
#include <dolfin/mesh/BoundaryComputation.h>
 
13
#include <dolfin/mesh/BoundaryMesh.h>
12
14
 
13
15
using namespace dolfin;
14
16
 
33
35
  BoundaryComputation::computeBoundary(mesh, *this);
34
36
}
35
37
//-----------------------------------------------------------------------------
 
38
void BoundaryMesh::init_local(Mesh& mesh)
 
39
{
 
40
  BoundaryComputation::computeLocalBoundary(mesh, *this);
 
41
}
 
42
//-----------------------------------------------------------------------------
 
43
void BoundaryMesh::init_interior(Mesh& mesh)
 
44
{
 
45
  BoundaryComputation::computeInteriorBoundary(mesh, *this);
 
46
}
 
47
//-----------------------------------------------------------------------------
 
48