algebraics 0.3.0

algebraic numbers library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: LGPL-2.1-or-later
// See Notices.txt for copyright information
pub use crate::{
    algebraic_numbers::RealAlgebraicNumber,
    traits::{
        ExactDiv as _, ExactDivAssign as _, ExtendedGCD as _, IntervalUnion as _,
        IntervalUnionAssign as _, GCD as _,
    },
};
pub use num_traits::{
    CheckedAdd as _, CheckedDiv as _, CheckedMul as _, CheckedRem as _, CheckedSub as _, One as _,
    Pow as _, Signed as _, Zero as _,
};