From a3c4ca5d95d87e85775de5fb74c42001ba37d4df Mon Sep 17 00:00:00 2001
From: Elias Pipping <elias.pipping@fu-berlin.de>
Date: Fri, 9 Sep 2011 17:45:16 +0200
Subject: [PATCH] Use a more complicated example

---
 src/bisection-example-new.cc | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/bisection-example-new.cc b/src/bisection-example-new.cc
index 852df8c6..c7a5e0be 100644
--- a/src/bisection-example-new.cc
+++ b/src/bisection-example-new.cc
@@ -201,8 +201,8 @@ void testSampleFunction() {
 
   SampleFunctional::SmallMatrix A;
   A[0][0] = 3;
-  A[0][1] = 0;
-  A[1][0] = 0;
+  A[0][1] = 1.5;
+  A[1][0] = 1.5;
   A[1][1] = 3;
   SampleFunctional::SmallVector b;
   b[0] = 1;
@@ -232,8 +232,8 @@ void testTrivialFunction() {
 
   SampleFunctional::SmallMatrix A;
   A[0][0] = 3;
-  A[0][1] = 0;
-  A[1][0] = 0;
+  A[0][1] = 1.5;
+  A[1][0] = 1.5;
   A[1][1] = 3;
   SampleFunctional::SmallVector b;
   b[0] = 1;
-- 
GitLab