Merge pull request #1424 from PullRequestOpen/pullrequest-cosmetic-fixes

PullRequest Cosmetic Fixes [2019-12-05]
This commit is contained in:
Paul Romano 2019-12-09 17:07:49 -06:00 committed by GitHub
commit 4013675cde
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
40 changed files with 239 additions and 215 deletions

View file

@ -191,8 +191,8 @@ double ContinuousTabular::sample(double E, uint64_t* seed) const
double E_i1_1 = distribution_[i+1].e_out[n_discrete];
double E_i1_K = distribution_[i+1].e_out[n_energy_out - 1];
double E_1 = E_i_1 + r*(E_i1_1 - E_i_1);
double E_K = E_i_K + r*(E_i1_K - E_i_K);
double E_1 = E_i_1 + r * (E_i1_1 - E_i_1);
double E_K = E_i_K + r * (E_i1_K - E_i_K);
// Determine outgoing energy bin
n_energy_out = distribution_[l].e_out.size();
@ -317,7 +317,7 @@ double Evaporation::sample(double E, uint64_t* seed) const
if (x <= y) break;
}
return x*theta;
return x * theta;
}
//==============================================================================