Struct calcu_rs::polynomial::VarPow
source · pub struct VarPow {
var_deg: Vec<(Expr, Int)>,
}
Expand description
represents the variable part of a term in a polynomial
e.g: x^3y^2 in abx^3y^2
Fields§
§var_deg: Vec<(Expr, Int)>
Implementations§
source§impl VarPow
impl VarPow
pub fn degree_of(&self, v: &Expr) -> Option<&Int>
pub fn is_const(&self) -> bool
pub fn total_deg(&self) -> Int
fn find(&self, v: &Expr) -> Option<&Int>
fn find_mut(&mut self, v: &Expr) -> Option<&mut Int>
fn as_expr(self) -> Expr
fn mul(&mut self, v: Expr, d: Int)
fn pow(&mut self, deg: &Int)
fn merge(&mut self, other: Self)
Trait Implementations§
source§impl Ord for VarPow
impl Ord for VarPow
source§impl PartialOrd for VarPow
impl PartialOrd for VarPow
impl Eq for VarPow
impl StructuralPartialEq for VarPow
Auto Trait Implementations§
impl Freeze for VarPow
impl RefUnwindSafe for VarPow
impl !Send for VarPow
impl !Sync for VarPow
impl Unpin for VarPow
impl UnwindSafe for VarPow
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)