Struct rustitude_core::amplitude::Model

source ·
pub struct Model {
    pub cohsums: Vec<CohSum>,
    pub amplitudes: Vec<Amplitude>,
    pub parameters: Vec<Parameter>,
}
Expand description

A model contains an API to interact with a group of CohSums by managing their amplitudes and parameters. Models are typically passed to Manager-like struct.

Fields§

§cohsums: Vec<CohSum>

The set of coherent sums included in the Model.

§amplitudes: Vec<Amplitude>

The unique amplitudes located within all CohSums.

§parameters: Vec<Parameter>

The unique parameters located within all CohSums.

Implementations§

source§

impl Model

source

pub fn print_tree(&self)

Pretty-prints a tree diagram to show the node structure of the Model.

source

pub fn get_amplitude( &self, amplitude_name: &str, ) -> Result<Amplitude, RustitudeError>

Retrieves a copy of an Amplitude in the Model by name.

§Errors

This will throw a RustitudeError if the amplitude name is not located within the model.

source

pub fn get_parameter( &self, amplitude_name: &str, parameter_name: &str, ) -> Result<Parameter, RustitudeError>

Retrieves a copy of a Parameter in the Model by name.

§Errors

This will throw a RustitudeError if the parameter name is not located within the model or if the amplitude name is not located within the model (this is checked first).

source

pub fn print_parameters(&self)

Pretty-prints all parameters in the model

source

pub fn constrain( &mut self, amplitude_1: &str, parameter_1: &str, amplitude_2: &str, parameter_2: &str, ) -> Result<(), RustitudeError>

Constrains two Parameters in the Model to be equal to each other when evaluated.

§Errors

This method will yield a RustitudeError if either of the parameters is not found by name.

source

pub fn fix( &mut self, amplitude: &str, parameter: &str, value: f64, ) -> Result<(), RustitudeError>

Fixes a Parameter in the Model to a given value.

This method technically sets the Parameter to be fixed and gives it an initial value of the given value. This method also handles groups of constrained parameters.

§Errors

This method yields a RustitudeError if the parameter is not found by name.

source

pub fn free( &mut self, amplitude: &str, parameter: &str, ) -> Result<(), RustitudeError>

Frees a Parameter in the Model.

This method does not modify the initial value of the parameter. This method also handles groups of constrained parameters.

§Errors

This method yields a RustitudeError if the parameter is not found by name.

source

pub fn set_bounds( &mut self, amplitude: &str, parameter: &str, bounds: (f64, f64), ) -> Result<(), RustitudeError>

Sets the bounds on a Parameter in the Model.

§Errors

This method yields a RustitudeError if the parameter is not found by name.

source

pub fn set_initial( &mut self, amplitude: &str, parameter: &str, initial: f64, ) -> Result<(), RustitudeError>

Sets the initial value of a Parameter in the Model.

§Errors

This method yields a RustitudeError if the parameter is not found by name.

source

pub fn get_bounds(&self) -> Vec<(f64, f64)>

Returns a list of bounds of free Parameters in the Model.

source

pub fn get_initial(&self) -> Vec<f64>

Returns a list of initial values of free Parameters in the Model.

source

pub fn get_n_free(&self) -> usize

Returns the number of free Parameters in the Model.

source

pub fn activate(&mut self, amplitude: &str)

Activates an Amplitude in the Model by name.

source

pub fn deactivate(&mut self, amplitude: &str)

Deactivates an Amplitude in the Model by name.

source

pub fn new(cohsums: Vec<CohSum>) -> Self

Creates a new Model from a list of CohSums.

source

pub fn compute( &self, parameters: &[f64], event: &Event, ) -> Result<f64, RustitudeError>

Computes the result of evaluating the terms in the model with the given Parameters for the given Event by summing the result of CohSum::compute for each CohSum contained in the Model.

§Errors

This method yields a RustitudeError if any of the Amplitude::calculate steps fail.

source

pub fn norm_int( &self, parameters: &[f64], event: &Event, ) -> Result<f64, RustitudeError>

Computes the result of evaluating the terms in the model with the given Parameters for the given Event by summing the result of CohSum::norm_int for each CohSum contained in the Model.

§Errors

This method yields a RustitudeError if any of the Amplitude::calculate steps fail.

source

pub fn load(&mut self, dataset: &Dataset) -> Result<(), RustitudeError>

Registers the Model with the Dataset by Amplitude::registering each Amplitude and setting the proper cache position and parameter starting index.

§Errors

This method will yield a RustitudeError if any Amplitude::precalculate steps fail.

Trait Implementations§

source§

impl Clone for Model

source§

fn clone(&self) -> Model

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Model

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for Model

§

impl !RefUnwindSafe for Model

§

impl Send for Model

§

impl Sync for Model

§

impl Unpin for Model

§

impl !UnwindSafe for Model

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> Any for T
where T: Any,

source§

fn into_any(self: Box<T>) -> Box<dyn Any>

source§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

source§

fn type_name(&self) -> &'static str

source§

impl<T> AnySync for T
where T: Any + Send + Sync,

source§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Send + Sync>

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> DynClone for T
where T: Clone,

source§

fn __clone_box(&self, _: Private) -> *mut ()

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

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

§

type Output = T

Should always be Self
source§

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

source§

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

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

fn is_in_subset(&self) -> bool

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

fn to_subset_unchecked(&self) -> SS

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

fn from_subset(element: &SS) -> SP

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

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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> Ungil for T
where T: Send,