- Mar 14, 2017
-
-
Oliver Sander authored
-
Oliver Sander authored
-
Oliver Sander authored
-
Oliver Sander authored
-
Oliver Sander authored
-
Oliver Sander authored
A small steps towards its complete removal. Without the deprecated methods it is easier to see the code that is still used.
-
Oliver Sander authored
Just to increase the pressure towards its complete removal.
-
- Mar 09, 2017
-
-
Ansgar Burchardt authored
test-parallel-ug: return 77 when run in parallel with sequential dune-uggrid See merge request !159
-
Ansgar Burchardt authored
-
- Mar 08, 2017
-
-
Oliver Sander authored
Remove unused parameter 'res' from CreateBoundarySegment See merge request !160
-
Christoph Grüninger authored
Remove implementation of removed `count<codim>()` template method See merge request !158
-
The method was removed from the `Entity` facade class in 0cfc8f31
-
Christoph Grüninger authored
gridinfo.hh: Use `subEntities(codim)` method instead of removed `count<codim>()` template method See merge request !157
-
- Mar 07, 2017
-
-
Ansgar Burchardt authored
-
Ansgar Burchardt authored
-
Ansgar Burchardt authored
-
Ansgar Burchardt authored
The `count<codim>()` template method was removed from the `Entity` facade class in 0cfc8f31
-
Oliver Sander authored
Cleanup UGGrid code See merge request !156
-
Robert K authored
-
- Mar 03, 2017
-
-
Ansgar Burchardt authored
-
Ansgar Burchardt authored
-
Ansgar Burchardt authored
The implementation is identical for both level and leaf intersections.
-
Ansgar Burchardt authored
-
Ansgar Burchardt authored
-
Ansgar Burchardt authored
-
Ansgar Burchardt authored
-
Ansgar Burchardt authored
The `WorldVector` and `FaceVector` typedefs are already used in some method declarations and in the implementation. This patch uses them consistently everywhere.
-
Ansgar Burchardt authored
-
Ansgar Burchardt authored
-
- Mar 01, 2017
-
-
Oliver Sander authored
The method signature of CreateBoundarySegment has change in dune-uggrid. The 'res' parameter was not actually used anywhere. Therefore it has been removed.
-
- Feb 28, 2017
-
-
Martin Nolte authored
[bugfix] avoid subscript operator on JacobianTransposed See merge request !154
-
- Feb 23, 2017
-
-
Martin Nolte authored
A geometry's JacobianTransposed implementation may be any type modelling a linear mapping, i.e., implementing the mv-type methods. Some grids (e.g., SPGrid) only implement this interface for performance reasons. However, we require that a JacobianTransposed can be assigned to a FieldMatrix. This patch fixes "checkCodim1Mapping" such that it will cast the JacobianTranposed down to a FieldMatrix before accessing the subscript operator (although the same result could be achieved using "mv").
-
- Feb 17, 2017
-
-
Ansgar Burchardt authored
UGGrid: append to-be-visited sons at the end of the list Closes #53 See merge request !150
-
Ansgar Burchardt authored
Handle unused boundary nodes correctly Closes #55 See merge request !152
-
Ansgar Burchardt authored
For "unused" boundary nodes the special value `-1` is used. Mapping this through `isBoundaryNode[-1]` would result in an out-of-bounds memory access and invalid values in the `vertices_c_style` array. Closes: #55
-
- Feb 16, 2017
-
-
Ansgar Burchardt authored
-
Ansgar Burchardt authored
-
Ansgar Burchardt authored
Based on the test case provided by Lasse Hinrichsen.
-
Ansgar Burchardt authored
Prepending them to the beginning of the list would mean they are never visited as the iterator only moves forward. This required switching to a `std::list` as the `std::forward_list` does not provide methods to add items at the end. This regression was introduced in 20b821be which replaced `Dune::SLList` with `std::forward_list`, but changed `push_back` to `push_front` as well. Closes: #53
-
Ansgar Burchardt authored
If the code path should never be reached, having an exception thrown makes it easier to nitce it was reached after all.
-