~corrado-maurini/dolfin/tao

« back to all changes in this revision

Viewing changes to dolfin/mesh/SubMesh.h

  • Committer: corrado maurini
  • Date: 2012-12-18 12:16:08 UTC
  • mfrom: (6685.78.207 trunk)
  • Revision ID: corrado.maurini@upmc.fr-20121218121608-nk82ly9jgsld9u84
updating with trunk, fix uint in TAO solver and hacking the check for tao FindTAO.cmake

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
    SubMesh(const Mesh& mesh, const SubDomain& sub_domain);
45
45
 
46
46
    /// Create subset of given mesh marked by mesh function
47
 
    SubMesh(const Mesh& mesh, const MeshFunction<unsigned int>& sub_domains,
48
 
            uint sub_domain);
 
47
    SubMesh(const Mesh& mesh, const MeshFunction<std::size_t>& sub_domains,
 
48
            std::size_t sub_domain);
49
49
 
50
50
    /// Destructor
51
51
    ~SubMesh();
53
53
  private:
54
54
 
55
55
    /// Create sub mesh
56
 
    void init(const Mesh& mesh, const MeshFunction<uint>& sub_domains, uint sub_domain);
 
56
    void init(const Mesh& mesh, const MeshFunction<std::size_t>& sub_domains, std::size_t sub_domain);
57
57
 
58
58
  };
59
59