view liboctave/util/module.mk @ 19010:3fb030666878 draft default tip dspies

Added special-case logical-indexing function * logical-index.h (New file) : Logical-indexing function. May be called on octave_value types via call_bool_index * nz-iterators.h : Add base-class nz_iterator for iterator types. Array has template bool for whether to internally store row-col or compute on the fly Add skip_ahead method which skips forward to the next nonzero after its argument Add flat_index for computing octave_idx_type index of current position (with assertion failure in the case of overflow) Move is_zero to separate file * ov-base-diag.cc, ov-base-mat.cc, ov-base-sparse.cc, ov-perm.cc (do_index_op): Add call to call_bool_index in logical-index.h * Array.h : Move forward-declaration for array_iterator to separate header file * dim-vector.cc (dim_max): Refers to idx-bounds.h (max_idx) * array-iter-decl.h (New file): Header file for forward declaration of array-iterator * direction.h : Add constants fdirc and bdirc to avoid having to reconstruct them * dv-utils.h, dv-utils.cc (New files) : Utility functions for querying and constructing dim-vectors * idx-bounds.h (New file) : Utility constants and functions for determining whether things will overflow the maximum allowed bounds * interp-idx.h (New function : to_flat_idx) : Converts row-col pair to linear index of octave_idx_type * is-zero.h (New file) : Function for determining whether an element is zero * logical-index.tst : Add tests for correct return-value dimensions and large sparse matrix behavior
author David Spies <dnspies@gmail.com>
date Fri, 25 Jul 2014 13:39:31 -0600
parents 2e0613dadfee
children
line wrap: on
line source

EXTRA_DIST += \
  util/module.mk

UTIL_INC = \
  util/action-container.h \
  util/array-iter-decl.h \
  util/base-list.h \
  util/byte-swap.h \
  util/caseless-str.h \
  util/cmd-edit.h \
  util/cmd-hist.h \
  util/data-conv.h \
  util/direction.h \
  util/dv-utils.h \
  util/find.h \
  util/functor.h \
  util/glob-match.h \
  util/idx-bounds.h \
  util/interp-idx.h \
  util/is-zero.h \
  util/lo-array-gripes.h \
  util/lo-cutils.h \
  util/logical-index.h \
  util/lo-ieee.h \
  util/lo-macros.h \
  util/lo-math.h \
  util/lo-traits.h \
  util/lo-utils.h \
  util/min-with-nnz.h \
  util/nz-iterators.h \
  util/oct-alloc.h \
  util/oct-base64.h \
  util/oct-binmap.h \
  util/oct-cmplx.h \
  util/oct-glob.h \
  util/oct-inttypes.h \
  util/oct-locbuf.h \
  util/oct-md5.h \
  util/oct-mem.h \
  util/oct-mutex.h \
  util/oct-refcount.h \
  util/oct-rl-edit.h \
  util/oct-rl-hist.h \
  util/oct-shlib.h \
  util/oct-sort.h \
  util/oct-sparse.h \
  util/pathsearch.h \
  util/lo-regexp.h \
  util/singleton-cleanup.h \
  util/sparse-sort.h \
  util/sparse-util.h \
  util/statdefs.h \
  util/str-vec.h \
  util/sun-utils.h \
  util/unwind-prot.h \
  util/url-transfer.h

UTIL_C_SRC = \
  util/f2c-main.c \
  util/lo-cutils.c \
  util/oct-rl-edit.c \
  util/oct-rl-hist.c 

UTIL_SRC = \
  util/cmd-edit.cc \
  util/cmd-hist.cc \
  util/data-conv.cc \
  util/dv-utils.cc \
  util/glob-match.cc \
  util/lo-array-gripes.cc \
  util/lo-ieee.cc \
  util/lo-utils.cc \
  util/oct-alloc.cc \
  util/oct-base64.cc \
  util/oct-glob.cc \
  util/oct-inttypes.cc \
  util/oct-locbuf.cc \
  util/oct-md5.cc \
  util/oct-mutex.cc \
  util/oct-shlib.cc \
  util/pathsearch.cc \
  util/lo-regexp.cc \
  util/singleton-cleanup.cc \
  util/sparse-sort.cc \
  util/sparse-util.cc \
  util/str-vec.cc \
  util/unwind-prot.cc \
  util/url-transfer.cc \
  $(UTIL_C_SRC)

TEMPLATE_SRC += \
  util/oct-sort.cc

OTHER_INC += \
  util/kpse.cc

noinst_LTLIBRARIES += util/libutil.la

util_libutil_la_SOURCES = $(UTIL_SRC)
util_libutil_la_CPPFLAGS = \
  $(liboctave_la_CPPFLAGS) \
  $(PCRE_CPPFLAGS) \
  $(SPARSE_XCPPFLAGS)