[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Bug-gsl] Out of order declaration
From: |
Rhys Ulerich |
Subject: |
Re: [Bug-gsl] Out of order declaration |
Date: |
Mon, 10 Sep 2012 11:08:49 -0500 |
Hi Brian,
> There is an out of order declaration in the GSL code base as follows:
>
> ode-initval2\test.c (2185 ...) out of order declarations:
> ------------------------------------ /* Test driver_apply_fixed_step */
>
> gsl_odeiv2_driver_reset_hstart (d, 1e-3);
> const unsigned long int nfsteps = 100000;
> const double hfixed = 0.000025;
> s = gsl_odeiv2_driver_apply_fixed_step (d, &t, hfixed, nfsteps, y);
>
> if (s != GSL_SUCCESS)
> ------------------------------------
What exactly is out of order? ode-initval2/test.c:2185 doesn't
declare anything, and I'm not good at deciphering your compiler's
error messages.
- Rhys