X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=src%2Fdelta_plot.c;h=73afbd4dc188c28979bbf12643faa739272aeda0;hb=06e83c6878153f8e7999c0470263c40aad4db258;hp=66fadac4bdc224a0c5ed28fcaf2e9043fa2a583a;hpb=574e4a9ffc7503feb10351a268c0523912f6257e;p=ape.git diff --git a/src/delta_plot.c b/src/delta_plot.c index 66fadac..73afbd4 100644 --- a/src/delta_plot.c +++ b/src/delta_plot.c @@ -1,6 +1,6 @@ -/* delta_plot.c 2010-01-12 */ +/* delta_plot.c 2011-06-23 */ -/* Copyright 2010 Emmanuel Paradis +/* Copyright 2010-2011 Emmanuel Paradis /* This file is part of the R-package `ape'. */ /* See the file ../COPYING for licensing issues. */ @@ -12,7 +12,7 @@ void delta_plot(double *D, int *size, int *nbins, int *counts, double *deltabar) int x, y, u, v; /* same notation than in Holland et al. 2002 */ int n = *size, nb = *nbins; double dxy, dxu, dxv, dyu, dyv, duv, A, B, C, delta; - int xy, xu, xv, yu, yv, uv, i, k; + int xy, xu, xv, yu, yv, uv, i; for (x = 0; x < n - 3; x++) { xy = x*n - x*(x + 1)/2; /* do NOT factorize */