changeset 2826:d6867cd782c7

[project @ 1997-03-25 23:36:39 by jwe]
author jwe
date Tue, 25 Mar 1997 23:38:09 +0000
parents 60ae49e1284f
children 2387b8694c75
files PROJECTS configure.in liboctave/Array-b.cc
diffstat 3 files changed, 14 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/PROJECTS
+++ b/PROJECTS
@@ -81,10 +81,6 @@
     user-supplied function for Matlab compatibility.  Don't place an
     upper limit on the number of arguments.
 
-  * Check matrices for symmetry before computing eigenvalues, etc.,
-    and then use the routines for symmetric matrices for improved
-    performance.
-
   * Check matrix classes for proper handling of empty matrices.
 
   * Force all empty matrices to be 0x0 even when other dimensions have
--- a/configure.in
+++ b/configure.in
@@ -21,7 +21,7 @@
 ### Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 ### 02111-1307, USA. 
 
-AC_REVISION($Revision: 1.260 $)
+AC_REVISION($Revision: 1.261 $)
 AC_PREREQ(2.9)
 AC_INIT(src/octave.cc)
 AC_CONFIG_HEADER(config.h)
@@ -1148,7 +1148,7 @@
  -Winline -Wmissing-prototypes -Wnested-externs -Wpointer-arith \
  -Wstrict-prototypes -Wwrite-strings"
 
-GXX_PICKY_FLAGS="$GCC_PICKY_FLAGS -Wenum-clash -fno-nonnull-objects"
+GXX_PICKY_FLAGS="$GCC_PICKY_FLAGS -fno-nonnull-objects"
 
 AC_ARG_ENABLE(picky-flags,
   [  --enable-picky-flags    add picky options to CFLAGS, CXXFLAGS, FFLAGS],
--- a/liboctave/Array-b.cc
+++ b/liboctave/Array-b.cc
@@ -33,6 +33,18 @@
 
 template void assign (Array<bool>&, const Array<bool>&);
 
+#include "Array2.h"
+#include "Array2.cc"
+
+template class Array2<bool>;
+
+template void assign (Array2<bool>&, const Array2<bool>&);
+
+#include "DiagArray2.h"
+#include "DiagArray2.cc"
+
+template class DiagArray2<bool>;
+
 /*
 ;;; Local Variables: ***
 ;;; mode: C++ ***