changed: add 'symmetric' as an alias for 'symmetrized' beta type

This commit is contained in:
Arne Morten Kvarving 2022-04-22 11:00:29 +02:00
parent 71fa5975da
commit ddf260795f

View File

@ -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);
}