# HG changeset patch # User Rik # Date 1443232241 25200 # Node ID 71e60880105a0d9f6f72322758a1da752570b470 # Parent 96153b16febe8a3d4d40bc1410d6d4f5c295315d maint: Use Octave coding convention for parenthesis in __ilu__.cc. * __ilu__.cc: Use Octave coding convention for parenthesis.cc. diff -r 96153b16febe -r 71e60880105a libinterp/corefcn/__ilu__.cc --- a/libinterp/corefcn/__ilu__.cc Fri Sep 25 16:15:14 2015 -0700 +++ b/libinterp/corefcn/__ilu__.cc Fri Sep 25 18:50:41 2015 -0700 @@ -529,10 +529,10 @@ Array cols_norm, rows_norm; param_list.append (args(0).sparse_complex_matrix_value ()); SparseComplexMatrix sm_u = - feval("triu", param_list)(0).sparse_complex_matrix_value (); + feval ("triu", param_list)(0).sparse_complex_matrix_value (); param_list.append (-1); SparseComplexMatrix sm_l = - feval("tril", param_list)(0).sparse_complex_matrix_value (); + feval ("tril", param_list)(0).sparse_complex_matrix_value (); param_list(1) = "rows"; rows_norm = feval ("norm", param_list)(0).complex_vector_value (); param_list(1) = "cols"; @@ -584,7 +584,7 @@ // That is necessary for the JKI (milu = "row") variant. if (opt == ROW) - sm = sm.transpose(); + sm = sm.transpose (); // Extract pointers to the arrays for faster access inside loops octave_idx_type* cidx_in = sm.cidx (); @@ -613,7 +613,7 @@ Array ridx_out_u (dim_vector (max_len_u, 1)); octave_idx_type* ridx_u = ridx_out_u.fortran_vec (); Array data_out_u (dim_vector (max_len_u, 1)); - T* data_u = data_out_u.fortran_vec(); + T* data_u = data_out_u.fortran_vec (); // Working arrays and permutation arrays octave_idx_type w_len_u, w_len_l;