pub struct WeightedFiniteAutomaton<F>{
pub initial_weights: Matrix<F>,
pub transitions: Vec<Matrix<F>>,
pub final_weights: Matrix<F>,
}
Fields§
§initial_weights: Matrix<F>
§transitions: Vec<Matrix<F>>
§final_weights: Matrix<F>
Trait Implementations§
Source§impl<F> BlackBoxAutomaton for WeightedFiniteAutomaton<F>
impl<F> BlackBoxAutomaton for WeightedFiniteAutomaton<F>
Source§impl<F> Clone for WeightedFiniteAutomaton<F>
impl<F> Clone for WeightedFiniteAutomaton<F>
Source§impl<F> Debug for WeightedFiniteAutomaton<F>
impl<F> Debug for WeightedFiniteAutomaton<F>
Source§impl<F> SerdeByteStr for WeightedFiniteAutomaton<F>
impl<F> SerdeByteStr for WeightedFiniteAutomaton<F>
Auto Trait Implementations§
impl<F> Freeze for WeightedFiniteAutomaton<F>
impl<F> RefUnwindSafe for WeightedFiniteAutomaton<F>
impl<F> Send for WeightedFiniteAutomaton<F>
impl<F> Sync for WeightedFiniteAutomaton<F>
impl<F> Unpin for WeightedFiniteAutomaton<F>
impl<F> UnwindSafe for WeightedFiniteAutomaton<F>
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