pub struct Polynomial {
pub coeffs: Vec<i64>,
}
Fields§
§coeffs: Vec<i64>
Implementations§
Source§impl Polynomial
impl Polynomial
pub fn new(coeffs: Vec<i64>) -> Self
pub fn decode(&self) -> Vec<i64>
pub fn add(&self, other: &Polynomial) -> Polynomial
pub fn subtract(&self, other: &Polynomial) -> Polynomial
pub fn multiply(&self, other: &Polynomial) -> Polynomial
pub fn negation(&self) -> Polynomial
pub fn divide(&self, divisor: &Polynomial, scaling_factor: f64) -> Polynomial
Trait Implementations§
Source§impl Clone for Polynomial
impl Clone for Polynomial
Source§fn clone(&self) -> Polynomial
fn clone(&self) -> Polynomial
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for Polynomial
impl RefUnwindSafe for Polynomial
impl Send for Polynomial
impl Sync for Polynomial
impl Unpin for Polynomial
impl UnwindSafe for Polynomial
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