]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Small clean-ups. Remove table which didn't get into the HTML output anyway.
authorwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Tue, 7 Mar 2000 15:26:23 +0000 (15:26 +0000)
committerwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Tue, 7 Mar 2000 15:26:23 +0000 (15:26 +0000)
git-svn-id: https://svn.dealii.org/trunk@2564 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/lac/include/lac/full_matrix.h

index a7c7aa1a5408d092c63e290a90d7b39f56c6aa0f..0ef1df83e40d2dc258a5cf2ee103696567e550c1 100644 (file)
 
 
 // forward declarations
-
 template<typename number> class Vector;
 
 
+
 /**
  * Rectangular/quadratic full matrix.
  *
@@ -44,25 +44,6 @@ template<typename number> class Vector;
  * vector argument to functions. If there is no argument with a number
  * type, the matrix number type is used.
  *
- * <TABLE BORDER=1>
- * <TR><TH ALIGN=CENTER><B>this</B><TH ALIGN=CENTER><B>other
- * matrix</B><TH ALIGN=CENTER><B>vector</B><TH ALIGN=CENTER><B>rhs in
- * residual</B></TR>
- * <TR><TD ALIGN=CENTER>double<TD ALIGN=CENTER>double<TD ALIGN=CENTER>double<TD ALIGN=CENTER>double</TR>
- * <TR><TD ALIGN=CENTER>double<TD ALIGN=CENTER>double<TD ALIGN=CENTER>float<TD ALIGN=CENTER>double</TR>
- * <TR><TD ALIGN=CENTER>double<TD ALIGN=CENTER>double<TD ALIGN=CENTER>float<TD ALIGN=CENTER>float</TR>
- * <TR><TD ALIGN=CENTER>float<TD ALIGN=CENTER>float<TD ALIGN=CENTER>double<TD ALIGN=CENTER>double</TR>
- * <TR><TD ALIGN=CENTER>float<TD ALIGN=CENTER>float<TD ALIGN=CENTER>float<TD ALIGN=CENTER>double</TR>
- * <TR><TD ALIGN=CENTER>float<TD ALIGN=CENTER>float<TD ALIGN=CENTER>float<TD ALIGN=CENTER>float</TR>
- * <CAPTION>Instantiations provided in the library</CAPTION>
- * </TABLE>
- *
- * In the documentation of member functions, the following conventions are adopted:
- * \begin{itemize}
- *  \item THIS matrix is always named #A#.
- *  \item Matrices are always uppercase, vectors and scalars are lowercase.
- *  \item #Transp(A)# denotes the transpose of matrix A.
- * \end{itemize}
  *
  * @author Guido Kanschat, Franz-Theo Suttmeier, Wolfgang Bangerth
  */
@@ -135,7 +116,7 @@ class FullMatrix : public Subscriptor
     FullMatrix<number>& operator = (const FullMatrix<number2>& src);
 
 
-/**
+                                    /**
                                      * Fill rectangular block.
                                      *
                                      * The matrix #src# is copied
@@ -670,6 +651,7 @@ FullMatrix<number>::el (const unsigned int i, const unsigned int j)
 };
 
 
+
 template <typename number>
 inline number
 FullMatrix<number>::el (const unsigned int i, const unsigned int j) const
@@ -678,6 +660,7 @@ FullMatrix<number>::el (const unsigned int i, const unsigned int j) const
 };
 
 
+
 template <typename number>
 inline unsigned int
 FullMatrix<number>::m() const
@@ -686,6 +669,7 @@ FullMatrix<number>::m() const
 };
 
 
+
 template <typename number>
 inline unsigned int
 FullMatrix<number>::n() const
@@ -694,13 +678,6 @@ FullMatrix<number>::n() const
 };
 
 
-// template <typename number>
-// inline number
-// FullMatrix<number>::el (const unsigned int i) const
-// {
-//   return val[i];
-// };
-
 
 template <typename number>
 inline number
@@ -712,6 +689,7 @@ FullMatrix<number>::operator() (const unsigned int i, const unsigned int j) cons
 };
 
 
+
 template <typename number>
 inline number &
 FullMatrix<number>::operator() (const unsigned int i, const unsigned int j)
@@ -719,7 +697,7 @@ FullMatrix<number>::operator() (const unsigned int i, const unsigned int j)
   Assert (i<dim_image, ExcInvalidIndex (i, dim_image));
   Assert (j<dim_range, ExcInvalidIndex (j, dim_range));
   return el(i,j);
-}
+};
 
 
 /*----------------------------   fullmatrix.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


Typeset in Trocchi and Trocchi Bold Sans Serif.