From 1724b1d2c15fe1ecbca7477ea4400f5162c9542e Mon Sep 17 00:00:00 2001 From: Erik Paemurru Date: Tue, 18 Jun 2024 15:26:58 +0200 Subject: [PATCH] Update according to comment by Max Before, it might have happened that the command `R * ZZRingElem(2)` fails while `R * big(2)` succeeds. --- src/Ideal.jl | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/Ideal.jl b/src/Ideal.jl index 82fccbdc6..0feabdd45 100644 --- a/src/Ideal.jl +++ b/src/Ideal.jl @@ -10,14 +10,6 @@ # are implemented by anyone implementing ideals for AbstractAlgebra rings. # The functions in this file extend the interface for `ideal`. -function *(x::RingElement, R::Ring) - return ideal(R, x) -end - -function *(R::Ring, x::RingElement) - return ideal(R, x) -end - function *(R::Ring, x::Any) return ideal(R, R(x)) end