~pefarrell/dolfin/r7060

« back to all changes in this revision

Viewing changes to dolfin/mesh/Mesh.h

  • Committer: Garth N. Wells
  • Date: 2012-10-27 22:06:18 UTC
  • mfrom: (7004.1.30 phdf5)
  • Revision ID: gnw20@cam.ac.uk-20121027220618-es4bw3lx2lzi8sj1
Merge HDF5 branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
138
138
    ///         No example code available for this function.
139
139
    uint num_vertices() const { return _topology.size(0); }
140
140
 
141
 
    /// Get number of locally owned vertices
142
 
    /// *Returns*
143
 
    ///     uint
144
 
    ///         Number of locally owned vertices.
145
 
    ///
146
 
    /// *Example*
147
 
    ///     .. note::
148
 
    ///
149
 
    ///         No example code available for this function.
150
 
    uint num_owned_vertices() const;
151
 
 
152
 
    std::vector<uint> owned_vertices() const;
153
 
 
154
 
 
155
141
    /// Get number of edges in mesh.
156
142
    ///
157
143
    /// *Returns*