Struct nblast::NblastArena

source ·
pub struct NblastArena<N>
where N: TargetNeuron,
{ /* private fields */ }
Expand description

Struct for caching a number of neurons for multiple comparable NBLAST queries.

Implementations§

source§

impl<N> NblastArena<N>
where N: TargetNeuron + Sync,

source

pub fn new(score_calc: ScoreCalc, use_alpha: bool) -> Self

By default, runs in serial. See NblastArena.with_threads if the “parallel” feature is enabled.

source

pub fn size_of(&self, idx: NeuronIdx) -> Option<usize>

source

pub fn add_neuron(&mut self, neuron: N) -> NeuronIdx

Returns an index which is then used to make queries.

source

pub fn query_target( &self, query_idx: NeuronIdx, target_idx: NeuronIdx, normalize: bool, symmetry: &Option<Symmetry> ) -> Option<Precision>

Make a single query using the given indexes. normalize divides the result by the self-hit score of the query neuron. symmetry, if Some, also calculates the reverse score (normalizing it if necessary), and then applies a function to ensure that the query is symmetric/ commutative.

source

pub fn queries_targets( &self, query_idxs: &[NeuronIdx], target_idxs: &[NeuronIdx], normalize: bool, symmetry: &Option<Symmetry>, max_centroid_dist: Option<Precision> ) -> HashMap<(NeuronIdx, NeuronIdx), Precision>

Make many queries using the Cartesian product of the query and target indices.

See query_target for details on normalize and symmetry. Neurons whose centroids are greater than max_centroid_dist apart will return NaN. Indices which do not exist will be silently ignored.

source

pub fn query_target_pairs( &self, query_target_idxs: &[(NeuronIdx, NeuronIdx)], normalize: bool, symmetry: &Option<Symmetry>, max_centroid_dist: Option<Precision> ) -> HashMap<(NeuronIdx, NeuronIdx), Precision>

See query_target for details on normalize and symmetry. Neurons whose centroids are greater than max_centroid_dist apart will return NaN. Indices which do not exist will be silently ignored.

source

pub fn centroids_within_distance( &self, query_idx: NeuronIdx, target_idx: NeuronIdx, max_centroid_dist: Precision ) -> Option<bool>

source

pub fn self_hit(&self, idx: NeuronIdx) -> Option<Precision>

source

pub fn all_v_all( &self, normalize: bool, symmetry: &Option<Symmetry>, max_centroid_dist: Option<Precision> ) -> HashMap<(NeuronIdx, NeuronIdx), Precision>

Query every neuron against every other neuron. See queries_targets for more details.

source

pub fn is_empty(&self) -> bool

source

pub fn len(&self) -> usize

Number of neurons in the arena.

source

pub fn points( &self, idx: NeuronIdx ) -> Option<impl Iterator<Item = Point3> + '_>

source

pub fn tangents( &self, idx: NeuronIdx ) -> Option<impl Iterator<Item = Normal3> + '_>

source

pub fn alphas( &self, idx: NeuronIdx ) -> Option<impl Iterator<Item = Precision> + '_>

Auto Trait Implementations§

§

impl<N> RefUnwindSafe for NblastArena<N>
where N: RefUnwindSafe,

§

impl<N> Send for NblastArena<N>
where N: Send,

§

impl<N> Sync for NblastArena<N>
where N: Sync,

§

impl<N> Unpin for NblastArena<N>
where N: Unpin,

§

impl<N> UnwindSafe for NblastArena<N>
where N: UnwindSafe,

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> Az for T

source§

fn az<Dst>(self) -> Dst
where T: Cast<Dst>,

Casts the value.
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<Src, Dst> CastFrom<Src> for Dst
where Src: Cast<Dst>,

source§

fn cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> CheckedAs for T

source§

fn checked_as<Dst>(self) -> Option<Dst>
where T: CheckedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> CheckedCastFrom<Src> for Dst
where Src: CheckedCast<Dst>,

source§

fn checked_cast_from(src: Src) -> Option<Dst>

Casts the value.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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<Src, Dst> LosslessTryInto<Dst> for Src
where Dst: LosslessTryFrom<Src>,

source§

fn lossless_try_into(self) -> Option<Dst>

Performs the conversion.
source§

impl<Src, Dst> LossyInto<Dst> for Src
where Dst: LossyFrom<Src>,

source§

fn lossy_into(self) -> Dst

Performs the conversion.
source§

impl<T> OverflowingAs for T

source§

fn overflowing_as<Dst>(self) -> (Dst, bool)
where T: OverflowingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> OverflowingCastFrom<Src> for Dst
where Src: OverflowingCast<Dst>,

source§

fn overflowing_cast_from(src: Src) -> (Dst, bool)

Casts the value.
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

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

Initializes a with the given initializer. Read more
§

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

Dereferences the given pointer. Read more
§

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

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

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

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> SaturatingAs for T

source§

fn saturating_as<Dst>(self) -> Dst
where T: SaturatingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> SaturatingCastFrom<Src> for Dst
where Src: SaturatingCast<Dst>,

source§

fn saturating_cast_from(src: Src) -> Dst

Casts the value.
§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
source§

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

§

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>,

§

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.
source§

impl<T> UnwrappedAs for T

source§

fn unwrapped_as<Dst>(self) -> Dst
where T: UnwrappedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> UnwrappedCastFrom<Src> for Dst
where Src: UnwrappedCast<Dst>,

source§

fn unwrapped_cast_from(src: Src) -> Dst

Casts the value.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<T> WrappingAs for T

source§

fn wrapping_as<Dst>(self) -> Dst
where T: WrappingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> WrappingCastFrom<Src> for Dst
where Src: WrappingCast<Dst>,

source§

fn wrapping_cast_from(src: Src) -> Dst

Casts the value.