• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

openmc-dev / openmc / 22694846817

04 Mar 2026 11:42PM UTC coverage: 81.537% (-0.2%) from 81.69%
22694846817

Pull #3808

github

web-flow
Merge 41317cfa2 into 2bd06660c
Pull Request #3808: Add properties to settings w/ documentation, c++ loading of filename, and python round-trip test

17549 of 25285 branches covered (69.4%)

Branch coverage included in aggregate %.

82 of 92 new or added lines in 8 files covered. (89.13%)

1498 existing lines in 55 files now uncovered.

57990 of 67359 relevant lines covered (86.09%)

44766605.57 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

77.27
/src/physics_common.cpp
1
#include "openmc/physics_common.h"
2

3
#include "openmc/random_lcg.h"
4
#include "openmc/settings.h"
5

6
namespace openmc {
7

8
//==============================================================================
9
// RUSSIAN_ROULETTE
10
//==============================================================================
11

12
void russian_roulette(Particle& p, double weight_survive)
1,661,981✔
13
{
14
  if (weight_survive * prn(p.current_seed()) < p.wgt()) {
1,661,981✔
15
    p.wgt() = weight_survive;
313,619✔
16
  } else {
17
    p.wgt() = 0.;
1,348,362✔
18
  }
19
}
1,661,981✔
20

21
void apply_russian_roulette(Particle& p)
2,147,483,647✔
22
{
23
  // Exit if survival biasing is turned off
24
  if (!settings::survival_biasing)
2,147,483,647✔
25
    return;
26

27
  // if survival normalization is on, use normalized weight cutoff and
28
  // normalized weight survive
29
  if (settings::survival_normalization) {
4,719,209!
UNCOV
30
    if (p.wgt() < settings::weight_cutoff * p.wgt_born()) {
×
UNCOV
31
      russian_roulette(p, settings::weight_survive * p.wgt_born());
×
32
    }
33
  } else if (p.wgt() < settings::weight_cutoff) {
4,719,209✔
34
    russian_roulette(p, settings::weight_survive);
199,331✔
35
  }
36
}
37
} // namespace openmc
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc