Skip to content

Commit

Permalink
fix: color in source location in feature map
Browse files Browse the repository at this point in the history
  • Loading branch information
william-silversmith committed Apr 11, 2024
1 parent c3e1215 commit 435051b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dijkstra3d.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1920,7 +1920,9 @@ OUT* edf_with_feature_map(
uint64_t src = 1;
for (uint64_t source : sources) {
dist[source] = -0;
queue.emplace(0.0, source, src++);
feature_map[source] = src;
queue.emplace(0.0, source, src);
src++;
}

uint64_t loc, next_loc;
Expand Down

0 comments on commit 435051b

Please sign in to comment.