comparison liboctave/DASRT.cc @ 15020:560317fd5977

maint: Cuddle open bracket used for indexing C++ arrays in source code. * Array-util.cc, Array.cc, DASPK.cc, DASRT.cc, DASSL.cc, LSODE.cc, MatrixType.cc, Sparse.cc, Sparse.h, dim-vector.h, eigs-base.cc, idx-vector.cc, oct-alloc.cc, oct-locbuf.cc, oct-locbuf.h, oct-mem.h, oct-sort.cc, oct-time.cc, sparse-base-chol.cc, sparse-dmsolve.cc, ccolamd.cc, colamd.cc, spparms.cc, symbfact.cc, symrcm.cc, help.cc, ls-mat5.cc, pt-idx.cc, utils.cc, variables.cc, zfstream.cc: Cuddle open bracket used for indexing C++ arrays in source code.
author Rik <rik@octave.org>
date Thu, 26 Jul 2012 09:25:47 -0700
parents 3d8ace26c5b4
children
comparison
equal deleted inserted replaced
15019:ae3670d4df29 15020:560317fd5977
119 119
120 Matrix tmp_pd = (*user_jsub) (tmp_state, tmp_deriv, time, cj); 120 Matrix tmp_pd = (*user_jsub) (tmp_state, tmp_deriv, time, cj);
121 121
122 for (octave_idx_type j = 0; j < nn; j++) 122 for (octave_idx_type j = 0; j < nn; j++)
123 for (octave_idx_type i = 0; i < nn; i++) 123 for (octave_idx_type i = 0; i < nn; i++)
124 pd [nn * j + i] = tmp_pd.elem (i, j); 124 pd[nn * j + i] = tmp_pd.elem (i, j);
125 125
126 END_INTERRUPT_WITH_EXCEPTIONS; 126 END_INTERRUPT_WITH_EXCEPTIONS;
127 127
128 return 0; 128 return 0;
129 } 129 }