Open
Description
I tried doing this
import breeze.linalg._
123 / BigDecimal(1.00E100)
I get an error
error: could not find implicit value for parameter op: breeze.linalg.operators.OpDiv.Impl2[Int,scala.math.BigDecimal,That]
looks like the breeze import is hiding the scala implicit in predef
Is there a way to work around this issue?