Skip to content

Commit

Permalink
CI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cvvergara committed Sep 8, 2023
1 parent 0c5a45f commit c4ed6df
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions include/dijkstra/drivingDist.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ void remove_details(const G &graph,

/* the vertex (or initial point) that is a predecesor of p */
predecessors[node] = u;
log << graph[predecessors[node]].id << " --p--> node " << graph[node].id << " cost " << distances[node] - distances[u] << "\n";
log << graph[predecessors[node]].id << " --p--> node " << graph[node].id
<< " cost " << distances[node] - distances[u] << "\n";
}
}

Expand Down Expand Up @@ -471,7 +472,8 @@ class Pgr_dijkstra {
if (execute_drivingDistance_no_init(
graph, graph.get_V(vertex), distance)) {
pred[i] = predecessors;
depths[i] = detail::get_depth(graph, graph.get_V(vertex), distances, predecessors, distance, details, log);
depths[i] = detail::get_depth(
graph, graph.get_V(vertex), distances, predecessors, distance, details, log);
}
++i;
}
Expand Down
2 changes: 1 addition & 1 deletion tools/scripts/test_license.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ missing=$(! { mylicensecheck src & mylicensecheck sql & mylicensecheck include
missing1=$(mylicensecheck doc | grep "No copyright")
missing2=$(grep --files-without-match 'Creative Commons' doc/*/*.rst)
missing3=$(mylicensecheck docqueries | grep "No copyright")
missing4=$(grep --files-without-match 'Creative Commons' "$(git ls-files docqueries | grep '.sql')")
missing4=$(grep --files-without-match 'Creative Commons' $(git ls-files docqueries | grep '.sql'))
popd > /dev/null || exit

#mylicensecheck doc
Expand Down

0 comments on commit c4ed6df

Please sign in to comment.