- Sep 15, 2009
-
-
Markus Blatt authored
Both do not do any error checking. Introduced at method that does the same but checks for errors. [[Imported from SVN: r1067]]
-
- Sep 13, 2009
-
-
Markus Blatt authored
Please merge to release. [[Imported from SVN: r1063]]
-
- Nov 05, 2008
-
-
Markus Blatt authored
[[Imported from SVN: r956]]
-
- Oct 06, 2008
-
-
Markus Blatt authored
[[Imported from SVN: r945]]
-
- Jun 26, 2008
-
-
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]]
-
- May 07, 2007
-
-
Markus Blatt authored
[[Imported from SVN: r771]]
-
- May 01, 2007
-
-
Markus Blatt authored
[[Imported from SVN: r761]]
-
- Nov 18, 2006
-
-
Markus Blatt authored
[[Imported from SVN: r682]]
-
- Nov 17, 2006
-
-
Markus Blatt authored
Force lower bound to use std::less<IndexPair> instead of std::less<int> as LessThanComparator. [[Imported from SVN: r681]]
-
- Jul 31, 2006
-
-
Markus Blatt authored
[[Imported from SVN: r639]]
-
- Jun 01, 2006
-
-
Markus Blatt authored
[[Imported from SVN: r618]]
-
- Mar 27, 2006
-
-
Markus Blatt authored
[[Imported from SVN: r537]]
-
- Dec 14, 2005
-
-
Markus Blatt authored
matrix row. Compiles again and works for the sequential case. [[Imported from SVN: r446]]
-
- Dec 13, 2005
-
-
Markus Blatt authored
[[Imported from SVN: r442]]
-
Markus Blatt authored
This is needed as one wants to setup only those indices involved in the communication. First step in making AMG work with those smaller index sets. [[Imported from SVN: r441]]
-
- Oct 07, 2005
-
-
Markus Blatt authored
[[Imported from SVN: r342]]
-
- Oct 04, 2005
-
-
Markus Blatt authored
existant in grid. [[Imported from SVN: r333]]
-
- Jul 21, 2005
-
-
Markus Blatt authored
Instead of specifying all of them for all class using IndexSet, those class now have the index set type as a template parameters. [[Imported from SVN: r291]]
-
- Apr 27, 2005
-
-
Markus Blatt authored
[[Imported from SVN: r231]]
-
- Apr 15, 2005
-
-
Markus Blatt authored
before for the mutable function. [[Imported from SVN: r205]]
-
- Apr 12, 2005
-
-
Markus Blatt authored
[[Imported from SVN: r195]]
-
Markus Blatt authored
index of the result is not probe but low. [[Imported from SVN: r194]]
-
- Apr 04, 2005
-
-
Markus Blatt authored
markAsDeleted method has O(log(N)) complexity because of the binary search. - Removed bug when deleting indices. The deleted index pairs were not removed when no indices where added. - added possibility to print the index sets for debugging. [[Imported from SVN: r179]]
-
- Mar 21, 2005
-
-
Markus Blatt authored
method in the index has log(N) complexity because of the binary search. [[Imported from SVN: r175]]
-
- Mar 11, 2005
-
-
Markus Blatt authored
[[Imported from SVN: r173]]
-
Oliver Sander authored
[[Imported from SVN: r172]]
-
- Feb 15, 2005
-
-
Markus Blatt authored
[[Imported from SVN: r158]]
-
- Dec 15, 2004
-
-
Markus Blatt authored
[[Imported from SVN: r131]]
-
- Dec 09, 2004
-
-
Thimo Neubauer authored
[[Imported from SVN: r125]]
-
Markus Blatt authored
nonparallel index are not required to have a public flag. [[Imported from SVN: r124]]
-
- Dec 08, 2004
-
-
Markus Blatt authored
Cleaned documentation. [[Imported from SVN: r117]]
-
- Dec 07, 2004
-
-
Markus Blatt authored
are still due though). [[Imported from SVN: r116]]
-
- Dec 01, 2004
-
-
Markus Blatt authored
according to the distributed indexsets and directly sends and receives them using nonblocking communication with persistent MPI_Requests. Tests redistributing and agglomerating a distributed array (See indicestest.cc in directory test) [[Imported from SVN: r108]]
-
- Nov 23, 2004
-
-
Markus Blatt authored
[[Imported from SVN: r104]]
-
- Nov 18, 2004
-
-
Markus Blatt authored
[[Imported from SVN: r102]]
-
Markus Blatt authored
[[Imported from SVN: r101]]
-
- Nov 17, 2004
-
-
Markus Blatt authored
[[Imported from SVN: r99]]
-