Skip to content
Snippets Groups Projects
  1. Aug 01, 2018
  2. Jul 27, 2018
  3. Jul 02, 2018
  4. Jun 29, 2018
  5. Apr 24, 2018
  6. Apr 20, 2018
  7. Apr 18, 2018
  8. Mar 29, 2018
  9. Mar 26, 2018
    • Carsten Gräser's avatar
      Allow ReferenceElement::size(i,c,cc) for cc<c · edcac37f
      Carsten Gräser authored
      While subEntity(i,c,j,cc) is surely not allowed for
      cc<c because there's no viable j, there's no reason
      to not allow this case for size(i,c,cc). Actually the
      implementation works nicely in this case and returns
      the correct number size zero. Any grid-specific
      ReferenceElement implementation should simply return
      zero in this case.
      
      Allowing this case gives the possibility to seamlessly test
      for(int j=0; j < re.size(i,c,cc); ++j)
      for all 0<=c<=dim and 0<=cc<=dim.
      edcac37f
  10. Mar 19, 2018
  11. Mar 14, 2018
  12. Mar 12, 2018
    • Carsten Gräser's avatar
      [cleanup] Canonicalize SFINAE in referenceElements() · c586d13e
      Carsten Gräser authored
      The used version of SFINAE by enable_if has the advantage
      of not adding additional template-parameters. However, it
      has the disadvantage of making the generated doxygen documentation
      hard to read.
      
      This commit changes this to SFINAE/enable_if by defaulted
      int template parameter. This additional parameter also
      shows up in doxygen but its much easier to identify as
      SFINAE dummy because it follows a simple idomatic pattern.
      More importantly it does not mess up the documentation
      for the other parameters.
      c586d13e
  13. Feb 06, 2018
    • Martin Nolte's avatar
      Merge branch 'feature/clean-up-geometrytype-storage' into 'master' · 1eb68a62
      Martin Nolte authored
      [GeometryType] Clean up storage
      
      See merge request !86
      1eb68a62
    • Steffen Müthing's avatar
      [GeometryType] Clean up storage · 5f2396cd
      Steffen Müthing authored and Martin Nolte's avatar Martin Nolte committed
      This patch removes the packed bitfield used to store both the dimension and the none flag in a
      single byte. This optimization does not change anything about the size of GeometryType as a whole,
      because it would be 5 bytes even with the optimization and the C++ ABI (at least on 64-bit
      platforms) automatically rounds that up to 8 bytes, so we can just as easily let both the flag and
      the dimension have a full byte of their own.
      
      This also improves the code generated by both GCC and Clang quite a bit. In order to further improve
      matters, I reordered the member variables and put the topologyId_ variable last.
      5f2396cd
  14. Jan 26, 2018
  15. Jan 25, 2018
  16. Jan 18, 2018
  17. Jan 17, 2018
  18. Jan 16, 2018
  19. Jan 02, 2018
  20. Nov 20, 2017
  21. Nov 13, 2017
  22. Nov 10, 2017
  23. Nov 03, 2017
  24. Nov 02, 2017
  25. Oct 23, 2017
Loading