diff liboctave/base-lu.h @ 7515:f3c00dc0912b

Eliminate the rest of the dispatched sparse functions
author David Bateman <dbateman@free.fr>
date Fri, 22 Feb 2008 15:50:51 +0100
parents a1dbe9d80eee
children 445d27d79f4e
line wrap: on
line diff
--- a/liboctave/base-lu.h
+++ b/liboctave/base-lu.h
@@ -24,6 +24,7 @@
 #define octave_base_lu_h 1
 
 #include "MArray.h"
+#include "dColVector.h"
 
 template <class lu_type, class lu_elt_type, class p_type, class p_elt_type>
 class
@@ -51,8 +52,12 @@
 
   lu_type U (void) const;
 
+  lu_type Y (void) const { return a_fact; }
+
   p_type P (void) const;
 
+  ColumnVector P_vec (void) const;
+
 protected:
 
   lu_type a_fact;