Skip to content
Snippets Groups Projects
  1. Aug 27, 2013
    • Markus Blatt's avatar
      [Bugfix] Prevent implicite conversion Matrix->MatrixAdapter. · 4acfda14
      Markus Blatt authored
      MatrixAdapter uses a const reference to store a reference
      to the matrix it is working on. Without this patch it was
      possible to pass the matrix to constructor actually taking
      a MatrixAdapter as its argument. This resulted in a const
      reference to a temporary MatrixAdapter that died after the
      constructor call.
      
      This patch request explicitly calling the constructor and
      thus fixes this issue.
      4acfda14
  2. Aug 26, 2013
  3. Aug 21, 2013
  4. Aug 19, 2013
  5. Aug 15, 2013
  6. Aug 14, 2013
  7. Aug 13, 2013
  8. Aug 12, 2013
  9. Aug 05, 2013
  10. Jul 13, 2013
  11. Jul 11, 2013
    • Oliver Sander's avatar
      Replace 'double' in return value of the norm methods · 87cb0c99
      Oliver Sander authored
      Replace it with	typename FieldTraits<field_type>::real_type
      
      This fixes two problems:
      - norms don't return complex number types when instantiated
        for complex coefficients
      - You can now instantiate BlockVector for field_types that do not
        auto-convert to 'double'
      87cb0c99
    • Markus Blatt's avatar
      [Bugfix][SuperLU] Use a pointer and not a reference for pointing in apply(T*,T*). · 3672ad5b
      Markus Blatt authored
      A reference is an lvalue. Assigning to it later changes the state
      of the rhe referencee (and not the reference). Therefore the code
      actually stored references to the right hand and left hand side.
      In the case where we did not want to reuse vectors we created two
      dense SuperMatrices to used in this apply call and then assigned
      them to the references. In fact we actually overwrote the right
      and left hand side by doing this.
      
      This patch uses pointers to accompish the intended behaviour, i.e.
      point to the correct dense matrices, the ones stored in SuperLU
      or the ones stored in SuperLU::apply.
      3672ad5b
    • Arne Morten Kvarving's avatar
      [Bugfix][SuperLU] Use a pointer and not a reference for pointing. · aa274599
      Arne Morten Kvarving authored and Markus Blatt's avatar Markus Blatt committed
      A reference is an lvalue. Assigning to it later changes the state
      of the rhe referencee (and not the reference). Therefore the code
      actually stored references to the right hand and left hand side.
      In the case where we did not want to reuse vectors we created two
      dense SuperMatrices to used in this apply call and then assigned
      them to the references. In fact we actually overwrote the right
      and left hand side by doing this.
      
      This patch uses pointers to accompish the intended behaviour, i.e.
      point to the correct dense matrices, the ones stored in SuperLU
      or the ones stored in SuperLU::apply.
      aa274599
    • Oliver Sander's avatar
      Add package new to single-inclusion macro · ab8d2def
      Oliver Sander authored
      Otherwise I get name clashes: DUNE_SOLVER_HH is used in dune-istl
      and dune-solvers.
      ab8d2def
  12. Jul 09, 2013
Loading