Skip to content

Commit

Permalink
chasing lnux runtime issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jtwhite79 committed Aug 25, 2023
1 parent 7c73793 commit 07ddce1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/libs/pestpp_common/Localizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -896,7 +896,8 @@ void AutoAdaLocThread::work(int thread_id)
par_ss = pe_diff.col(jpar) * (1.0 / par_std[jpar]);
if (list_obs.size() > 0)
{
sobs = list_obs[par_names[jpar]]; // dont use at here - this way, any missing pars just get no obs
if (list_obs.find(par_names[jpar]) != list_obs.end())
sobs = list_obs[par_names[jpar]]; // dont use at here - this way, any missing pars just get no obs
use_list_obs = true;
}
else
Expand Down

0 comments on commit 07ddce1

Please sign in to comment.