snapapps / edgy

a visual programming language inspired by Scratch
http://snapapps.github.io/
GNU Affero General Public License v3.0
51 stars 21 forks source link

Use correct count for serialization of pqueue #397

Closed cyderize closed 8 years ago

cyderize commented 8 years ago

Only serialize elements up to PQueue.count, since array elements may exist beyond that, but are not actually part of the priority queue (they remain after dequeuing elements since the underlying array does not shrink).

Fixes #396.