Code cleanup. Removed some dead code from throughout.

This commit is contained in:
John Tramm 2020-01-08 22:55:30 +00:00
parent 5e640f79ab
commit b41f3aadb4
3 changed files with 1 additions and 50 deletions

View file

@ -405,7 +405,6 @@ namespace simulation {
int current_batch;
int current_gen;
//int64_t current_work;
bool initialized {false};
double keff {1.0};
double keff_std;
@ -574,7 +573,7 @@ void finalize_generation()
global_tally_leakage = 0.0;
if (settings::run_mode == RUN_MODE_EIGENVALUE) {
// We need to move all the stuff from the shared_fission_bank into the real one.
// Copy shared fission bank into regular bank for use in MPI synchronization
for( int i = 0; i < simulation::shared_fission_bank_length; i++ )
simulation::fission_bank.push_back(simulation::shared_fission_bank[i]);
simulation::shared_fission_bank_length = 0;