ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/gen/gendaymtx.c
(Generate patch)

Comparing ray/src/gen/gendaymtx.c (file contents):
Revision 2.14 by greg, Fri May 30 00:00:54 2014 UTC vs.
Revision 2.16 by greg, Tue Jun 17 21:01:21 2014 UTC

# Line 319 | Line 319 | main(int argc, char *argv[])
319          int     dir_is_horiz;           /* direct is meas. on horizontal? */
320          float   *mtx_data = NULL;       /* our matrix data */
321          int     ntsteps = 0;            /* number of rows in matrix */
322 +        int     step_alloc = 0;
323          int     last_monthly = 0;       /* month of last report */
324          int     mo, da;                 /* month (1-12) and day (1-31) */
325          double  hr;                     /* hour (local standard time) */
# Line 460 | Line 461 | main(int argc, char *argv[])
461                  double          sda, sta;
462                                          /* make space for next time step */
463                  mtx_offset = 3*nskypatch*ntsteps++;
464 <                mtx_data = resize_dmatrix(mtx_data, ntsteps, nskypatch);
464 >                if (ntsteps > step_alloc) {
465 >                        step_alloc += (step_alloc>>1) + ntsteps + 7;
466 >                        mtx_data = resize_dmatrix(mtx_data, step_alloc, nskypatch);
467 >                }
468                  if (dif <= 1e-4) {
469                          memset(mtx_data+mtx_offset, 0, sizeof(float)*3*nskypatch);
470                          continue;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines