mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 06:05:58 -04:00
Fix pointer placement on uint64_t
This commit is contained in:
parent
60015e5c5c
commit
eca3ce33d2
41 changed files with 141 additions and 141 deletions
|
|
@ -41,7 +41,7 @@ public:
|
|||
//! \param[inout] prn_seeds Array of pseudorandom seeds
|
||||
//! \param[in] stream Pseudorandom stream index
|
||||
//! \return Sampled site
|
||||
Particle::Bank sample(uint64_t * prn_seed, int stream) const;
|
||||
Particle::Bank sample(uint64_t* prn_seed, int stream) const;
|
||||
|
||||
// Properties
|
||||
double strength() const { return strength_; }
|
||||
|
|
@ -64,7 +64,7 @@ extern "C" void initialize_source();
|
|||
//! source strength
|
||||
//! \param[inout] prn_seeds Array of pseudorandom seeds
|
||||
//! \return Sampled source site
|
||||
Particle::Bank sample_external_source(uint64_t * prn_seeds);
|
||||
Particle::Bank sample_external_source(uint64_t* prn_seeds);
|
||||
|
||||
//! Fill source bank at end of generation for fixed source simulations
|
||||
void fill_source_bank_fixedsource();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue