From: schrage Date: Thu, 25 Mar 1999 10:02:56 +0000 (+0000) Subject: Fixed HTML entities. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=14bf197e9ab513c6a0664f13499a36ce5a0d9624;p=dealii-svn.git Fixed HTML entities. git-svn-id: https://svn.dealii.org/trunk@1047 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/tutorial/chapter-3.laplace/assemble.html b/deal.II/doc/tutorial/chapter-3.laplace/assemble.html index bdfc354c1b..ca19825859 100644 --- a/deal.II/doc/tutorial/chapter-3.laplace/assemble.html +++ b/deal.II/doc/tutorial/chapter-3.laplace/assemble.html @@ -115,7 +115,7 @@ an index vector that will allow us to reassemble the global matrix later on

Next we traverse all the cells and integrate the Laplace problem using the discretized Laplace operator. qc is a -Quadrature<dim&rt;. +Quadrature<dim>.

The outer loop traverses all the points of the quadrature qc. diff --git a/deal.II/doc/tutorial/chapter-3.laplace/laplace.html b/deal.II/doc/tutorial/chapter-3.laplace/laplace.html index c576c97cf1..f554104d8c 100644 --- a/deal.II/doc/tutorial/chapter-3.laplace/laplace.html +++ b/deal.II/doc/tutorial/chapter-3.laplace/laplace.html @@ -23,8 +23,8 @@ Let's have a look at the class definition: class Laplace { - Triangulation<2&rt; tr; - DoFHandler<2&rt; dof; + Triangulation<2> tr; + DoFHandler<2> dof; SparseMatrixStruct matrix_structure; LapMatrix A; diff --git a/deal.II/doc/tutorial/chapter-3.laplace/solution.html b/deal.II/doc/tutorial/chapter-3.laplace/solution.html index 853e883551..326f880ffc 100644 --- a/deal.II/doc/tutorial/chapter-3.laplace/solution.html +++ b/deal.II/doc/tutorial/chapter-3.laplace/solution.html @@ -24,7 +24,7 @@ Laplace::solve_primal() SolverControl control(1000, 1.e-10); - SolverCG<AdvMatrix, Vector<double&rt; &rt; solver(control, mem); + SolverCG<AdvMatrix, Vector<double> > solver(control, mem); solver.solve(A,u,f); diff --git a/deal.II/doc/tutorial/chapter-3.laplace/triangulation.html b/deal.II/doc/tutorial/chapter-3.laplace/triangulation.html index eff7db8329..0250a332c1 100644 --- a/deal.II/doc/tutorial/chapter-3.laplace/triangulation.html +++ b/deal.II/doc/tutorial/chapter-3.laplace/triangulation.html @@ -18,7 +18,7 @@ triangulation consists of only one finite element.

 
-Laplace::Laplace(Function<2&rt;& solution)		
+Laplace::Laplace(Function<2>& solution)		
 {
   tr.create_hypercube(-1.,1.);
 
diff --git a/deal.II/doc/tutorial/index.html b/deal.II/doc/tutorial/index.html
index a2099aeeb9..b1327bbea3 100644
--- a/deal.II/doc/tutorial/index.html
+++ b/deal.II/doc/tutorial/index.html
@@ -2,12 +2,12 @@
    "http://www.w3.org/TR/REC-html40/strict.dtd">
 
   
-    
+    
     The deal.II Tutorial
     
     
   
-    
+    Deal Logo
     

The deal.II Tutorial

or deal.II in several easy and some more hard lessons

@@ -73,7 +73,7 @@
Jan Schrage

- Last modified: Tue Mar 23 1999 + Last modified: Thu Mar 25 1999