From bfecf1178479502e0437514457d3fff91ec8b129 Mon Sep 17 00:00:00 2001 From: Owen Green Date: Tue, 18 Sep 2018 14:54:21 +0100 Subject: [PATCH] FluidHPSS: Update for new parameter names --- src/FluidHPSS/FluidHPSS.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/FluidHPSS/FluidHPSS.cpp b/src/FluidHPSS/FluidHPSS.cpp index 9f193c3..5efcb09 100644 --- a/src/FluidHPSS/FluidHPSS.cpp +++ b/src/FluidHPSS/FluidHPSS.cpp @@ -118,10 +118,10 @@ namespace hpss{ }; std::map paramConstraints{ - {"pthreshf1",{"pthreshf2", std::less()}}, - {"hthreshf1",{"hthreshf2", std::less()}}, - {"pthreshf2",{"pthreshf1", std::greater()}}, - {"hthreshf2",{"hthreshf1", std::greater()}} + {"ptf1",{"pthreshf2", std::less()}}, + {"htf1",{"htf2", std::less()}}, + {"ptf2",{"ptf1", std::greater()}}, + {"htf2",{"htf1", std::greater()}} };