Skip to content
Snippets Groups Projects
  1. Nov 10, 2017
  2. Nov 08, 2017
  3. Nov 07, 2017
  4. Nov 01, 2017
  5. Oct 31, 2017
  6. Oct 29, 2017
  7. Oct 20, 2017
  8. Oct 14, 2017
  9. Oct 13, 2017
  10. Oct 10, 2017
  11. Oct 05, 2017
    • Ansgar Burchardt's avatar
      Merge branch 'bugfix/structuredgridfactory-for-yasp-should-return-unique_ptr' into 'master' · 59d91c5c
      Ansgar Burchardt authored
      [Yasp] StructuredGridFactory specialization should return `unique_ptr`
      
      See merge request !216
      59d91c5c
    • Ansgar Burchardt's avatar
      [Yasp] StructuredGridFactory specialization should return `unique_ptr` · 553db716
      Ansgar Burchardt authored
      f96b091d changed the
      StructuredGridFactory to return a `unique_ptr` instead of a
      `shared_ptr`.  This patch implements the same change for the
      Yasp's specialization of the `StructuredGridFactory`.
      553db716
    • Andreas Dedner's avatar
      added two new methods to the mcmgmapper which simplify implementing a · ab9b3c9f
      Andreas Dedner authored
      generic datahandle class based on the mapper and a dense vector:
      - size(geometryType) to return the number of dofs for a given geometry type
      - types(codim) return a range over all geometry types of the given
        codimension on which data is attached
      ab9b3c9f
    • Andreas Dedner's avatar
      Allow MCMGMapper to allocate multiple indices per geometry type · f4f1a595
      Andreas Dedner authored
      This patch modifies MCMGMapper such that multiple indices may be allocated
      per geometry type. To this end, the layout function does no longer return a
      bool but the number of indices to allocate for a given geometry type.
      Old layout functions continue to work, because `bool` implicitly casts into
      `std::size_t` such that `true` is 1 and `false` is 0 so that exactly one
      index is allocated, if the geometry type was included in the layout.
      
      Semantic enhancements:
      - The `index` method returns the first index allocated for a geometry type
      - The `contains` method returns whether at least one index was allocated
        for a geometry type (and fills in the first index).
      - a new method `indices` returns an IntegralRange containing all indices
        allocated for a given geometry type. It can be used in a range-based-for
        like this:
        ```
        for( auto i : mapper.indices( element ) )
          doSomething( i );
        ```
      f4f1a595
  12. Sep 24, 2017
  13. Sep 22, 2017
  14. Sep 21, 2017
    • Oliver Sander's avatar
      Make method MessageBufferIF::read non-const · 932d455f
      Oliver Sander authored
      The method CommDataHandleIF::scatter receives a non-const
      reference to the message buffer.  This reference is
      non-const because reading from the buffer advances the
      internal iterator, and hence changes the buffer state.
      However, the MessageBufferIF claims that the read method
      is const.  This patch removes the const to make the
      interface consistent.
      932d455f
  15. Sep 20, 2017
Loading