pub struct DeducedOpinions<V> {
pub h: OpinionD1<H, V>,
pub fh: OpinionD1<FH, V>,
pub kh: OpinionD1<KH, V>,
pub a: OpinionD1<A, V>,
pub b: OpinionD1<B, V>,
pub theta: OpinionD1<Theta, V>,
pub thetad: OpinionD1<Thetad, V>,
}Fields§
§h: OpinionD1<H, V>§fh: OpinionD1<FH, V>§kh: OpinionD1<KH, V>§a: OpinionD1<A, V>§b: OpinionD1<B, V>§theta: OpinionD1<Theta, V>§thetad: OpinionD1<Thetad, V>Implementations§
Source§impl<V: MyFloat> DeducedOpinions<V>
impl<V: MyFloat> DeducedOpinions<V>
pub fn reset( &mut self, h: OpinionD1<H, V>, fh: OpinionD1<FH, V>, kh: OpinionD1<KH, V>, a: OpinionD1<A, V>, b: OpinionD1<B, V>, theta: OpinionD1<Theta, V>, thetad: OpinionD1<Thetad, V>, )
fn deduce(&self, state: &StateOpinions<V>, fixed: &FixedOpinions<V>) -> Self
pub fn p_theta(&self) -> MArrD1<Theta, V>
Trait Implementations§
Source§impl<V: Debug> Debug for DeducedOpinions<V>
impl<V: Debug> Debug for DeducedOpinions<V>
Source§impl<V: Default> Default for DeducedOpinions<V>
impl<V: Default> Default for DeducedOpinions<V>
Source§fn default() -> DeducedOpinions<V>
fn default() -> DeducedOpinions<V>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<V> Freeze for DeducedOpinions<V>where
V: Freeze,
impl<V> RefUnwindSafe for DeducedOpinions<V>where
V: RefUnwindSafe,
impl<V> Send for DeducedOpinions<V>where
V: Send,
impl<V> Sync for DeducedOpinions<V>where
V: Sync,
impl<V> Unpin for DeducedOpinions<V>where
V: Unpin,
impl<V> UnwindSafe for DeducedOpinions<V>where
V: UnwindSafe,
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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