unit_support_points.exe : unit_support_points.g.$(OBJEXT) $(libraries)
parameter_handler_1.exe : parameter_handler_1.g.$(OBJEXT) $(libraries)
parameter_handler_2.exe : parameter_handler_2.g.$(OBJEXT) $(libraries)
+sparse_lu_decomposition_1.exe: sparse_lu_decomposition_1.g.$(OBJEXT) $(libraries)
+
tests = anna_1 anna_2 anna_3 anna_4 anna_5 anna_6 \
geometry_info_1 \
fe_tools_05 fe_tools_06 fe_tools_07 fe_tools_08 \
roy_1 \
denis_1 \
- unit_support_points parameter_handler_1 parameter_handler_2
+ unit_support_points parameter_handler_1 parameter_handler_2 \
+ sparse_lu_decomposition_1
############################################################
--- /dev/null
+//---------------------------- sparse_lu_decomposition_1.cc ---------------------------
+// $Id$
+// Version: $Name$
+//
+// Copyright (C) 2003 by the deal.II authors
+//
+// This file is subject to QPL and may not be distributed
+// without copyright and license information. Please refer
+// to the file deal.II/doc/license.html for the text and
+// further information on this license.
+//
+//---------------------------- sparse_lu_decomposition_1.cc ---------------------------
+
+// this file didn't compile at one point in time due to the private
+// inheritance of SparseMatrix by SparseLUDecomposition, and the
+// associated lack of accessibility of the Subscriptor functions to
+// the SmartPointer
+
+#include <base/logstream.h>
+#include <base/smartpointer.h>
+#include <lac/sparse_ilu.h>
+#include <fstream>
+
+
+
+int main ()
+{
+ std::ofstream logfile("sparse_lu_decomposition_1.output");
+ deallog.attach(logfile);
+ deallog.depth_console(0);
+
+ SmartPointer<SparseLUDecomposition<double> > sparse_decomp;
+
+ deallog << "OK" << std::endl;
+
+ return 0;
+}
+