~corrado-maurini/dolfin/tao

« back to all changes in this revision

Viewing changes to dolfin/adaptivity/adapt.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:
87
87
  const GenericFunction& adapt(const GenericFunction& function,
88
88
                               boost::shared_ptr<const Mesh> adapted_mesh);
89
89
 
90
 
  /// Refine mesh function<uint> based on mesh
91
 
  const MeshFunction<unsigned int>& adapt(const MeshFunction<unsigned int>& mesh_function,
 
90
  /// Refine mesh function<std::size_t> based on mesh
 
91
  const MeshFunction<std::size_t>& adapt(const MeshFunction<std::size_t>& mesh_function,
92
92
                                  boost::shared_ptr<const Mesh> adapted_mesh);
93
93
 
94
94
  //--- Refinement of boundary conditions ---
99
99
                           const FunctionSpace& S);
100
100
 
101
101
  /// Helper function for refinement of boundary conditions
102
 
  void adapt_markers(std::vector<std::pair<unsigned int, unsigned int> >& refined_markers,
 
102
  void adapt_markers(std::vector<std::pair<std::size_t, std::size_t> >& refined_markers,
103
103
                     const Mesh& adapted_mesh,
104
 
                     const std::vector<std::pair<unsigned int, unsigned int> >& markers,
 
104
                     const std::vector<std::pair<std::size_t, std::size_t> >& markers,
105
105
                     const Mesh& mesh);
106
106
 
107
107
  //--- Refinement of forms ---