Skip to content

Commit

Permalink
xcast constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
payetvin committed Jul 19, 2024
1 parent 8ba6f14 commit dc5f85b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ class XCast final: private Yuni::NonCopyable<XCast>
//! The correlation matrix for the current month
const Matrix<float>* pCorrMonth;

bool pNeverInitialized;
bool pNeverInitialized = true;
uint Nombre_points_intermediaire;

//! True when starting a new month (some data may have to be reinitialized)
Expand All @@ -191,7 +191,7 @@ class XCast final: private Yuni::NonCopyable<XCast>
uint pNDPMatrixCount;
uint pLevellingCount;

bool pAccuracyOnCorrelation;
bool pAccuracyOnCorrelation = false;
bool All_normal; // all processes are Normal

// les variables de A à CO sont des vues de ALPH à CORR pour un mois particulier
Expand Down
2 changes: 0 additions & 2 deletions src/solver/ts-generator/xcast/xcast.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,6 @@ enum
XCast::XCast(Data::Study& study, Data::TimeSeriesType ts, IResultWriter& writer):
study(study),
timeSeriesType(ts),
pNeverInitialized(true),
pAccuracyOnCorrelation(false),
pWriter(writer)
{
}
Expand Down

0 comments on commit dc5f85b

Please sign in to comment.