blob: 50af4200357176c5d73c36a0658926e1fc37b1f0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--- ./nodes.c.orig 2008-08-31 03:44:15.000000000 +0200
+++ ./nodes.c 2014-08-02 12:39:30.000000000 +0200
@@ -31,6 +31,8 @@
extern Parameters *parameters; /* exported */
extern double *scaled_err_probs;
int *contig_graph_weights;
+
+void nr_tarjan(int);
set_contig_graph_weights()
{
@@ -679,6 +681,7 @@
curr_state->calling_point = calling_point;
}
+void
nr_tarjan(k)
int k;
{
|