diff --git a/Explore/GStatCoordinator.cpp b/Explore/GStatCoordinator.cpp index 7b1139803..1e5329321 100644 --- a/Explore/GStatCoordinator.cpp +++ b/Explore/GStatCoordinator.cpp @@ -238,6 +238,7 @@ void GStatCoordinator::AllocateVectors() x_undefs.resize(tms); Gal_vecs.resize(tms); + Gal_vecs_orig.resize(tms); n.resize(tms, 0); @@ -325,6 +326,7 @@ void GStatCoordinator::InitFromVarInfo() } W = gw->gal ; Gal_vecs[t] = gw; + Gal_vecs_orig[t] = w_man_int->GetGal(w_id); } x = x_vecs[t]; diff --git a/Explore/GStatCoordinator.h b/Explore/GStatCoordinator.h index 9db1dcd85..00b727843 100644 --- a/Explore/GStatCoordinator.h +++ b/Explore/GStatCoordinator.h @@ -156,6 +156,7 @@ class GStatCoordinator : public WeightsManStateObserver boost::uuids::uuid w_id; std::vector Gal_vecs; + std::vector Gal_vecs_orig; wxString weight_name; int num_obs; // total # obs including neighborless obs diff --git a/version.h b/version.h index 72d4d514b..89a4e9262 100644 --- a/version.h +++ b/version.h @@ -2,10 +2,10 @@ namespace Gda { const int version_major = 1; const int version_minor = 8; const int version_build = 15; - const int version_subbuild = 15; + const int version_subbuild = 17; const int version_year = 2017; const int version_month = 1; - const int version_day = 24; + const int version_day = 25; const int version_night = 0; const int version_type = 2; // 0: alpha, 1: beta, 2: release }