Skip to content
Snippets Groups Projects
  1. Aug 26, 2013
  2. Aug 23, 2013
    • Oliver Sander's avatar
      Use variadic templates for PushBackTuple and PushFrontTuple, if available · 4152f73f
      Oliver Sander authored
      The two classes PushBackTuple and PushFrontTuple are both implemented
      using a long list of template specializations.  This makes for a lot
      of code, and it also limits the maximum tuple size that can be used.
      Using variadic templates (FYI: available since gcc-4.3) instead
      allows a generic implementation in only a few lines of code, and
      only the compiler being the upper limit on tuple size.
      
      An implementation using variadic templates has already been given
      in the documentation of PushBackTuple/PushFrontTuple.  This patch
      starts to actually use that implementation, provided that
      HAVE_VARIADIC_TEMPLATES is set.  Otherwise the old implementation
      is used.
      4152f73f
  3. Aug 22, 2013
  4. Aug 19, 2013
  5. Aug 18, 2013
  6. Jul 13, 2013
  7. Jul 10, 2013
  8. Jul 06, 2013
  9. Jul 05, 2013
  10. Jun 24, 2013
    • Martin Nolte's avatar
      use field_type( 1 ) instead of 1.0 · de0b6e9e
      Martin Nolte authored
      This fixes FS#1317 for me (use invert for 2x2 matrix with
      std::complex< long double >).
      The problem is that 1.0 is a double, which can be converted implicitly
      to a long double which, in turn, could be converted implicitly into a
      std::complex< long double >. However, the compiler does not use two
      implicit type conversions, so double cannot be divided by a
      std::complex< long double >.
      de0b6e9e
    • Martin Nolte's avatar
      check invert for FieldMatrix< std::complex< double >, 2 > · e4d80dbf
      Martin Nolte authored
      See FS#1317 for details.
      e4d80dbf
  11. May 11, 2013
  12. May 08, 2013
  13. May 07, 2013
  14. May 06, 2013
  15. May 03, 2013
  16. May 02, 2013
  17. Mar 31, 2013
  18. Mar 20, 2013
  19. Mar 14, 2013
  20. Mar 13, 2013
  21. Mar 12, 2013
  22. Feb 25, 2013
Loading