projects
/
synclust.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(incremental) |
history
|
HEAD
add alternative approach from 2013-01
[synclust.git]
/
src
/
sources
/
dijkstra.h
Commit
Line
Data
15d1825d
BA
1
#ifndef SYNCLUST_DIJKSTRA_H
2
#define SYNCLUST_DIJKSTRA_H
3
4
// Dijkstra from index start : return vector of distances to every other vertex
5
double* dijkstra_core(
6
double* pDistsIn,
7
int start,
8
int n
9
);
10
11
#endif