Skip to content

Commit

Permalink
review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
esseivaju committed Apr 27, 2024
1 parent 4e1be53 commit 1c339aa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions src/celeritas/global/Stepper.hh
Original file line number Diff line number Diff line change
Expand Up @@ -138,22 +138,22 @@ class Stepper final : public StepperInterface
~Stepper();

// Transport existing states
StepperResult operator()() override final;
StepperResult operator()() final;

// Transport existing states and these new primaries
StepperResult operator()(SpanConstPrimary primaries) override final;
StepperResult operator()(SpanConstPrimary primaries) final;

// Reseed the RNGs at the start of an event for reproducibility
void reseed(EventId event_id) override final;
void reseed(EventId event_id) final;

//! Get action sequence for timing diagnostics
ActionSequence const& actions() const override final { return *actions_; }
ActionSequence const& actions() const final { return *actions_; }

//! Access core data, primarily for debugging
StateRef const& state_ref() const { return state_.ref(); }

//! Get the core state interface for diagnostic output
CoreStateInterface const& state() const override final { return state_; }
CoreStateInterface const& state() const final { return state_; }

private:
// Params and call sequence
Expand Down
2 changes: 1 addition & 1 deletion src/celeritas/global/detail/ActionSequence.cc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
#include <tuple>
#include <type_traits>
#include <utility>
#include <celeritas/global/CoreParams.hh>

#include "corecel/device_runtime_api.h"
#include "corecel/Types.hh"
Expand All @@ -21,6 +20,7 @@
#include "corecel/sys/ScopedProfiling.hh"
#include "corecel/sys/Stopwatch.hh"
#include "corecel/sys/Stream.hh"
#include "celeritas/global/CoreParams.hh"

#include "../ActionInterface.hh"
#include "../ActionRegistry.hh"
Expand Down

0 comments on commit 1c339aa

Please sign in to comment.