From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15980 invoked by alias); 31 Jan 2008 18:58:09 -0000 Received: (qmail 15955 invoked by uid 9708); 31 Jan 2008 18:58:09 -0000 Date: Thu, 31 Jan 2008 18:58:00 -0000 Message-ID: <20080131185808.15940.qmail@sourceware.org> From: tthomas@sourceware.org To: frysk-cvs@sourceware.org Subject: [SCM] master: Use BigDecimal.ROUND_HALF_UP instead of RoundingMode.HALF_UP. X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 947be60d8ade33f73862e7f5139b71128aeff362 X-Git-Newrev: d54ac89a4df090b463fc40bb4de4319e2da36111 Mailing-List: contact frysk-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: frysk-cvs-owner@sourceware.org Reply-To: frysk@sourceware.org X-SW-Source: 2008-q1/txt/msg00145.txt.bz2 The branch, master has been updated via d54ac89a4df090b463fc40bb4de4319e2da36111 (commit) from 947be60d8ade33f73862e7f5139b71128aeff362 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email. - Log ----------------------------------------------------------------- commit d54ac89a4df090b463fc40bb4de4319e2da36111 Author: Teresa Thomas Date: Thu Jan 31 13:57:25 2008 -0500 Use BigDecimal.ROUND_HALF_UP instead of RoundingMode.HALF_UP. frysk-core/frysk/value/ChangeLog 2008-01-31 Teresa Thomas * BigFloatingPoint.java (divide): Use BigDecimal .ROUND_HALF_UP instead of RoundingMode.HALF_UP. ----------------------------------------------------------------------- Summary of changes: frysk-core/frysk/value/BigFloatingPoint.java | 3 +-- frysk-core/frysk/value/ChangeLog | 5 +++++ 2 files changed, 6 insertions(+), 2 deletions(-) First 500 lines of diff: diff --git a/frysk-core/frysk/value/BigFloatingPoint.java b/frysk-core/frysk/value/BigFloatingPoint.java index eac5c3d..b7bc169 100644 --- a/frysk-core/frysk/value/BigFloatingPoint.java +++ b/frysk-core/frysk/value/BigFloatingPoint.java @@ -41,7 +41,6 @@ package frysk.value; import java.math.BigDecimal; import java.math.BigInteger; -import java.math.RoundingMode; /** * Floating point type - wrapper around java.math.BigDecimal. @@ -161,7 +160,7 @@ public class BigFloatingPoint * both neighbors are equidistant, in which case round up */ BigFloatingPoint divide (BigFloatingPoint v) { - return new BigFloatingPoint (value.divide(v.value, RoundingMode.HALF_UP)); + return new BigFloatingPoint (value.divide(v.value, BigDecimal.ROUND_HALF_UP)); } BigFloatingPoint mod (BigFloatingPoint v) { return new BigFloatingPoint (value.remainder(v.value)); diff --git a/frysk-core/frysk/value/ChangeLog b/frysk-core/frysk/value/ChangeLog index d8e31f7..7f0ff9c 100644 --- a/frysk-core/frysk/value/ChangeLog +++ b/frysk-core/frysk/value/ChangeLog @@ -1,3 +1,8 @@ +2008-01-31 Teresa Thomas + + * BigFloatingPoint.java (divide): Use BigDecimal + .ROUND_HALF_UP instead of RoundingMode.HALF_UP. + 2008-01-24 Teresa Thomas * FloatingPointType.java (printAsHexConstant): New. hooks/post-receive -- frysk system monitor/debugger