]> gitweb.michael.orlitzky.com - sage.d.git/commitdiff
eja: replace RR with RLF in one test.
authorMichael Orlitzky <michael@orlitzky.com>
Sat, 24 Aug 2019 00:29:36 +0000 (20:29 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Sat, 24 Aug 2019 00:29:36 +0000 (20:29 -0400)
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

index 8a17c25d4a0d52d98c063f856d888207e2ca74ea..b808ee19261cada516862c7496927b3b6f12896e 100644 (file)
@@ -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
 
         """