projects
/
synclust.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
add alternative approach from 2013-01
[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