Compare commits
3 Commits
zero-verti
...
delete-rat
| Author | SHA1 | Date | |
|---|---|---|---|
|
679f8ca89b
|
|||
|
0b9c871a21
|
|||
|
a333d75bbd
|
@@ -505,16 +505,10 @@ impl_multiplicative_assign_operator!( Fixed, DivAssign, div_assign, div_euclid )
|
|||||||
impl_multiplicative_operator!( Fixed, Div, div, div_euclid, Self );
|
impl_multiplicative_operator!( Fixed, Div, div, div_euclid, Self );
|
||||||
#[cfg(feature="deferred-division")]
|
#[cfg(feature="deferred-division")]
|
||||||
impl<const LHS_N:usize,const LHS_F:usize,const RHS_N:usize,const RHS_F:usize> core::ops::Div<Fixed<RHS_N,RHS_F>> for Fixed<LHS_N,LHS_F>{
|
impl<const LHS_N:usize,const LHS_F:usize,const RHS_N:usize,const RHS_F:usize> core::ops::Div<Fixed<RHS_N,RHS_F>> for Fixed<LHS_N,LHS_F>{
|
||||||
type Output=ratio_ops::ratio::Ratio<Fixed<LHS_N,LHS_F>,Fixed<RHS_N,RHS_F>>;
|
type Output=crate::ratio::Ratio<LHS_N,RHS_N,LHS_F,RHS_F>;
|
||||||
#[inline]
|
#[inline]
|
||||||
fn div(self, other: Fixed<RHS_N,RHS_F>)->Self::Output{
|
fn div(self, other: Fixed<RHS_N,RHS_F>)->Self::Output{
|
||||||
ratio_ops::ratio::Ratio::new(self,other)
|
crate::ratio::Ratio::new(self,other)
|
||||||
}
|
|
||||||
}
|
|
||||||
#[cfg(feature="deferred-division")]
|
|
||||||
impl<const N:usize,const F:usize> ratio_ops::ratio::Parity for Fixed<N,F>{
|
|
||||||
fn parity(&self)->bool{
|
|
||||||
self.is_negative()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
macro_rules! impl_shift_operator {
|
macro_rules! impl_shift_operator {
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
pub mod fixed;
|
pub mod fixed;
|
||||||
|
pub mod ratio;
|
||||||
pub mod types;
|
pub mod types;
|
||||||
|
|
||||||
#[cfg(feature="zeroes")]
|
#[cfg(feature="zeroes")]
|
||||||
|
|||||||
22
lib/fixed_wide/src/ratio.rs
Normal file
22
lib/fixed_wide/src/ratio.rs
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
use bnum::{BInt,BUInt,cast::As};
|
||||||
|
use crate::fixed::Fixed;
|
||||||
|
|
||||||
|
pub struct Ratio<const N:usize,const D:usize,const NF:usize,const DF:usize>{
|
||||||
|
num:BInt<{N}>,
|
||||||
|
den:BUInt<{D}>,
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fixed<N = 8 bits,NF = 4 frac> / Fixed<D = 8 bits,DF = 3 frac>
|
||||||
|
// 0100.0000/00100.000
|
||||||
|
// 01000000<<DF/00100000 = 10>>NF
|
||||||
|
|
||||||
|
impl Ratio{
|
||||||
|
/// Evaluate a ratio to a specific precision
|
||||||
|
pub fn evaluate<const OUT_N:usize,const OUT_F:usize>(&self)->Fixed<OUT_N,OUT_F>{
|
||||||
|
// TODO: Think (this is completely wrong)
|
||||||
|
// (lhs/2^LHS_FRAC)/(rhs/2^RHS_FRAC)
|
||||||
|
let lhs=num.bits.as_::<BInt<OUT_N>>().shl(OUT_N*64);
|
||||||
|
let rhs=rhs.bits.as_::<BInt<OUT_N>>();
|
||||||
|
Fixed::from_bits(lhs/rhs)
|
||||||
|
}
|
||||||
|
}
|
||||||
1
lib/ratio_ops/.gitignore
vendored
1
lib/ratio_ops/.gitignore
vendored
@@ -1 +0,0 @@
|
|||||||
/target
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
[package]
|
|
||||||
name = "ratio_ops"
|
|
||||||
version = "0.1.1"
|
|
||||||
edition = "2024"
|
|
||||||
repository = "https://git.itzana.me/StrafesNET/strafe-project"
|
|
||||||
license = "MIT OR Apache-2.0"
|
|
||||||
description = "Ratio operations using trait bounds for avoiding division like the plague."
|
|
||||||
authors = ["Rhys Lloyd <krakow20@gmail.com>"]
|
|
||||||
|
|
||||||
[dependencies]
|
|
||||||
|
|
||||||
[lints]
|
|
||||||
workspace = true
|
|
||||||
@@ -1,176 +0,0 @@
|
|||||||
Apache License
|
|
||||||
Version 2.0, January 2004
|
|
||||||
http://www.apache.org/licenses/
|
|
||||||
|
|
||||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
||||||
|
|
||||||
1. Definitions.
|
|
||||||
|
|
||||||
"License" shall mean the terms and conditions for use, reproduction,
|
|
||||||
and distribution as defined by Sections 1 through 9 of this document.
|
|
||||||
|
|
||||||
"Licensor" shall mean the copyright owner or entity authorized by
|
|
||||||
the copyright owner that is granting the License.
|
|
||||||
|
|
||||||
"Legal Entity" shall mean the union of the acting entity and all
|
|
||||||
other entities that control, are controlled by, or are under common
|
|
||||||
control with that entity. For the purposes of this definition,
|
|
||||||
"control" means (i) the power, direct or indirect, to cause the
|
|
||||||
direction or management of such entity, whether by contract or
|
|
||||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
||||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
||||||
|
|
||||||
"You" (or "Your") shall mean an individual or Legal Entity
|
|
||||||
exercising permissions granted by this License.
|
|
||||||
|
|
||||||
"Source" form shall mean the preferred form for making modifications,
|
|
||||||
including but not limited to software source code, documentation
|
|
||||||
source, and configuration files.
|
|
||||||
|
|
||||||
"Object" form shall mean any form resulting from mechanical
|
|
||||||
transformation or translation of a Source form, including but
|
|
||||||
not limited to compiled object code, generated documentation,
|
|
||||||
and conversions to other media types.
|
|
||||||
|
|
||||||
"Work" shall mean the work of authorship, whether in Source or
|
|
||||||
Object form, made available under the License, as indicated by a
|
|
||||||
copyright notice that is included in or attached to the work
|
|
||||||
(an example is provided in the Appendix below).
|
|
||||||
|
|
||||||
"Derivative Works" shall mean any work, whether in Source or Object
|
|
||||||
form, that is based on (or derived from) the Work and for which the
|
|
||||||
editorial revisions, annotations, elaborations, or other modifications
|
|
||||||
represent, as a whole, an original work of authorship. For the purposes
|
|
||||||
of this License, Derivative Works shall not include works that remain
|
|
||||||
separable from, or merely link (or bind by name) to the interfaces of,
|
|
||||||
the Work and Derivative Works thereof.
|
|
||||||
|
|
||||||
"Contribution" shall mean any work of authorship, including
|
|
||||||
the original version of the Work and any modifications or additions
|
|
||||||
to that Work or Derivative Works thereof, that is intentionally
|
|
||||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
||||||
or by an individual or Legal Entity authorized to submit on behalf of
|
|
||||||
the copyright owner. For the purposes of this definition, "submitted"
|
|
||||||
means any form of electronic, verbal, or written communication sent
|
|
||||||
to the Licensor or its representatives, including but not limited to
|
|
||||||
communication on electronic mailing lists, source code control systems,
|
|
||||||
and issue tracking systems that are managed by, or on behalf of, the
|
|
||||||
Licensor for the purpose of discussing and improving the Work, but
|
|
||||||
excluding communication that is conspicuously marked or otherwise
|
|
||||||
designated in writing by the copyright owner as "Not a Contribution."
|
|
||||||
|
|
||||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
||||||
on behalf of whom a Contribution has been received by Licensor and
|
|
||||||
subsequently incorporated within the Work.
|
|
||||||
|
|
||||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
||||||
this License, each Contributor hereby grants to You a perpetual,
|
|
||||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
||||||
copyright license to reproduce, prepare Derivative Works of,
|
|
||||||
publicly display, publicly perform, sublicense, and distribute the
|
|
||||||
Work and such Derivative Works in Source or Object form.
|
|
||||||
|
|
||||||
3. Grant of Patent License. Subject to the terms and conditions of
|
|
||||||
this License, each Contributor hereby grants to You a perpetual,
|
|
||||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
||||||
(except as stated in this section) patent license to make, have made,
|
|
||||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
||||||
where such license applies only to those patent claims licensable
|
|
||||||
by such Contributor that are necessarily infringed by their
|
|
||||||
Contribution(s) alone or by combination of their Contribution(s)
|
|
||||||
with the Work to which such Contribution(s) was submitted. If You
|
|
||||||
institute patent litigation against any entity (including a
|
|
||||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
||||||
or a Contribution incorporated within the Work constitutes direct
|
|
||||||
or contributory patent infringement, then any patent licenses
|
|
||||||
granted to You under this License for that Work shall terminate
|
|
||||||
as of the date such litigation is filed.
|
|
||||||
|
|
||||||
4. Redistribution. You may reproduce and distribute copies of the
|
|
||||||
Work or Derivative Works thereof in any medium, with or without
|
|
||||||
modifications, and in Source or Object form, provided that You
|
|
||||||
meet the following conditions:
|
|
||||||
|
|
||||||
(a) You must give any other recipients of the Work or
|
|
||||||
Derivative Works a copy of this License; and
|
|
||||||
|
|
||||||
(b) You must cause any modified files to carry prominent notices
|
|
||||||
stating that You changed the files; and
|
|
||||||
|
|
||||||
(c) You must retain, in the Source form of any Derivative Works
|
|
||||||
that You distribute, all copyright, patent, trademark, and
|
|
||||||
attribution notices from the Source form of the Work,
|
|
||||||
excluding those notices that do not pertain to any part of
|
|
||||||
the Derivative Works; and
|
|
||||||
|
|
||||||
(d) If the Work includes a "NOTICE" text file as part of its
|
|
||||||
distribution, then any Derivative Works that You distribute must
|
|
||||||
include a readable copy of the attribution notices contained
|
|
||||||
within such NOTICE file, excluding those notices that do not
|
|
||||||
pertain to any part of the Derivative Works, in at least one
|
|
||||||
of the following places: within a NOTICE text file distributed
|
|
||||||
as part of the Derivative Works; within the Source form or
|
|
||||||
documentation, if provided along with the Derivative Works; or,
|
|
||||||
within a display generated by the Derivative Works, if and
|
|
||||||
wherever such third-party notices normally appear. The contents
|
|
||||||
of the NOTICE file are for informational purposes only and
|
|
||||||
do not modify the License. You may add Your own attribution
|
|
||||||
notices within Derivative Works that You distribute, alongside
|
|
||||||
or as an addendum to the NOTICE text from the Work, provided
|
|
||||||
that such additional attribution notices cannot be construed
|
|
||||||
as modifying the License.
|
|
||||||
|
|
||||||
You may add Your own copyright statement to Your modifications and
|
|
||||||
may provide additional or different license terms and conditions
|
|
||||||
for use, reproduction, or distribution of Your modifications, or
|
|
||||||
for any such Derivative Works as a whole, provided Your use,
|
|
||||||
reproduction, and distribution of the Work otherwise complies with
|
|
||||||
the conditions stated in this License.
|
|
||||||
|
|
||||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
||||||
any Contribution intentionally submitted for inclusion in the Work
|
|
||||||
by You to the Licensor shall be under the terms and conditions of
|
|
||||||
this License, without any additional terms or conditions.
|
|
||||||
Notwithstanding the above, nothing herein shall supersede or modify
|
|
||||||
the terms of any separate license agreement you may have executed
|
|
||||||
with Licensor regarding such Contributions.
|
|
||||||
|
|
||||||
6. Trademarks. This License does not grant permission to use the trade
|
|
||||||
names, trademarks, service marks, or product names of the Licensor,
|
|
||||||
except as required for reasonable and customary use in describing the
|
|
||||||
origin of the Work and reproducing the content of the NOTICE file.
|
|
||||||
|
|
||||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
||||||
agreed to in writing, Licensor provides the Work (and each
|
|
||||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
||||||
implied, including, without limitation, any warranties or conditions
|
|
||||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
||||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
||||||
appropriateness of using or redistributing the Work and assume any
|
|
||||||
risks associated with Your exercise of permissions under this License.
|
|
||||||
|
|
||||||
8. Limitation of Liability. In no event and under no legal theory,
|
|
||||||
whether in tort (including negligence), contract, or otherwise,
|
|
||||||
unless required by applicable law (such as deliberate and grossly
|
|
||||||
negligent acts) or agreed to in writing, shall any Contributor be
|
|
||||||
liable to You for damages, including any direct, indirect, special,
|
|
||||||
incidental, or consequential damages of any character arising as a
|
|
||||||
result of this License or out of the use or inability to use the
|
|
||||||
Work (including but not limited to damages for loss of goodwill,
|
|
||||||
work stoppage, computer failure or malfunction, or any and all
|
|
||||||
other commercial damages or losses), even if such Contributor
|
|
||||||
has been advised of the possibility of such damages.
|
|
||||||
|
|
||||||
9. Accepting Warranty or Additional Liability. While redistributing
|
|
||||||
the Work or Derivative Works thereof, You may choose to offer,
|
|
||||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
||||||
or other liability obligations and/or rights consistent with this
|
|
||||||
License. However, in accepting such obligations, You may act only
|
|
||||||
on Your own behalf and on Your sole responsibility, not on behalf
|
|
||||||
of any other Contributor, and only if You agree to indemnify,
|
|
||||||
defend, and hold each Contributor harmless for any liability
|
|
||||||
incurred by, or claims asserted against, such Contributor by reason
|
|
||||||
of your accepting any such warranty or additional liability.
|
|
||||||
|
|
||||||
END OF TERMS AND CONDITIONS
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
Permission is hereby granted, free of charge, to any
|
|
||||||
person obtaining a copy of this software and associated
|
|
||||||
documentation files (the "Software"), to deal in the
|
|
||||||
Software without restriction, including without
|
|
||||||
limitation the rights to use, copy, modify, merge,
|
|
||||||
publish, distribute, sublicense, and/or sell copies of
|
|
||||||
the Software, and to permit persons to whom the Software
|
|
||||||
is furnished to do so, subject to the following
|
|
||||||
conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice
|
|
||||||
shall be included in all copies or substantial portions
|
|
||||||
of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
||||||
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
||||||
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
||||||
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
||||||
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
||||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
||||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
||||||
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
DEALINGS IN THE SOFTWARE.
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
pub mod ratio;
|
|
||||||
|
|
||||||
#[cfg(test)]
|
|
||||||
mod tests;
|
|
||||||
@@ -1,302 +0,0 @@
|
|||||||
#[derive(Clone,Copy,Debug,Hash)]
|
|
||||||
pub struct Ratio<Num,Den>{
|
|
||||||
pub num:Num,
|
|
||||||
pub den:Den,
|
|
||||||
}
|
|
||||||
impl<Num,Den> Ratio<Num,Den>{
|
|
||||||
#[inline(always)]
|
|
||||||
pub const fn new(num:Num,den:Den)->Self{
|
|
||||||
Self{num,den}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// The actual divide implementation, Div is replaced with a Ratio constructor
|
|
||||||
pub trait Divide<Rhs=Self>{
|
|
||||||
type Output;
|
|
||||||
fn divide(self,rhs:Rhs)->Self::Output;
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<Num,Den> Ratio<Num,Den>
|
|
||||||
where
|
|
||||||
Num:Divide<Den>,
|
|
||||||
{
|
|
||||||
#[inline]
|
|
||||||
pub fn divide(self)-><Num as Divide<Den>>::Output{
|
|
||||||
self.num.divide(self.den)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//take care to use the ratio methods to avoid nested ratios
|
|
||||||
|
|
||||||
impl<LhsNum,LhsDen> Ratio<LhsNum,LhsDen>{
|
|
||||||
#[inline]
|
|
||||||
pub fn mul_ratio<RhsNum,RhsDen>(self,rhs:Ratio<RhsNum,RhsDen>)->Ratio<<LhsNum as core::ops::Mul<RhsNum>>::Output,<LhsDen as core::ops::Mul<RhsDen>>::Output>
|
|
||||||
where
|
|
||||||
LhsNum:core::ops::Mul<RhsNum>,
|
|
||||||
LhsDen:core::ops::Mul<RhsDen>,
|
|
||||||
{
|
|
||||||
Ratio::new(self.num*rhs.num,self.den*rhs.den)
|
|
||||||
}
|
|
||||||
#[inline]
|
|
||||||
pub fn div_ratio<RhsNum,RhsDen>(self,rhs:Ratio<RhsNum,RhsDen>)->Ratio<<LhsNum as core::ops::Mul<RhsDen>>::Output,<LhsDen as core::ops::Mul<RhsNum>>::Output>
|
|
||||||
where
|
|
||||||
LhsNum:core::ops::Mul<RhsDen>,
|
|
||||||
LhsDen:core::ops::Mul<RhsNum>,
|
|
||||||
{
|
|
||||||
Ratio::new(self.num*rhs.den,self.den*rhs.num)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
macro_rules! impl_ratio_method {
|
|
||||||
($trait:ident, $method:ident, $ratio_method:ident) => {
|
|
||||||
impl<LhsNum,LhsDen> Ratio<LhsNum,LhsDen>{
|
|
||||||
#[inline]
|
|
||||||
pub fn $ratio_method<RhsNum,RhsDen,LhsCrossMul,RhsCrossMul>(self,rhs:Ratio<RhsNum,RhsDen>)->Ratio<<LhsCrossMul as core::ops::$trait<RhsCrossMul>>::Output,<LhsDen as core::ops::Mul<RhsDen>>::Output>
|
|
||||||
where
|
|
||||||
LhsNum:core::ops::Mul<RhsDen,Output=LhsCrossMul>,
|
|
||||||
LhsDen:core::ops::Mul<RhsNum,Output=RhsCrossMul>,
|
|
||||||
LhsDen:core::ops::Mul<RhsDen>,
|
|
||||||
LhsDen:Copy,
|
|
||||||
RhsDen:Copy,
|
|
||||||
LhsCrossMul:core::ops::$trait<RhsCrossMul>,
|
|
||||||
{
|
|
||||||
Ratio::new((self.num*rhs.den).$method(self.den*rhs.num),self.den*rhs.den)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
impl_ratio_method!(Add,add,add_ratio);
|
|
||||||
impl_ratio_method!(Sub,sub,sub_ratio);
|
|
||||||
impl_ratio_method!(Rem,rem,rem_ratio);
|
|
||||||
|
|
||||||
/// Comparing two ratios needs to know the parity of the denominators
|
|
||||||
/// For signed integers this can be implemented with is_negative()
|
|
||||||
pub trait Parity{
|
|
||||||
fn parity(&self)->bool;
|
|
||||||
}
|
|
||||||
macro_rules! impl_parity_unsigned{
|
|
||||||
($($type:ty),*)=>{
|
|
||||||
$(
|
|
||||||
impl Parity for $type{
|
|
||||||
fn parity(&self)->bool{
|
|
||||||
false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
)*
|
|
||||||
};
|
|
||||||
}
|
|
||||||
macro_rules! impl_parity_signed{
|
|
||||||
($($type:ty),*)=>{
|
|
||||||
$(
|
|
||||||
impl Parity for $type{
|
|
||||||
fn parity(&self)->bool{
|
|
||||||
self.is_negative()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
)*
|
|
||||||
};
|
|
||||||
}
|
|
||||||
macro_rules! impl_parity_float{
|
|
||||||
($($type:ty),*)=>{
|
|
||||||
$(
|
|
||||||
impl Parity for $type{
|
|
||||||
fn parity(&self)->bool{
|
|
||||||
self.is_sign_negative()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
)*
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
impl_parity_unsigned!(u8,u16,u32,u64,u128,usize);
|
|
||||||
impl_parity_signed!(i8,i16,i32,i64,i128,isize);
|
|
||||||
impl_parity_float!(f32,f64);
|
|
||||||
|
|
||||||
macro_rules! impl_ratio_ord_method{
|
|
||||||
($method:ident, $ratio_method:ident, $output:ty)=>{
|
|
||||||
impl<LhsNum,LhsDen:Parity> Ratio<LhsNum,LhsDen>{
|
|
||||||
#[inline]
|
|
||||||
pub fn $ratio_method<RhsNum,RhsDen:Parity,T>(self,rhs:Ratio<RhsNum,RhsDen>)->$output
|
|
||||||
where
|
|
||||||
LhsNum:core::ops::Mul<RhsDen,Output=T>,
|
|
||||||
LhsDen:core::ops::Mul<RhsNum,Output=T>,
|
|
||||||
T:Ord,
|
|
||||||
{
|
|
||||||
match self.den.parity()^rhs.den.parity(){
|
|
||||||
true=>(self.den*rhs.num).$method(&(self.num*rhs.den)),
|
|
||||||
false=>(self.num*rhs.den).$method(&(self.den*rhs.num)),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
//PartialEq
|
|
||||||
impl_ratio_ord_method!(eq,eq_ratio,bool);
|
|
||||||
//PartialOrd
|
|
||||||
impl_ratio_ord_method!(lt,lt_ratio,bool);
|
|
||||||
impl_ratio_ord_method!(gt,gt_ratio,bool);
|
|
||||||
impl_ratio_ord_method!(le,le_ratio,bool);
|
|
||||||
impl_ratio_ord_method!(ge,ge_ratio,bool);
|
|
||||||
impl_ratio_ord_method!(partial_cmp,partial_cmp_ratio,Option<core::cmp::Ordering>);
|
|
||||||
//Ord
|
|
||||||
impl_ratio_ord_method!(cmp,cmp_ratio,core::cmp::Ordering);
|
|
||||||
|
|
||||||
/* generic rhs mul is not possible!
|
|
||||||
impl<Lhs,RhsNum,RhsDen> core::ops::Mul<Ratio<RhsNum,RhsDen>> for Lhs
|
|
||||||
where
|
|
||||||
Lhs:core::ops::Mul<RhsNum>,
|
|
||||||
{
|
|
||||||
type Output=Ratio<<Lhs as core::ops::Mul<RhsNum>>::Output,RhsDen>;
|
|
||||||
#[inline]
|
|
||||||
fn mul(self,rhs:Ratio<RhsNum,RhsDen>)->Self::Output{
|
|
||||||
Ratio::new(self*rhs.num,rhs.den)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
//operators
|
|
||||||
|
|
||||||
impl<LhsNum,LhsDen> core::ops::Neg for Ratio<LhsNum,LhsDen>
|
|
||||||
where
|
|
||||||
LhsNum:core::ops::Neg,
|
|
||||||
{
|
|
||||||
type Output=Ratio<<LhsNum as core::ops::Neg>::Output,LhsDen>;
|
|
||||||
#[inline]
|
|
||||||
fn neg(self)->Self::Output{
|
|
||||||
Ratio::new(-self.num,self.den)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
impl<LhsNum,LhsDen,Rhs> core::ops::Mul<Rhs> for Ratio<LhsNum,LhsDen>
|
|
||||||
where
|
|
||||||
LhsNum:core::ops::Mul<Rhs>,
|
|
||||||
{
|
|
||||||
type Output=Ratio<<LhsNum as core::ops::Mul<Rhs>>::Output,LhsDen>;
|
|
||||||
#[inline]
|
|
||||||
fn mul(self,rhs:Rhs)->Self::Output{
|
|
||||||
Ratio::new(self.num*rhs,self.den)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
impl<LhsNum,LhsDen,Rhs> core::ops::Div<Rhs> for Ratio<LhsNum,LhsDen>
|
|
||||||
where
|
|
||||||
LhsDen:core::ops::Mul<Rhs>,
|
|
||||||
{
|
|
||||||
type Output=Ratio<LhsNum,<LhsDen as core::ops::Mul<Rhs>>::Output>;
|
|
||||||
#[inline]
|
|
||||||
fn div(self,rhs:Rhs)->Self::Output{
|
|
||||||
Ratio::new(self.num,self.den*rhs)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
macro_rules! impl_ratio_operator {
|
|
||||||
($trait:ident, $method:ident) => {
|
|
||||||
impl<LhsNum,LhsDen,Rhs,Intermediate> core::ops::$trait<Rhs> for Ratio<LhsNum,LhsDen>
|
|
||||||
where
|
|
||||||
LhsNum:core::ops::$trait<Intermediate>,
|
|
||||||
LhsDen:Copy,
|
|
||||||
Rhs:core::ops::Mul<LhsDen,Output=Intermediate>,
|
|
||||||
{
|
|
||||||
type Output=Ratio<<LhsNum as core::ops::$trait<Intermediate>>::Output,LhsDen>;
|
|
||||||
#[inline]
|
|
||||||
fn $method(self,rhs:Rhs)->Self::Output{
|
|
||||||
Ratio::new(self.num.$method(rhs*self.den),self.den)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
impl_ratio_operator!(Add,add);
|
|
||||||
impl_ratio_operator!(Sub,sub);
|
|
||||||
impl_ratio_operator!(Rem,rem);
|
|
||||||
|
|
||||||
//assign operators
|
|
||||||
|
|
||||||
impl<LhsNum,LhsDen,Rhs> core::ops::MulAssign<Rhs> for Ratio<LhsNum,LhsDen>
|
|
||||||
where
|
|
||||||
LhsNum:core::ops::MulAssign<Rhs>,
|
|
||||||
{
|
|
||||||
#[inline]
|
|
||||||
fn mul_assign(&mut self,rhs:Rhs){
|
|
||||||
self.num*=rhs;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
impl<LhsNum,LhsDen,Rhs> core::ops::DivAssign<Rhs> for Ratio<LhsNum,LhsDen>
|
|
||||||
where
|
|
||||||
LhsDen:core::ops::MulAssign<Rhs>,
|
|
||||||
{
|
|
||||||
#[inline]
|
|
||||||
fn div_assign(&mut self,rhs:Rhs){
|
|
||||||
self.den*=rhs;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
macro_rules! impl_ratio_assign_operator {
|
|
||||||
($trait:ident, $method:ident) => {
|
|
||||||
impl<LhsNum,LhsDen,Rhs> core::ops::$trait<Rhs> for Ratio<LhsNum,LhsDen>
|
|
||||||
where
|
|
||||||
LhsNum:core::ops::$trait,
|
|
||||||
LhsDen:Copy,
|
|
||||||
Rhs:core::ops::Mul<LhsDen,Output=LhsNum>,
|
|
||||||
{
|
|
||||||
#[inline]
|
|
||||||
fn $method(&mut self,rhs:Rhs){
|
|
||||||
self.num.$method(rhs*self.den)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
impl_ratio_assign_operator!(AddAssign,add_assign);
|
|
||||||
impl_ratio_assign_operator!(SubAssign,sub_assign);
|
|
||||||
impl_ratio_assign_operator!(RemAssign,rem_assign);
|
|
||||||
|
|
||||||
// Only implement PartialEq<Self>
|
|
||||||
// Rust's operators aren't actually that good
|
|
||||||
|
|
||||||
impl<LhsNum,LhsDen,RhsNum,RhsDen,T,U> PartialEq<Ratio<RhsNum,RhsDen>> for Ratio<LhsNum,LhsDen>
|
|
||||||
where
|
|
||||||
LhsNum:Copy,
|
|
||||||
LhsDen:Copy,
|
|
||||||
RhsNum:Copy,
|
|
||||||
RhsDen:Copy,
|
|
||||||
LhsNum:core::ops::Mul<RhsDen,Output=T>,
|
|
||||||
RhsNum:core::ops::Mul<LhsDen,Output=U>,
|
|
||||||
T:PartialEq<U>,
|
|
||||||
{
|
|
||||||
#[inline]
|
|
||||||
fn eq(&self,other:&Ratio<RhsNum,RhsDen>)->bool{
|
|
||||||
(self.num*other.den).eq(&(other.num*self.den))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
impl<Num,Den> Eq for Ratio<Num,Den> where Self:PartialEq{}
|
|
||||||
|
|
||||||
// Wow! These were both completely wrong!
|
|
||||||
// Idea: use a 'signed' trait instead of parity and float the sign to the numerator.
|
|
||||||
impl<LhsNum,LhsDen,RhsNum,RhsDen,T,U> PartialOrd<Ratio<RhsNum,RhsDen>> for Ratio<LhsNum,LhsDen>
|
|
||||||
where
|
|
||||||
LhsNum:Copy,
|
|
||||||
LhsDen:Copy+Parity,
|
|
||||||
RhsNum:Copy,
|
|
||||||
RhsDen:Copy+Parity,
|
|
||||||
LhsNum:core::ops::Mul<RhsDen,Output=T>,
|
|
||||||
LhsDen:core::ops::Mul<RhsNum,Output=T>,
|
|
||||||
RhsNum:core::ops::Mul<LhsDen,Output=U>,
|
|
||||||
RhsDen:core::ops::Mul<LhsNum,Output=U>,
|
|
||||||
T:PartialOrd<U>+Ord,
|
|
||||||
{
|
|
||||||
#[inline]
|
|
||||||
fn partial_cmp(&self,&other:&Ratio<RhsNum,RhsDen>)->Option<core::cmp::Ordering>{
|
|
||||||
self.partial_cmp_ratio(other)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
impl<Num,Den,T> Ord for Ratio<Num,Den>
|
|
||||||
where
|
|
||||||
Num:Copy,
|
|
||||||
Den:Copy+Parity,
|
|
||||||
Num:core::ops::Mul<Den,Output=T>,
|
|
||||||
Den:core::ops::Mul<Num,Output=T>,
|
|
||||||
T:Ord,
|
|
||||||
{
|
|
||||||
#[inline]
|
|
||||||
fn cmp(&self,&other:&Self)->std::cmp::Ordering{
|
|
||||||
self.cmp_ratio(other)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,58 +0,0 @@
|
|||||||
use crate::ratio::Ratio;
|
|
||||||
|
|
||||||
macro_rules! test_op{
|
|
||||||
($ratio_op:ident,$op:ident,$a:expr,$b:expr,$c:expr,$d:expr)=>{
|
|
||||||
assert_eq!(
|
|
||||||
Ratio::new($a,$b).$ratio_op(Ratio::new($c,$d)),
|
|
||||||
(($a as f32)/($b as f32)).$op(&(($c as f32)/($d as f32)))
|
|
||||||
);
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
macro_rules! test_many_ops{
|
|
||||||
($ratio_op:ident,$op:ident)=>{
|
|
||||||
test_op!($ratio_op,$op,1,2,3,4);
|
|
||||||
test_op!($ratio_op,$op,1,2,-3,4);
|
|
||||||
test_op!($ratio_op,$op,-1,2,-3,4);
|
|
||||||
test_op!($ratio_op,$op,-1,-2,-3,4);
|
|
||||||
test_op!($ratio_op,$op,2,1,6,3);
|
|
||||||
test_op!($ratio_op,$op,-2,1,6,3);
|
|
||||||
test_op!($ratio_op,$op,2,-1,-6,3);
|
|
||||||
test_op!($ratio_op,$op,2,1,6,-3);
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_lt(){
|
|
||||||
test_many_ops!(lt_ratio,lt);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_gt(){
|
|
||||||
test_many_ops!(gt_ratio,gt);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_le(){
|
|
||||||
test_many_ops!(le_ratio,le);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_ge(){
|
|
||||||
test_many_ops!(ge_ratio,ge);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_eq(){
|
|
||||||
test_many_ops!(eq_ratio,eq);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_partial_cmp(){
|
|
||||||
test_many_ops!(partial_cmp_ratio,partial_cmp);
|
|
||||||
}
|
|
||||||
|
|
||||||
// #[test]
|
|
||||||
// fn test_cmp(){
|
|
||||||
// test_many_ops!(cmp_ratio,cmp);
|
|
||||||
// }
|
|
||||||
Reference in New Issue
Block a user