Mercurial > hg > octave-lyh
diff src/ov-bool-sparse.cc @ 5775:ace8d8d26933
[project @ 2006-04-24 19:13:06 by jwe]
author | jwe |
---|---|
date | Mon, 24 Apr 2006 19:13:11 +0000 |
parents | 8d7162924bd3 |
children | faafc2d98b8d |
line wrap: on
line diff
--- a/src/ov-bool-sparse.cc +++ b/src/ov-bool-sparse.cc @@ -89,7 +89,7 @@ bool octave_sparse_bool_matrix::valid_as_scalar_index (void) const { - // XXX FIXME XXX + // FIXME return false; } @@ -100,7 +100,7 @@ if (numel () > 0) { - // XXX FIXME XXX -- is warn_fortran_indexing the right variable here? + // FIXME -- is warn_fortran_indexing the right variable here? if (Vwarn_fortran_indexing) gripe_implicit_conversion ("bool sparse matrix", "real scalar"); @@ -119,10 +119,10 @@ Complex retval (tmp, tmp); - // XXX FIXME XXX -- maybe this should be a function, valid_as_scalar() + // FIXME -- maybe this should be a function, valid_as_scalar() if (rows () > 0 && columns () > 0) { - // XXX FIXME XXX -- is warn_fortran_indexing the right variable here? + // FIXME -- is warn_fortran_indexing the right variable here? if (Vwarn_fortran_indexing) gripe_implicit_conversion ("bool sparse matrix", "complex scalar"); @@ -142,7 +142,7 @@ return tmp.convert_to_str (pad, force, type); } -// XXX FIXME XXX These are inefficient ways of creating full matrices +// FIXME These are inefficient ways of creating full matrices Matrix octave_sparse_bool_matrix::matrix_value (bool) const