Ejemplo n.º 1
0
 /**
  * Quotient division.
  *
  * @param S Quotient.
  * @return this/S.
  */
 public Quotient<C> divide(Quotient<C> S) {
   return multiply(S.inverse());
 }