- 04 Dec, 2013 1 commit
-
-
mattijs authored
-
- 02 Dec, 2013 1 commit
-
-
mattijs authored
-
- 18 Nov, 2013 1 commit
-
-
mattijs authored
-
- 12 Nov, 2013 1 commit
-
-
mattijs authored
-
- 17 Oct, 2013 1 commit
-
-
mattijs authored
-
- 14 Oct, 2013 1 commit
-
-
mattijs authored
-
- 11 Oct, 2013 1 commit
-
-
mattijs authored
-
- 09 Oct, 2013 1 commit
-
-
mattijs authored
-
- 01 Oct, 2013 1 commit
-
-
mattijs authored
-
- 02 Aug, 2013 1 commit
-
-
mattijs authored
-
- 31 May, 2013 1 commit
-
-
mattijs authored
-
- 03 May, 2013 1 commit
-
-
mattijs authored
-
- 26 Mar, 2013 1 commit
-
-
mattijs authored
-
- 21 Jan, 2013 1 commit
-
-
mattijs authored
-
- 16 Jan, 2013 1 commit
-
-
mattijs authored
-
- 05 Dec, 2012 1 commit
-
-
mattijs authored
-
- 17 Oct, 2012 1 commit
-
-
mattijs authored
-
- 01 Oct, 2012 1 commit
-
-
mattijs authored
-
- 20 Sep, 2012 1 commit
-
-
mattijs authored
-
- 14 Sep, 2012 1 commit
-
-
mattijs authored
-
- 24 May, 2012 1 commit
-
-
mattijs authored
-
- 01 Mar, 2012 2 commits
- 09 Dec, 2011 1 commit
-
-
mattijs authored
-
- 28 Nov, 2011 1 commit
-
-
mattijs authored
-
- 14 Aug, 2011 1 commit
-
-
Henry authored
-
- 19 Jan, 2011 1 commit
-
- 14 Jan, 2011 1 commit
-
-
Andrew Heather authored
-
- 07 Jan, 2011 1 commit
-
-
graham authored
-
- 05 Jan, 2011 2 commits
-
-
Andrew Heather authored
This reverts commit b18f6cc1.
-
graham authored
-
- 14 Dec, 2010 1 commit
-
-
mattijs authored
-
- 30 Sep, 2010 1 commit
-
-
mattijs authored
-
- 28 Jul, 2010 1 commit
-
-
graham authored
-
- 29 Mar, 2010 1 commit
-
-
Mark Olesen authored
-
- 02 Dec, 2009 1 commit
-
-
Mark Olesen authored
Note: PackedList constructor initializes to zero, faster not to do it ourselves. ie, PackedList foo(nPoints); vs. PackedList foo(nPoints, 0); saves an extra nPoints operations with shifts/masks etc. If speed is important, change this type of code PackedList isMaster(nPoints, 1u); for (loop) { if (condition) { isMaster.set(i, 0u); // unset bit } } return isMaster; into this: PackedList notMaster(nPoints); for (loop) { if (!condition) { notMaster.set(i, 1u); } } notMaster.flip(); return notMaster; or this: PackedList isMaster(nPoints); isMaster.flip(); for (loop) { if (condition) { isMaster.set(i, 0u); } } return isMaster;
-
- 30 Nov, 2009 1 commit
-
-
Mark Olesen authored
- space between keyword and bracket in 'for(..)', 'if(..)', 'while(..)'
-
- 26 Nov, 2009 1 commit
-
-
Mark Olesen authored
- use first() method in some places as well where it helps clarity - there are a few remaining cases: git grep 'size()-1]'
-
- 27 Oct, 2009 1 commit
-
-
Andrew Heather authored
-
- 21 Sep, 2009 1 commit
-
-
Mark Olesen authored
-