- Jul 14, 2008
-
-
Oliver Sander authored
[[Imported from SVN: r921]]
-
- Jul 13, 2008
-
-
Christian Engwer authored
[[Imported from SVN: r920]]
-
Christian Engwer authored
[[Imported from SVN: r919]]
-
Christian Engwer authored
[[Imported from SVN: r918]]
-
- Jul 11, 2008
-
-
Markus Blatt authored
[[Imported from SVN: r917]]
-
Oliver Sander authored
[[Imported from SVN: r916]]
-
- Jul 10, 2008
-
-
Markus Blatt authored
Bernd Flemischs version [[Imported from SVN: r915]]
-
Markus Blatt authored
Test for implicit size constructor. [[Imported from SVN: r914]]
-
Markus Blatt authored
Otherwise VariableBlockVector v=0 implicitly calls VariableBlockVector v(0) which constructsa a vector with 0 elements. [[Imported from SVN: r913]]
-
Markus Blatt authored
endrowsizes() allocated memory in any case. Therefore if the nonzeros were specified in the constructor (which allocated space for the values and indices) an new allocation occured on the same pointers. Now we check whether nnz is already setup. [[Imported from SVN: r912]]
-
- Jul 08, 2008
-
-
Oliver Sander authored
[[Imported from SVN: r911]]
-
- Jun 26, 2008
-
-
Christian Engwer authored
[[Imported from SVN: r910]]
-
Christian Engwer authored
since 4.3 g++ makes sure the meaning of names isn't changed. .------------------------------ namespace ns { template <typename T> struct foo {}; struct bar { typedef foo<double> foo; }; } .----------------------------- will not compile, you have to use explicitd scoping. .-- typedef foo<double> foo; ++ typedef ns::foo<double> foo; In case that you use class foo several times like: .----------------------------- struct bar { foo<int> f; typedef ns::foo<double> foo; }; .----------------------------- The code will also not compile, because foo<int> already pulls ns:foo into the scope of ns::bar. Again you will have to specify the scope. .-- foo<int> f; ++ ns::foo<int> f; [[Imported from SVN: r909]]
-
Christian Engwer authored
[[Imported from SVN: r908]]
-
- Jun 23, 2008
-
-
Markus Blatt authored
BlockVector v=0 results in a vector of size 0. [[Imported from SVN: r907]]
-
- Jun 20, 2008
-
-
Markus Blatt authored
[[Imported from SVN: r906]]
-
Markus Blatt authored
[[Imported from SVN: r905]]
-
Markus Blatt authored
[[Imported from SVN: r904]]
-
- Jun 05, 2008
-
-
Oliver Sander authored
[[Imported from SVN: r903]]
-
- May 23, 2008
-
-
Oliver Sander authored
[[Imported from SVN: r902]]
-
- May 20, 2008
-
-
Christian Engwer authored
[[Imported from SVN: r901]]
-
- May 15, 2008
-
-
Christian Engwer authored
[[Imported from SVN: r900]]
-
- Apr 28, 2008
-
-
Oliver Sander authored
[[Imported from SVN: r899]]
-
- Apr 25, 2008
-
-
Peter Bastian authored
unpreconditioned CG. [[Imported from SVN: r898]]
-
- Apr 22, 2008
-
-
Christian Engwer authored
[[Imported from SVN: r897]]
-
Christian Engwer authored
* use doxy-header/footer.html only wen building with dune-web * fix #267 [[Imported from SVN: r896]]
-
Christian Engwer authored
[[Imported from SVN: r895]]
-
Christian Engwer authored
[[Imported from SVN: r894]]
-
- Apr 21, 2008
-
-
Christian Engwer authored
[[Imported from SVN: r893]]
-
Christian Engwer authored
[[Imported from SVN: r892]]
-
- Apr 18, 2008
-
-
Oliver Sander authored
Introducing a new static matrix which is a constant of the identity. Such as matrix can be useful for equations which are the same for all components, e.g., the vector-valued Allen-Cahn equation [[Imported from SVN: r891]]
-
- Apr 15, 2008
-
-
Markus Blatt authored
[[Imported from SVN: r890]]
-
Markus Blatt authored
[[Imported from SVN: r889]]
-
- Apr 14, 2008
-
-
Markus Blatt authored
[[Imported from SVN: r888]]
-
Markus Blatt authored
[[Imported from SVN: r887]]
-
- Apr 13, 2008
-
-
Martin Nolte authored
[[Imported from SVN: r886]]
-
- Apr 06, 2008
-
-
Oliver Sander authored
[[Imported from SVN: r885]]
-
- Mar 26, 2008
-
-
Markus Blatt authored
On Amadeus the line continuation backslashes were eaten in $(SOURCES). I do not know why this patches fixes this but it appears to be safe. If you have ideas why the problem is fixed please tell me [[Imported from SVN: r882]]
-
- Mar 19, 2008
-
-
Christian Engwer authored
[[Imported from SVN: r879]]
-
Christian Engwer authored
[[Imported from SVN: r878]]
-