- Nov 10, 2017
-
-
Martin Nolte authored
add capability hasEntityIterator Closes #38 See merge request !230 (cherry picked from commit e50f64ae) 8f3bb0d1 add capability hasEntityIterator
-
Andreas Dedner authored
-
Andreas Dedner authored
-
- Nov 08, 2017
-
-
Martin Nolte authored
Merge branch 'feature/yaspgrid-subindex-for-all-codims' into 'master' See merge request !234
-
Steffen Müthing authored
[yaspgrid] implement method `subIndex` for entities of all codimensions See merge request !227 (cherry picked from commit 6fbaa500) c276b928 [yaspgrid] implement method `subIndex` for entities of all codimensions 2e977f9d [yasp] Use more readable code when building tables
-
- Nov 07, 2017
-
-
Andreas Dedner authored
Merge branch 'bugfix/fix-compiler-warnings' into 'master' See merge request !233
-
Andreas Dedner authored
Merge branch 'fix-overlap-exception' into 'master' See merge request !232
-
Fix a few compiler warnings See merge request core/dune-grid!231 (cherry picked from commit e9f22289) 9f57c267 [mcmgmapper] Fix deprecation warning about GeometryType b90007a4 [gridcheck] Fix unhandled case in switch warning flagged by clang 5
-
- Nov 01, 2017
-
-
Martin Nolte authored
Merge branch 'uggrid-dont-use-size-in-scatter' into 'master' See merge request core/dune-grid!226
-
Martin Nolte authored
Scatter method shall not call dataHandle.size See merge request core/dune-grid!225 (cherry picked from commit 56b86683) ab930ba4 Scatter method shall not call dataHandle.size
-
- Oct 31, 2017
-
-
Martin Nolte authored
.gitlab-ci.yml: build against releases/2.6 branch of other modules See merge request core/dune-grid!220
-
- Oct 29, 2017
-
-
Andreas Dedner authored
add a method to return the gridView instance on the MCMGMapper See merge request !222 (cherry picked from commit a17b7dda) f80f079f add a method to return the gridView instance on the MCMGMapper
-
- Oct 20, 2017
-
-
Ansgar Burchardt authored
-
- Oct 14, 2017
-
-
Martin Nolte authored
metnion changes to MCMGMapper in CHANGELOG See merge request core/dune-grid!219
-
Andreas Dedner authored
-
Andreas Dedner authored
-
Martin Nolte authored
Always enable DUNE_GRID_EXPERIMENTAL_GRID_EXTENSIONS See merge request core/dune-grid!155
-
- Oct 13, 2017
-
-
Martin Nolte authored
-
Marco Agnese authored
remove CheckExperimentalGridExtenions and set the deprecated variable DUNE_GRID_EXPERIMENTAL_GRID_EXTENSIONS always to true
-
Marco Agnese authored
-
Martin Nolte authored
-
Robert K authored
bugfix for checkidset for empty grids. [bugfix][checkidset] check whether begin != end before dereferencing See merge request core/dune-grid!218
-
Robert K authored
iterator.
-
Marco Agnese authored
-
Martin Nolte authored
-
Martin Nolte authored
Modify the MCMGMapper to store multiple dofs per geometry type See merge request !215
-
- Oct 10, 2017
-
-
Oliver Sander authored
Improve idset documentation See merge request !217
-
Oliver Sander authored
-
Oliver Sander authored
I wanted to state a few assumptions on the IdType that have been implicit all these years, like copy-assignability of and default constructibility. I ended up rewriting most of the class documentation of the IdSet class, which hadn't been touched in a long time. I hope my changes are for the better.
-
- Oct 05, 2017
-
-
Ansgar Burchardt authored
[Yasp] StructuredGridFactory specialization should return `unique_ptr` See merge request !216
-
Ansgar Burchardt authored
f96b091d changed the StructuredGridFactory to return a `unique_ptr` instead of a `shared_ptr`. This patch implements the same change for the Yasp's specialization of the `StructuredGridFactory`.
-
Andreas Dedner authored
generic datahandle class based on the mapper and a dense vector: - size(geometryType) to return the number of dofs for a given geometry type - types(codim) return a range over all geometry types of the given codimension on which data is attached
-
Andreas Dedner authored
This patch modifies MCMGMapper such that multiple indices may be allocated per geometry type. To this end, the layout function does no longer return a bool but the number of indices to allocate for a given geometry type. Old layout functions continue to work, because `bool` implicitly casts into `std::size_t` such that `true` is 1 and `false` is 0 so that exactly one index is allocated, if the geometry type was included in the layout. Semantic enhancements: - The `index` method returns the first index allocated for a geometry type - The `contains` method returns whether at least one index was allocated for a geometry type (and fills in the first index). - a new method `indices` returns an IntegralRange containing all indices allocated for a given geometry type. It can be used in a range-based-for like this: ``` for( auto i : mapper.indices( element ) ) doSomething( i ); ```
-
- Sep 24, 2017
-
-
Andreas Dedner authored
communicate boundary data on GridPtr::loadBalance See merge request !213
-
Andreas Dedner authored
[ci] Stop testing with Debian 8 See merge request !209
-
Andreas Dedner authored
Make method MessageBufferIF::read non-const See merge request !214
-
- Sep 22, 2017
-
-
Ansgar Burchardt authored
StructuredGridFactory: return `unique_ptr` instead of `shared_ptr` See merge request !212
-
- Sep 21, 2017
-
-
Oliver Sander authored
The method CommDataHandleIF::scatter receives a non-const reference to the message buffer. This reference is non-const because reading from the buffer advances the internal iterator, and hence changes the buffer state. However, the MessageBufferIF claims that the read method is const. This patch removes the const to make the interface consistent.
-
- Sep 20, 2017
-
-
Martin Nolte authored
-