Skip to content
Snippets Groups Projects
Commit 0e970b86 authored by Tom Fischer's avatar Tom Fischer
Browse files

[PL/CT] Fix bug in CreateComponentTransportProcess.

parent 0714c012
No related branches found
No related tags found
No related merge requests found
...@@ -95,7 +95,7 @@ std::unique_ptr<Process> createComponentTransportProcess( ...@@ -95,7 +95,7 @@ std::unique_ptr<Process> createComponentTransportProcess(
//! \ogs_file_param{prj__processes__process__ComponentTransport__coupling_scheme} //! \ogs_file_param{prj__processes__process__ComponentTransport__coupling_scheme}
config.getConfigParameter<std::string>("coupling_scheme", config.getConfigParameter<std::string>("coupling_scheme",
"monolithic_scheme"); "monolithic_scheme");
const bool use_monolithic_scheme = (coupling_scheme == "staggered"); const bool use_monolithic_scheme = (coupling_scheme != "staggered");
// Process variable. // Process variable.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment