crowlogic / arb4j

arb4j is a Java API for the arbitrary precision ball arithmetic library found at http://arblib.org
Other
1 stars 0 forks source link

modify functions to keep track of bits #386

Closed crowlogic closed 3 months ago

crowlogic commented 4 months ago
  public Real log(int prec, Real res)
  {
    arblib.arb_log(res, this, prec);
    res.bits = prec;
    return res;    
  }