Skip to content

Commit

Permalink
increment version, added warning about mean-shift iterations
Browse files Browse the repository at this point in the history
  • Loading branch information
jtwhite79 committed Oct 31, 2023
1 parent 57111e1 commit 4969c36
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/common/config_os.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#define CONFIG_OS_H_


#define PESTPP_VERSION "5.2.8";
#define PESTPP_VERSION "5.2.9";

#if defined(_WIN32) || defined(_WIN64)
#define OS_WIN
Expand Down
4 changes: 4 additions & 0 deletions src/libs/pestpp_common/EnsembleMethodUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4994,6 +4994,10 @@ void EnsembleMethod::sanity_checks()
{
errors.push_back("multimodal alpha < 0.001");
}
if (ppo->get_ies_n_iter_mean() > 0)
{
warnings.push_back("mean-shifting iterations is a new concept and subject to change - experimental at best");
}

if (warnings.size() > 0)
{
Expand Down

0 comments on commit 4969c36

Please sign in to comment.