From ddf260795ff16405f0dd6588a1787e46296a411f Mon Sep 17 00:00:00 2001 From: Arne Morten Kvarving Date: Fri, 22 Apr 2022 11:00:29 +0200 Subject: [PATCH] changed: add 'symmetric' as an alias for 'symmetrized' beta type --- src/SIM/AdaptiveSetup.C | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/SIM/AdaptiveSetup.C b/src/SIM/AdaptiveSetup.C index 5f853e0c..46c02f0e 100644 --- a/src/SIM/AdaptiveSetup.C +++ b/src/SIM/AdaptiveSetup.C @@ -143,7 +143,8 @@ bool AdaptiveSetup::parse (const TiXmlElement* elem) threshold = TRUE_BETA; else if (type.compare("dorfel") == 0) threshold = DORFEL; - else if (type.compare("symmetrized") == 0) { + else if (type.compare("symmetrized") == 0 || + type.compare("symmetric") == 0) { threshold = SYMMETRIZED; utl::getAttribute(child,"eps",symmEps); }