projects
/
synclust.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
fbcedaa77f5a31ae29657b1fc12e1260ff9311ce
[synclust.git]
/
src
/
sources
/
dijkstra.h
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