Skip to content
Snippets Groups Projects
  1. Jun 18, 2015
  2. Jun 17, 2015
  3. Jun 16, 2015
  4. Jun 15, 2015
    • Christian Engwer's avatar
      Merge branch 'feature/FS1665' · 61b68a36
      Christian Engwer authored
      This fixes bug FS#1665
      
      * we introduce limit the constructor of GMPField to match only those
        types which can initialize the underlying mpf_class
      * we extend the FieldVector<K,1> constructors to accept all scalar
        types which are compatible to K
      * we update DenseVector to use ADL to find functions like max(...),
        otherwise it would fail for GMPField
      61b68a36
  5. Jun 13, 2015
  6. Jun 02, 2015
  7. Jun 01, 2015
  8. May 28, 2015
  9. May 25, 2015
  10. May 21, 2015
    • Steffen Müthing's avatar
      [Release][CMake][Bugfix] Make dune_library_add_sources() work again · 289d3eb6
      Steffen Müthing authored
      dune_library_add_sources() verifies the library name against the
      contents of DUNE_ENABLE_ALL_PACKAGES_MODULE_LIBRARIES. I accidentally
      broke this by converting dune_enable_all_packages (which defines the
      variable) from a macro to a function, which removed the variable from
      global scope.
      
      This patch fixes the problem by explicitly exporting the variable to the
      parent scope, making it available to dune_library_add_sources() again.
      289d3eb6
  11. May 20, 2015
  12. May 19, 2015
  13. May 13, 2015
  14. May 12, 2015
  15. May 11, 2015
    • Ansgar Burchardt's avatar
      [release] debugallocator: use unsigned integer type for pointer arithmetic · 1659ea4b
      Ansgar Burchardt authored
      ptrdiff_t is a signed integer type and so the expression
        (std::uintptr_t)(ptr) % page_size
      could become a negative value. In this case the page_ptr would be the
      address of the next page after the allocation.
      
      This wrong behaviour could be observed on (32bit) PowerPC: here
      ptr was 0xf78cfe00 and page_ptr was calculated as 0xf78d0000 instead
      of the correct 0xf78c0000.
      1659ea4b
    • Steffen Müthing's avatar
      [Release][Bugfix] Fix bigunsignedint numeric_limits for clang/libc++ · a7951dff
      Steffen Müthing authored
      The std::numeric_limits specialization for bigunsignedint requires
      access to the internal state of bigunsignedint. Previously, the correct
      specialization of std::numeric_limits was a friend of bigunsignedint,
      but that creates problems on recent versions of clang with the
      alternative libc++ library, because that library declares the base
      template of std::numeric_limits as a class and clang subsequently
      complains if the friend declaration uses 'struct'. Unfortunately,
      libstdc++ uses a struct, making it impossible to keep clang happy for
      both standard libraries. So we introduce a helper class that provides
      access to the internal state and which now becomes a friend of
      bigunsignedint. The numeric_limits specialization inherits from the
      helper to use it.
      a7951dff
Loading