- Feb 07, 2018
-
-
Melanie Lipp authored
-
Katharina Heck authored
-
Timo Koch authored
-
Thomas Fetzer authored
[feature/binarycoefficients-h2o-ch4] Moved binary coefficents for H2O-CH4 from devel to stable See merge request !784
-
Martin Beck authored
-
Katharina Heck authored
-
Timo Koch authored
-
Timo Koch authored
-
- Feb 06, 2018
-
-
Bernd Flemisch authored
-
Bernd Flemisch authored
Cleanup/nonequilibrium constraintsolver See merge request !780
- Feb 05, 2018
-
- Feb 02, 2018
-
-
Dennis Gläser authored
[linearSolver] Add version check to avoid deprecation warning See merge request !777
-
Katharina Heck authored
-
Katharina Heck authored
-
Kilian Weishaupt authored
[staggered] fix StaggeredNewtonController for use with Dune 2.5 See merge request !779
-
Bernd Flemisch authored
The function `min` of the `CollectiveCommunication` looks like this in Dune 2.5: ``` template<typename T> T min (T& in) const { T out; ``` In the `StaggeredNewtonController` this has been called like this: ``` const bool converged = solveLinearSystem_... int convergedRemote = converged; if (this->comm().size() > 1) convergedRemote = this->comm().min(converged); ``` Thus, `T` is determined to be `const bool` and setting `T out;` without initializing it doesn't work (fortunately). Fix by using `bool` instead of `const bool`. In Dune 2.6, the same function looks like that: ``` template<typename T> T min (const T& in) const ``` Therefore, `T` is deduced to be `bool` and everything works fine. Still does after the change.
-
Bernd Flemisch authored
-
Kilian Weishaupt authored
* dune-istl has unified SeqILU0 and SeqILUn to SeqILU
-
- Feb 01, 2018
-
-
Dennis Gläser authored
The default also assumes one hanging node per scvf such that the adaptive test work again.
-
Dennis Gläser authored
Feature/primaryvariables numeqvector See merge request !766
-
-
-
-
-
-
-
-
-
-
Kilian Weishaupt authored
[fluxvars] introduce enabled/disabled specific flux specializations See merge request !763
-
Kilian Weishaupt authored
[tpfa] remove obsolete includes See merge request !765
-
Dennis Gläser authored
Cleanup/mpfa See merge request !774
-