* Destruction.
*/
virtual ~SparseLUDecomposition ();
+
+ /**
+ * Parameters for
+ * SparseDecomposition.
+ */
+ class AdditionalData
+ {
+ public:
+ /**
+ * Constructor.
+ */
+ AdditionalData (const double strengthen_diagonal=0);
+
+ /**
+ * strengthen_diag parameter.
+ */
+ double strengthen_diagonal;
+ };
/**
* Reinitialize the object but
return decomposed;
}
+
+
+//----------------------------------------------------------------------//
+
+
+template <typename number>
+inline
+SparseLUDecomposition<number>::AdditionalData::AdditionalData (
+ const double strengthen_diagonal):
+ strengthen_diagonal(strengthen_diagonal)
+{}
+
+
#endif // __deal2__sparse_decomposition_h
In the beginning the Universe was created. This has made a lot of
people very angry and has been widely regarded as a bad move.
Douglas Adams