diff liboctave/CmplxLU.h @ 2049:468a96dd03fc

[project @ 1996-03-29 20:09:05 by jwe]
author jwe
date Fri, 29 Mar 1996 20:09:50 +0000
parents 1b57120c997b
children 8b262e771614
line wrap: on
line diff
--- a/liboctave/CmplxLU.h
+++ b/liboctave/CmplxLU.h
@@ -32,20 +32,22 @@
 #include "CMatrix.h"
 
 class
-ComplexLU : public base_lu <ComplexMatrix, Matrix>
+ComplexLU : public base_lu <ComplexMatrix, Complex, Matrix, double>
 {
 public:
 
-  ComplexLU (void) : base_lu <ComplexMatrix, Matrix> () { }
+  ComplexLU (void)
+    : base_lu <ComplexMatrix, Complex, Matrix, double> () { }
 
   ComplexLU (const ComplexMatrix& a);
 
-  ComplexLU (const ComplexLU& a) : base_lu <ComplexMatrix, Matrix> (a) { }
+  ComplexLU (const ComplexLU& a)
+    : base_lu <ComplexMatrix, Complex, Matrix, double> (a) { }
 
   ComplexLU& operator = (const ComplexLU& a)
     {
       if (this != &a)
-	base_lu <ComplexMatrix, Matrix> :: operator = (a);
+	base_lu <ComplexMatrix, Complex, Matrix, double> :: operator = (a);
 
       return *this;
     }