Skip to content
Snippets Groups Projects
Commit 09ae802f authored by Alexander Popiak's avatar Alexander Popiak Committed by GitHub
Browse files

add numerator and denominator to Rational128 Debug impl and increase precision...

add numerator and denominator to Rational128 Debug impl and increase precision of float representation (#12914)
parent c0c8d630
No related merge requests found
......@@ -94,14 +94,14 @@ pub struct Rational128(u128, u128);
#[cfg(feature = "std")]
impl sp_std::fmt::Debug for Rational128 {
fn fmt(&self, f: &mut sp_std::fmt::Formatter<'_>) -> sp_std::fmt::Result {
write!(f, "Rational128({:.4})", self.0 as f32 / self.1 as f32)
write!(f, "Rational128({} / {} ≈ {:.8})", self.0, self.1, self.0 as f64 / self.1 as f64)
}
}
#[cfg(not(feature = "std"))]
impl sp_std::fmt::Debug for Rational128 {
fn fmt(&self, f: &mut sp_std::fmt::Formatter<'_>) -> sp_std::fmt::Result {
write!(f, "Rational128(..)")
write!(f, "Rational128({} / {})", self.0, self.1)
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment