From 0f0a059138da0fc92987848fbadc920291a14169 Mon Sep 17 00:00:00 2001 From: jdub Date: Fri, 12 Aug 2022 10:59:14 -0500 Subject: [PATCH] fix for par en with non standard names --- src/libs/common/config_os.h | 2 +- src/libs/pestpp_common/EnsembleMethodUtils.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libs/common/config_os.h b/src/libs/common/config_os.h index 9c253942..a5f742d7 100644 --- a/src/libs/common/config_os.h +++ b/src/libs/common/config_os.h @@ -2,7 +2,7 @@ #define CONFIG_OS_H_ -#define PESTPP_VERSION "5.1.19"; +#define PESTPP_VERSION "5.1.20"; #if defined(_WIN32) || defined(_WIN64) #define OS_WIN diff --git a/src/libs/pestpp_common/EnsembleMethodUtils.cpp b/src/libs/pestpp_common/EnsembleMethodUtils.cpp index 6019afeb..3c2291d0 100644 --- a/src/libs/pestpp_common/EnsembleMethodUtils.cpp +++ b/src/libs/pestpp_common/EnsembleMethodUtils.cpp @@ -3883,7 +3883,7 @@ void EnsembleMethod::initialize(int cycle, bool run, bool use_existing) if ((obs_restart_csv.size() == 0) && (!pe_drawn) && (oe_drawn)) { vector rnames = pe.get_real_names(); - oe_base.set_real_names(rnames); + oe_base.set_real_names(rnames,true); message(2, "resetting obs + noise ensemble real names to parameter ensemble real names"); }