Struct Octree

Source
pub struct Octree<'a, T: RealType> {
    pub particles: ArrayView2<'a, T>,
    pub max_level: usize,
    pub origin: [f64; 3],
    pub diameter: [f64; 3],
    pub level_keys: HashMap<usize, HashSet<usize>>,
    pub particle_keys: Array1<usize>,
    pub near_field: HashMap<usize, HashSet<usize>>,
    pub interaction_list: HashMap<usize, HashSet<usize>>,
    pub leaf_key_to_particles: HashMap<usize, HashSet<usize>>,
    pub all_keys: HashSet<usize>,
    pub octree_type: OctreeType,
    pub statistics: Statistics,
}
Expand description

The basic Octree data structure

Fields§

§particles: ArrayView2<'a, T>

A (3, N) array of N particles.

§max_level: usize

The maximum level in the tree.

§origin: [f64; 3]

The origin of the bounding box for the particles.

§diameter: [f64; 3]

The diameter across each dimension of the bounding box.

§level_keys: HashMap<usize, HashSet<usize>>

The non-empty keys for each level of the tree.

§particle_keys: Array1<usize>

The keys associated with the particles.

§near_field: HashMap<usize, HashSet<usize>>

The set of near-field keys for each non-empty key.

§interaction_list: HashMap<usize, HashSet<usize>>

The set of keys in the interaction list for each non-empty key.

§leaf_key_to_particles: HashMap<usize, HashSet<usize>>

The index set of particles associated with each leaf key.

§all_keys: HashSet<usize>

The set of all non-empty keys in the tree.

§octree_type: OctreeType

The type of the Octree.

§statistics: Statistics

Statistics for the tree.

Auto Trait Implementations§

§

impl<'a, T> Freeze for Octree<'a, T>

§

impl<'a, T> RefUnwindSafe for Octree<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> Send for Octree<'a, T>

§

impl<'a, T> Sync for Octree<'a, T>

§

impl<'a, T> Unpin for Octree<'a, T>

§

impl<'a, T> UnwindSafe for Octree<'a, T>
where T: RefUnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.