- Jan 25, 2017
-
-
René Fritze authored
-
- Jan 24, 2017
-
-
René Fritze authored
-
René Fritze authored
-
- Jan 17, 2017
-
-
Dr. Felix Tobias Schindler authored
-
Dr. Felix Tobias Schindler authored
-
Dr. Felix Tobias Schindler authored
-
Dr. Felix Tobias Schindler authored
-
Dr. Felix Tobias Schindler authored
-
Dr. Felix Tobias Schindler authored
-
Dr. Felix Tobias Schindler authored
-
- Jan 12, 2017
-
-
René Fritze authored
-
René Fritze authored
-
- Dec 12, 2016
-
-
Tobias Leibner authored
-
Tobias Leibner authored
-
- Dec 09, 2016
-
-
Tobias Leibner authored
-
Tobias Leibner authored
-
- Dec 06, 2016
-
-
René Fritze authored
-
- Nov 10, 2016
-
-
René Fritze authored
-
- Oct 27, 2016
-
-
Dr. Felix Tobias Schindler authored
-
Dr. Felix Tobias Schindler authored
-
Dr. Felix Tobias Schindler authored
-
Dr. Felix Tobias Schindler authored
-
- Oct 25, 2016
-
-
Dr. Felix Tobias Schindler authored
-
Dr. Felix Tobias Schindler authored
-
Dr. Felix Tobias Schindler authored
-
Dr. Felix Tobias Schindler authored
-
- Oct 24, 2016
-
-
Dr. Felix Tobias Schindler authored
-
Dr. Felix Tobias Schindler authored
-
Dr. Felix Tobias Schindler authored
-
Dr. Felix Tobias Schindler authored
-
Dr. Felix Tobias Schindler authored
-
Dr. Felix Tobias Schindler authored
-
- Oct 07, 2016
-
-
Dr. Felix Tobias Schindler authored
-
Dr. Felix Tobias Schindler authored
-
Tobias Leibner authored
-
Tobias Leibner authored
-
Tobias Leibner authored
- CommonSparseMatrix does not provide a backend, so removed the inheritance - renamed backend -> entries - throw in get_entry_index if entry is not in pattern and is meant to be modified - exclude CommonSparseMatrix from solver tests as there is no solver specialization yet
-
Tobias Leibner authored
-
- Oct 06, 2016
-
-
Dr. Felix Tobias Schindler authored
The problem was a locked method calling backend(), thus calling ensure_uniqueness(), which in turn waited for a lock. The solution is to first ensure uniqueness and obtain, then lock, then use a reference on the unique backend. This is in general acchieved by ``` auto& backend_ref = backend(); // calles ensure_uniqueness() std::lock... // work with backend_ref ``` To make it a bit more explicit what is going on we could also let ensure_uniqueness() return a `BackendType&` and use that instead of backend().
-
Dr. Felix Tobias Schindler authored
-