- Dec 17, 2013
-
-
Markus Blatt authored
This patch introduces a new macro DUNE_UNUSED_PARAMETER(parm) for marking unused parameters that are there for a purpose (e.g. the prescribed interfac The macro simply performs a cast to void. In addition all unused parameter w that I found were removed.
-
- Nov 22, 2013
-
-
Christoph Grüninger authored
At least Clang 3.2 complains.
-
- Sep 18, 2013
-
-
Markus Blatt authored
-
- Sep 02, 2013
-
-
Oliver Sander authored
These are replacements for TypeTraits::isPointer, TypeTraits::isReference, TypeTraits::PointeeType. They reimplement what is available in the C++11 standard library, and are expected to supersede the TypeTraits class eventually. Note: this patch does not pull in the corresponding stl implementation.
-
Oliver Sander authored
That's easier to maintain.
-
Oliver Sander authored
-
- Aug 19, 2013
-
-
Oliver Sander authored
Because the latter uses the C++11 standard library naming.
-
- Aug 18, 2013
-
-
Oliver Sander authored
-
Oliver Sander authored
-
Oliver Sander authored
-
Oliver Sander authored
-
- Jul 06, 2013
-
-
Andreas Dedner authored
-
- Jul 05, 2013
-
-
Andreas Dedner authored
-
- Jun 24, 2013
-
-
Martin Nolte authored
See FS#1317 for details.
-
- May 08, 2013
-
-
Steffen Müthing authored
In order to reuse the same source file, the fassign tests pass in the values to be assigned as a preprocessor define. Unfortunately, the preprocessor of clang 3.3 dies on this list if it contains spaces.
-
Steffen Müthing authored
In order to reuse the same source file, the fassign tests pass in the values to be assigned as a preprocessor define. Unfortunately, the preprocessor of clang 3.3 dies on this list if it contains spaces.
-
Steffen Müthing authored
-
- May 07, 2013
-
-
Christian Engwer authored
also test assignment of fieldmatrix from densematrix
-
- Mar 31, 2013
-
-
Christoph Grüninger authored
(kudos to Elias Pipping for the patch) [[Imported from SVN: r7436]]
-
Christoph Grüninger authored
Fixes FS#1271. (Kudos to Elias Pipping for the patch) [[Imported from SVN: r7435]]
-
- Feb 19, 2013
-
-
Markus Blatt authored
Revision 6654 .----------------- Merge sync to keep track with the trunk. Thanks for renaming files and targets. Always a pleasure to mimic this manually. [[Imported from SVN: r7365]]
-
Markus Blatt authored
Initial message was : Reflect removed test-stack in CMakeLists.txt. [[Imported from SVN: r7358]]
-
Markus Blatt authored
Initial message of blocked patch was : Adjusted CMakeLists.txt according to added files. [[Imported from SVN: r7357]]
-
- Feb 18, 2013
-
-
Markus Blatt authored
[[Imported from SVN: r7128]]
-
- Feb 13, 2013
-
-
Markus Blatt authored
[[Imported from SVN: r7124]]
-
- Feb 07, 2013
-
-
Christoph Gersbacher authored
Move template specializations of matrix capabilities into header. Restrict call to methods solve(), invert() to invertible matrices. [[Imported from SVN: r7107]]
-
- Feb 06, 2013
-
-
Christoph Gersbacher authored
[[Imported from SVN: r7104]]
-
Christoph Gersbacher authored
[[Imported from SVN: r7103]]
-
Christoph Gersbacher authored
[[Imported from SVN: r7102]]
-
Christoph Gersbacher authored
[[Imported from SVN: r7101]]
-
- Feb 01, 2013
-
-
Christoph Grüninger authored
[[Imported from SVN: r7098]]
-
- Jan 25, 2013
-
-
Markus Blatt authored
[[Imported from SVN: r7090]]
-
- Jan 24, 2013
-
-
Markus Blatt authored
[[Imported from SVN: r7083]]
-
- Jan 13, 2013
-
-
Christoph Grüninger authored
[[Imported from SVN: r7073]]
-
- Nov 25, 2012
-
-
Christian Engwer authored
Add support for boost::hash This patch adds boost::hash as a fallback option for Dune::hash if neither std::hash nor std::tr1::hash can be found. We only have to include the appropriate header and import the name into the Dune namespace, as the built-in extension mechanism of boost::hash will automatically pick up the global hash_value() functions. To test whether the mechanism actually works, the patch also adds boost::hash to the list of hash implementations tested in bigunsignedinttest. Kudos to Steffen Müthing, see FS#1192 [[Imported from SVN: r7067]]
-
Christian Engwer authored
Make bigunsignedint hashable using Dune::hash This patch adds the required hooks to enable hashing of bigunsignedint and makes sure the hasher can be invoked in bigunsignedinttest. Making bigunsignedint hashable also makes it possible to use hash-based containers for EntityIDs with YaspGrid and SGrid, as those grids implement the EntityID as a plain bigunsignedint. The patch also adds a little test to bigunsignedinttest, trying to hash a bigunsignedint with Dune::hash as well as any of the detected backends (std::hash and std::tr1::hash). Kudos to Steffen Müthing, see FS#1192 [[Imported from SVN: r7066]]
-
- Nov 23, 2012
-
-
Christoph Grüninger authored
Ignore eigenvaluetest. Reordner member variable assignments to avoid pedantic warnings in shared_ptr. Only activate boundary checking in dynmatrixtest if not already active. [[Imported from SVN: r7063]]
-
- Nov 21, 2012
-
-
Markus Blatt authored
Capabilities to compute eigenvalues on non-symmetric matrices Code contributed by Arne Morten Kvarving. [[Imported from SVN: r7061]]
-
- Nov 06, 2012
-
-
Christian Engwer authored
see FS#1055 for details [[Imported from SVN: r7055]]
-
- Oct 21, 2012
-
-
Markus Blatt authored
base class. Previously class A{}; class B: public A{}; shared_ptr<A> b(new B); shared_ptr<B> b(a); b.get_count()==1 && b.get_count()==1 would wrongly hold true. [[Imported from SVN: r7046]]
-