From 189de4d75668a921876b99fdef8f9f79d2e83ceb Mon Sep 17 00:00:00 2001
From: Elias Pipping <elias.pipping@fu-berlin.de>
Date: Tue, 11 Sep 2012 15:46:27 +0200
Subject: [PATCH] Comments

---
 src/timestepping.cc | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/src/timestepping.cc b/src/timestepping.cc
index caf7f1c0..98b89e79 100644
--- a/src/timestepping.cc
+++ b/src/timestepping.cc
@@ -35,10 +35,6 @@ class TimeSteppingScheme {
   double const tau;
 };
 
-// Implicit Euler: Solve the problem
-//
-// a(Delta u_new, v - Delta u_new) + j_tau(v) - j_tau(Delta u_new)
-// >= l(w - Delta u_new) - a(u_new, v - Delta u_new)
 template <class VectorType, class MatrixType, class FunctionType, int dim>
 class ImplicitEuler
     : public TimeSteppingScheme<VectorType, MatrixType, FunctionType, dim> {
@@ -94,7 +90,6 @@ class ImplicitEuler
   VectorType const *u_old_old_ptr;
 };
 
-// two-Stage implicit algorithm
 template <class VectorType, class MatrixType, class FunctionType, int dim>
 class ImplicitTwoStep
     : public TimeSteppingScheme<VectorType, MatrixType, FunctionType, dim> {
-- 
GitLab