From 0e970b86960d379ffca31fa6e5530a7f730a7791 Mon Sep 17 00:00:00 2001
From: Thomas Fischer <thomas.fischer@ufz.de>
Date: Tue, 13 Oct 2020 15:06:10 +0200
Subject: [PATCH] [PL/CT] Fix bug in CreateComponentTransportProcess.

---
 .../ComponentTransport/CreateComponentTransportProcess.cpp      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ProcessLib/ComponentTransport/CreateComponentTransportProcess.cpp b/ProcessLib/ComponentTransport/CreateComponentTransportProcess.cpp
index 60f3e95e4f6..a8964d06159 100644
--- a/ProcessLib/ComponentTransport/CreateComponentTransportProcess.cpp
+++ b/ProcessLib/ComponentTransport/CreateComponentTransportProcess.cpp
@@ -95,7 +95,7 @@ std::unique_ptr<Process> createComponentTransportProcess(
         //! \ogs_file_param{prj__processes__process__ComponentTransport__coupling_scheme}
         config.getConfigParameter<std::string>("coupling_scheme",
                                                "monolithic_scheme");
-    const bool use_monolithic_scheme = (coupling_scheme == "staggered");
+    const bool use_monolithic_scheme = (coupling_scheme != "staggered");
 
     // Process variable.
 
-- 
GitLab