Skip to content

Commit

Permalink
Merge branch 'refs/heads/main' into 107-improve-slow-undirected-edge-…
Browse files Browse the repository at this point in the history
…patterns
  • Loading branch information
Dtenwolde committed Mar 19, 2024
2 parents 71380fe + 4212f63 commit 34e8694
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion duckdb-pgq
Submodule duckdb-pgq updated 1256 files
4 changes: 2 additions & 2 deletions duckpgq/src/duckpgq/functions/scalar/cheapest_path_length.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ bool UpdateLanes(vector<vector<T>> &dists, T v, T n, T weight) {
template <typename T, int16_t lane_limit>
int16_t
TemplatedBatchBellmanFord(CSR *csr, DataChunk &args, int64_t input_size,
UnifiedVectorFormat vdata_src, int64_t *src_data,
UnifiedVectorFormat &vdata_src, int64_t *src_data,
const UnifiedVectorFormat &vdata_target,
int64_t *target_data, std::vector<T> weight_array,
int16_t result_size, T *result_data,
Expand Down Expand Up @@ -94,7 +94,7 @@ TemplatedBatchBellmanFord(CSR *csr, DataChunk &args, int64_t input_size,

template <typename T>
void TemplatedBellmanFord(CSR *csr, DataChunk &args, int64_t input_size,
Vector &result, UnifiedVectorFormat vdata_src,
Vector &result, UnifiedVectorFormat &vdata_src,
int64_t *src_data,
const UnifiedVectorFormat &vdata_target,
int64_t *target_data, std::vector<T> weight_array) {
Expand Down

0 comments on commit 34e8694

Please sign in to comment.