From: Michael Orlitzky Date: Sat, 24 Aug 2019 00:29:36 +0000 (-0400) Subject: eja: replace RR with RLF in one test. X-Git-Url: http://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=b0f0f102167379d9c74a843683e44565ba1ecf81;p=sage.d.git eja: replace RR with RLF in one test. I guess we occasionally get fractions (in QQ) that aren't in RR due to precision issues? Whatever, they're in RLF. --- diff --git a/mjo/eja/eja_element.py b/mjo/eja/eja_element.py index 8a17c25..b808ee1 100644 --- a/mjo/eja/eja_element.py +++ b/mjo/eja/eja_element.py @@ -244,7 +244,7 @@ class FiniteDimensionalEuclideanJordanAlgebraElement(IndexedFreeModuleElement): sage: set_random_seed() sage: J = random_eja() sage: x,y = J.random_elements(2) - sage: x.inner_product(y) in RR + sage: x.inner_product(y) in RLF True """