From b0f0f102167379d9c74a843683e44565ba1ecf81 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Fri, 23 Aug 2019 20:29:36 -0400 Subject: [PATCH] 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. --- mjo/eja/eja_element.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 """ -- 2.43.2