From 9639fc10c180642acecc6c9f5d2d7b2432f209b8 Mon Sep 17 00:00:00 2001 From: CyrilFerlicot Date: Fri, 10 Mar 2023 14:58:33 +0100 Subject: [PATCH 01/18] Use Pharo radix as it is the same as PolyMath one --- .../PMFloatingPointMachine.class.st | 79 +++++++------------ .../PMFloatingPointMachineTestCase.class.st | 10 +-- 2 files changed, 33 insertions(+), 56 deletions(-) diff --git a/src/Math-Helpers/PMFloatingPointMachine.class.st b/src/Math-Helpers/PMFloatingPointMachine.class.st index e1bd2453..c7b3b25b 100644 --- a/src/Math-Helpers/PMFloatingPointMachine.class.st +++ b/src/Math-Helpers/PMFloatingPointMachine.class.st @@ -20,7 +20,6 @@ Class { #superclass : #Object, #instVars : [ 'defaultNumericalPrecision', - 'radix', 'machinePrecision', 'negativeMachinePrecision', 'smallestNumber', @@ -42,6 +41,8 @@ PMFloatingPointMachine class >> new [ { #category : #accessing } PMFloatingPointMachine class >> reset [ + +