got rid of flagged uninitialzed variables warnings.
This commit is contained in:
parent
21cfa2d660
commit
f4e32dee2a
1 changed files with 2 additions and 2 deletions
|
|
@ -105,7 +105,7 @@ namespace VCSnonideal {
|
||||||
bool allMinorZeroedSpecies = false;
|
bool allMinorZeroedSpecies = false;
|
||||||
int forced, iph;
|
int forced, iph;
|
||||||
double dx, xx, par;
|
double dx, xx, par;
|
||||||
int dofast, soldel, ll, it1;
|
int dofast, soldel, ll = 0, it1 = 0;
|
||||||
int lec, npb, iti, i, lnospec;
|
int lec, npb, iti, i, lnospec;
|
||||||
int rangeErrorFound = 0;
|
int rangeErrorFound = 0;
|
||||||
bool giveUpOnElemAbund = false;
|
bool giveUpOnElemAbund = false;
|
||||||
|
|
@ -2544,7 +2544,7 @@ namespace VCSnonideal {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
int jcomp;
|
int jcomp;
|
||||||
double deltaLarge, dj, dxWant, dxPerm, dxPerm2;
|
double deltaLarge, dj, dxWant, dxPerm = 0.0, dxPerm2 = 0.0;
|
||||||
for (int kcomp = 0; kcomp < m_numComponents; ++kcomp) {
|
for (int kcomp = 0; kcomp < m_numComponents; ++kcomp) {
|
||||||
if (m_phaseID[kcomp] == iph) {
|
if (m_phaseID[kcomp] == iph) {
|
||||||
#ifdef DEBUG_MODE
|
#ifdef DEBUG_MODE
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue