From 1b1c3d6755e6681d909a8d40824ff90ccc6b024d Mon Sep 17 00:00:00 2001
From: Elias Pipping <elias.pipping@fu-berlin.de>
Date: Wed, 10 Oct 2012 15:14:20 +0200
Subject: [PATCH] Cleanup

---
 src/one-body-sample.py | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/src/one-body-sample.py b/src/one-body-sample.py
index be879d3c..4c09b151 100644
--- a/src/one-body-sample.py
+++ b/src/one-body-sample.py
@@ -1,15 +1,6 @@
 class neumannCondition:
     def __call__(self, x):
         return 0
-        fst = 3e3
-        snd = 5e3
-        trd = 3e3
-        if x < 1.0/3:
-            return fst * x
-        elif x < 2.0/3:
-            return snd * (x - 1.0/3) + fst * 1.0/3
-        else:
-            return trd * (x - 2.0/3) + (fst + snd) * 1.0/3
 
 class dirichletCondition:
     def __call__(self, x):
-- 
GitLab