pub enum MagicSelection {
Total,
PerGroup,
}Expand description
Which tally arrays feed the MAGIC algorithm.
Legacy tooling selected this implicitly through the mesh tag passed in
(n_total_result versus n_result); here it is explicit.
Variants§
Total
Energy-integrated totals: uses MeshTallyData::total_result /
MeshTallyData::total_rel_error. One lower bound per volume element.
PerGroup
Per-energy-group values: uses MeshTallyData::result /
MeshTallyData::rel_error. One lower bound per element per group,
flattened [ve][group].
Trait Implementations§
Source§impl Clone for MagicSelection
impl Clone for MagicSelection
Source§fn clone(&self) -> MagicSelection
fn clone(&self) -> MagicSelection
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for MagicSelection
Source§impl Debug for MagicSelection
impl Debug for MagicSelection
impl Eq for MagicSelection
Source§impl PartialEq for MagicSelection
impl PartialEq for MagicSelection
impl StructuralPartialEq for MagicSelection
Auto Trait Implementations§
impl Freeze for MagicSelection
impl RefUnwindSafe for MagicSelection
impl Send for MagicSelection
impl Sync for MagicSelection
impl Unpin for MagicSelection
impl UnsafeUnpin for MagicSelection
impl UnwindSafe for MagicSelection
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more