summaryrefslogtreecommitdiff
path: root/.settings/org.eclipse.cdt.codan.core.prefs
AgeCommit message (Collapse)Author
2019-02-24Parallel processing job queue done!Haidong Ji
I used C++'s priority_queue (queue.h) and C++'s own pair data structure. Unlike Python and Java's similar data structure, C++'s priority_queue pops in reverse order, so I had to negate the value, and negate back when adding them to vectors. Cool use of pair. Fun stuff :)