Added serialization methods for vectors and matrices
git-svn-id: file:///srv/devel/repo-conversion/nusu@5 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
parent
d813756eed
commit
c346a07ab0
3 changed files with 159 additions and 39 deletions
|
@ -152,7 +152,7 @@ namespace Nuclex.Support.Collections {
|
|||
private void bubbleUp(int index, ItemType item) {
|
||||
int parent = getParent(index);
|
||||
|
||||
// note: (index > 0) means there is a parent
|
||||
// Note: (index > 0) means there is a parent
|
||||
while((index > 0) && (this.comparer.Compare(heap[parent], item) < 0)) {
|
||||
heap[index] = heap[parent];
|
||||
index = parent;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue