Skip to content
Snippets Groups Projects
  1. Jul 23, 2008
  2. Jul 18, 2008
  3. Jul 14, 2008
    • Markus Blatt's avatar
      · 577eb247
      Markus Blatt authored
      DO not use sequential superlu in parallel mode!
      
      [[Imported from SVN: r924]]
      577eb247
    • Markus Blatt's avatar
      · c29038a4
      Markus Blatt authored
      Bugfixed the test. (this is so embarassing...)
      
      [[Imported from SVN: r923]]
      c29038a4
    • Markus Blatt's avatar
      Fixed introduced bug. · a9501d79
      Markus Blatt authored
      There still seems to be a bug in AMG introduced after 1.2, though.
      
      [[Imported from SVN: r922]]
      a9501d79
    • Oliver Sander's avatar
      ignore dependencies.m4 · 8db38198
      Oliver Sander authored
      [[Imported from SVN: r921]]
      8db38198
  4. Jul 13, 2008
  5. Jul 11, 2008
  6. Jul 10, 2008
    • Markus Blatt's avatar
      · dfabc2ed
      Markus Blatt authored
      Bernd Flemischs version
      
      [[Imported from SVN: r915]]
      dfabc2ed
    • Markus Blatt's avatar
      · 60351028
      Markus Blatt authored
      Test for implicit size constructor.
      
      [[Imported from SVN: r914]]
      60351028
    • Markus Blatt's avatar
      Make constructor exlicit. · 870ce88b
      Markus Blatt authored
      Otherwise 
      
      VariableBlockVector v=0
      
      implicitly calls
      
      VariableBlockVector v(0)
      
      which constructsa a vector with 0 elements.
      
      [[Imported from SVN: r913]]
      870ce88b
    • Markus Blatt's avatar
      Fixed Bug! Closes flyspray #411. · af11fbf3
      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]]
      af11fbf3
  7. Jul 08, 2008
  8. Jun 26, 2008
    • Christian Engwer's avatar
      explicit braces to avoid ambiguous 'else' · a06f7696
      Christian Engwer authored
      [[Imported from SVN: r910]]
      a06f7696
    • Christian Engwer's avatar
      compile with g++-4.3 · c6ed37e7
      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]]
      c6ed37e7
    • Christian Engwer's avatar
      fix "two variables named x" error · cc45a348
      Christian Engwer authored
      [[Imported from SVN: r908]]
      cc45a348
  9. Jun 23, 2008
  10. Jun 20, 2008
  11. Jun 05, 2008
  12. May 23, 2008
  13. May 20, 2008
  14. May 15, 2008
  15. Apr 28, 2008
  16. Apr 25, 2008
  17. Apr 22, 2008
  18. Apr 21, 2008
  19. Apr 18, 2008
  20. Apr 15, 2008
  21. Apr 14, 2008
Loading