2021-05-29 03:01:07 +10:00
|
|
|
/* OpenTally: Open-source election vote counting
|
|
|
|
* Copyright © 2021 Lee Yingtong Li (RunasSudo)
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2021-06-04 22:05:48 +10:00
|
|
|
mod fixed;
|
2021-05-29 03:01:07 +10:00
|
|
|
mod native;
|
2021-05-30 18:28:39 +10:00
|
|
|
|
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
2021-05-30 23:00:28 +10:00
|
|
|
mod rational_rug;
|
|
|
|
|
|
|
|
//#[cfg(target_arch = "wasm32")]
|
|
|
|
mod rational_num;
|
2021-05-29 03:01:07 +10:00
|
|
|
|
|
|
|
use num_traits::{NumAssignRef, NumRef};
|
|
|
|
|
2021-05-30 02:28:52 +10:00
|
|
|
use std::cmp::Ord;
|
2021-05-29 03:01:07 +10:00
|
|
|
use std::fmt;
|
|
|
|
use std::ops;
|
|
|
|
|
2021-05-30 18:28:39 +10:00
|
|
|
pub trait Assign<Src=Self> {
|
|
|
|
fn assign(&mut self, src: Src);
|
|
|
|
}
|
|
|
|
|
2021-06-01 21:20:38 +10:00
|
|
|
pub trait From<T> {
|
|
|
|
fn from(n: T) -> Self;
|
|
|
|
}
|
|
|
|
|
2021-05-29 03:01:07 +10:00
|
|
|
//pub trait Number: NumRef + NumAssignRef + PartialOrd + Assign + Clone + fmt::Display where for<'a> &'a Self: RefNum<&'a Self> {
|
2021-06-01 21:20:38 +10:00
|
|
|
pub trait Number:
|
|
|
|
NumRef + NumAssignRef + ops::Neg<Output=Self> + Ord + Assign + From<usize> + From<f64> + Clone + fmt::Display
|
|
|
|
where
|
|
|
|
for<'a> Self: Assign<&'a Self>
|
|
|
|
{
|
2021-05-29 03:01:07 +10:00
|
|
|
fn new() -> Self;
|
|
|
|
|
2021-06-03 21:35:25 +10:00
|
|
|
fn describe() -> String;
|
2021-06-12 16:03:31 +10:00
|
|
|
fn describe_opt() -> String { Self::describe() }
|
2021-06-03 21:35:25 +10:00
|
|
|
|
2021-06-01 21:20:38 +10:00
|
|
|
fn pow_assign(&mut self, exponent: i32);
|
2021-05-29 17:51:45 +10:00
|
|
|
fn floor_mut(&mut self, dps: usize);
|
2021-06-02 18:07:05 +10:00
|
|
|
fn ceil_mut(&mut self, dps: usize);
|
2021-05-29 03:01:07 +10:00
|
|
|
|
|
|
|
fn parse(s: &str) -> Self {
|
|
|
|
if let Ok(value) = Self::from_str_radix(s, 10) {
|
|
|
|
return value;
|
|
|
|
} else {
|
|
|
|
panic!("Syntax Error");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-04 22:05:48 +10:00
|
|
|
pub use self::fixed::Fixed;
|
2021-05-29 17:51:45 +10:00
|
|
|
pub use self::native::NativeFloat64;
|
2021-05-30 18:28:39 +10:00
|
|
|
|
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
2021-05-30 23:00:28 +10:00
|
|
|
pub use self::rational_rug::Rational;
|
|
|
|
|
|
|
|
#[cfg(target_arch = "wasm32")]
|
|
|
|
pub use self::rational_num::Rational;
|