~ubuntu-branches/ubuntu/natty/dolfin/natty

« back to all changes in this revision

Viewing changes to dolfin/mesh/MeshHierarchyAlgorithms.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Johannes Ring
  • Date: 2011-02-24 10:34:44 UTC
  • mfrom: (1.1.7 upstream) (14.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20110224103444-n3fwnmh32lfoske0
Tags: 0.9.10-1
* New upstream release. This release fixes bug "FTBFS: error:
  'SCOTCH_Dgraph' was not declared in this scope" (closes: #612602).
* debian/control:
  - Add libslepc3.1-dev and libboost-thread-dev to Build-Depends and
    Depends field in binary package libdolfin0-dev.
  - Bump build dependency on python-ufc to >= 2.0.0.
  - Remove Build-Depends-Indep field as upstream no longer ships the
    user manual.
  - Remove old fields Conflicts, Provides, and Replaces from
    libdolfin0-dev, libdolfin0, libdolfin0-dbg, and python-dolfin.
* Remove all patches as they are now incorporated upstream.
* Add dolfin-plot and dolfin-version to debian/dolfin-bin.install.
* Remove .doc-base file since the user manual is removed by upstream.
* Remove targets clean and install/dolfin-doc from debian/rules since
  they are no longer needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
#include <dolfin/math/dolfin_math.h>
7
7
#include <dolfin/log/dolfin_log.h>
 
8
#include "Cell.h"
 
9
#include "Edge.h"
8
10
#include "Mesh.h"
9
 
#include "MeshTopology.h"
10
 
#include "MeshGeometry.h"
11
11
#include "MeshConnectivity.h"
12
12
#include "MeshEditor.h"
 
13
#include "MeshHierarchy.h"
13
14
#include "MeshFunction.h"
 
15
#include "MeshGeometry.h"
 
16
#include "MeshTopology.h"
14
17
#include "Vertex.h"
15
 
#include "Edge.h"
16
 
#include "Cell.h"
17
 
#include "MeshHierarchy.h"
18
18
#include "MeshHierarchyAlgorithms.h"
19
19
 
20
20
using namespace dolfin;