Skip to content
Snippets Groups Projects
  1. Apr 21, 2016
  2. Mar 14, 2016
  3. Nov 10, 2015
  4. Feb 10, 2015
  5. Oct 29, 2013
  6. Feb 21, 2013
  7. Aug 14, 2011
  8. Jan 19, 2011
  9. Jan 14, 2011
  10. Jan 07, 2011
  11. Jan 05, 2011
  12. Apr 27, 2010
  13. Mar 29, 2010
  14. Feb 17, 2010
  15. Dec 09, 2009
  16. Dec 07, 2009
  17. Dec 03, 2009
  18. Nov 27, 2009
    • Mark Olesen's avatar
      coding style adherence · fa93ce8c
      Mark Olesen authored
      - markup codingStyleGuide.org examples so they actually indent correctly
      
      - use 'Info<<' as per codingStyleGuide instead of 'Info <<'
      fa93ce8c
  19. Oct 10, 2009
  20. Aug 28, 2009
  21. Jul 22, 2009
  22. May 19, 2009
  23. Mar 12, 2009
  24. Feb 18, 2009
    • Mark Olesen's avatar
      use while (runTime.loop() { .. } where possible in solvers · 4b60453c
      Mark Olesen authored
      - change system/controlDict to use functions {..} instead of functions (..);
        * This is internally more efficient
      - fixed formatting of system/controlDict functions entry
      
      - pedantic change: use 'return 0' instead of 'return(0)' in the applications,
        since return is a C/C++ keyword, not a function.
      4b60453c
  25. Jan 10, 2009
    • Mark Olesen's avatar
      Simplify checking of container (List/HashTable, strings) sizes · 95dcb6de
      Mark Olesen authored
      - can use 'XX.empty()' instead of 'XX.size() == 0', 'XX.size() < 1' or
        'XX.size() <= 0' or for simpler coding.
        It also has the same number of characters as '!XX.size()' and /might/ be
        more readable
      
      - many size checking had 'XX.size() > 0', 'XX.size() != 0', or 'XX.size() >= 1'
        when a simple 'XX.size()' suffices
      95dcb6de
  26. Dec 31, 2008
  27. Jun 25, 2008
  28. Apr 15, 2008