sweep.c: Use gsl_matrix_memcpy instead of element by element copying.
authorJohn Darrington <john@darrington.wattle.id.au>
Tue, 15 Nov 2011 14:47:10 +0000 (15:47 +0100)
committerJohn Darrington <john@darrington.wattle.id.au>
Tue, 15 Nov 2011 14:47:10 +0000 (15:47 +0100)
Although only the upper triangle needs to be copied, there is no
disadvantage copying the entire matrix (the lower triangle is never read)
and the expense of using two loops is likely to outweigh the saving achieved
by avoiding the other triangle.


No differences found