diff liboctave/mx-ext.h @ 7789:82be108cc558

First attempt at single precision tyeps * * * corrections to qrupdate single precision routines * * * prefer demotion to single over promotion to double * * * Add single precision support to log2 function * * * Trivial PROJECT file update * * * Cache optimized hermitian/transpose methods * * * Add tests for tranpose/hermitian and ChangeLog entry for new transpose code
author David Bateman <dbateman@free.fr>
date Sun, 27 Apr 2008 22:34:17 +0200
parents a1dbe9d80eee
children 64cf956a109c
line wrap: on
line diff
--- a/liboctave/mx-ext.h	Wed May 14 18:09:56 2008 +0200
+++ b/liboctave/mx-ext.h	Sun Apr 27 22:34:17 2008 +0200
@@ -33,11 +33,15 @@
 
 #include "dbleDET.h"
 #include "CmplxDET.h"
+#include "floatDET.h"
+#include "fCmplxDET.h"
 
 // Result of a Cholesky Factorization
 
 #include "dbleCHOL.h"
 #include "CmplxCHOL.h"
+#include "floatCHOL.h"
+#include "fCmplxCHOL.h"
 
 // Result of a Hessenberg Decomposition
 
@@ -48,11 +52,15 @@
 
 #include "dbleSCHUR.h"
 #include "CmplxSCHUR.h"
+#include "floatSCHUR.h"
+#include "fCmplxSCHUR.h"
 
 // Result of a Singular Value Decomposition.
 
 #include "dbleSVD.h"
 #include "CmplxSVD.h"
+#include "floatSVD.h"
+#include "fCmplxSVD.h"
 
 // Result of an Eigenvalue computation.
 
@@ -62,6 +70,8 @@
 
 #include "dbleLU.h"
 #include "CmplxLU.h"
+#include "floatLU.h"
+#include "fCmplxLU.h"
 
 // Result of a QR decomposition.