From f7f359106346926819a4102f25b2223ef8b21ba2 Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Mon, 4 Feb 2019 10:55:39 -0600 Subject: [PATCH] example/step-4: Return the correct return value This commit reverts a stray change that should have probably never made it into 0e12f6f87a0b84fadd8df629f55da42a8494ce8f --- examples/step-4/step-4.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/step-4/step-4.cc b/examples/step-4/step-4.cc index a63c86d40e..a4b0aa5390 100644 --- a/examples/step-4/step-4.cc +++ b/examples/step-4/step-4.cc @@ -186,7 +186,7 @@ double RightHandSide::value(const Point &p, for (unsigned int i = 0; i < dim; ++i) return_value += 4.0 * std::pow(p(i), 4.0); - return 1.; // return_value; + return return_value; } -- 2.39.5