/usr/share/gnu-smalltalk/kernel/ScaledDec.st is in gnu-smalltalk-common 3.2.4-2.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 | "======================================================================
|
| ScaledDecimal Method Definitions
|
|
======================================================================"
"======================================================================
|
| Copyright 2000, 2001, 2002, 2003, 2008 Free Software Foundation, Inc.
| Written by Paolo Bonzini.
|
| This file is part of the GNU Smalltalk class library.
|
| The GNU Smalltalk class library is free software; you can redistribute it
| and/or modify it under the terms of the GNU Lesser General Public License
| as published by the Free Software Foundation; either version 2.1, or (at
| your option) any later version.
|
| The GNU Smalltalk class library is distributed in the hope that it will be
| useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
| General Public License for more details.
|
| You should have received a copy of the GNU Lesser General Public License
| along with the GNU Smalltalk class library; see the file COPYING.LIB.
| If not, write to the Free Software Foundation, 59 Temple Place - Suite
| 330, Boston, MA 02110-1301, USA.
|
======================================================================"
Number subclass: ScaledDecimal [
| fraction scale |
<category: 'Language-Data types'>
<comment: 'ScaledDecimal provides a numeric representation of fixed point decimal
numbers able to accurately represent decimal fractions. It supports
unbounded precision, with no limit to the number of digits before and
after the decimal point.'>
ScaledDecimal class >> newFromNumber: aNumber scale: scale [
"Answer a new instance of ScaledDecimal, representing a decimal
fraction with a decimal representation considered valid up to the
scale-th digit."
<category: 'instance creation'>
^(self basicNew)
setFraction: aNumber asFraction scale: scale;
yourself
]
one [
"Answer the receiver's representation of one."
<category: 'constants'>
^self class newFromNumber: 1 scale: scale
]
zero [
"Answer the receiver's representation of zero."
<category: 'constants'>
^self class newFromNumber: 0 scale: scale
]
fractionPart [
"Answer the fractional part of the receiver."
<category: 'coercion'>
^ScaledDecimal newFromNumber: fraction fractionPart scale: scale
]
integerPart [
"Answer the fractional part of the receiver."
<category: 'coercion'>
^ScaledDecimal newFromNumber: fraction integerPart scale: scale
]
truncated [
"Answer the receiver, converted to an Integer and truncated towards
-infinity."
<category: 'coercion'>
^fraction truncated
]
ceiling [
"Answer the receiver, converted to an Integer and truncated towards
+infinity."
<category: 'coercion'>
^fraction ceiling
]
asCNumber [
"Convert the receiver to a kind of number that is understood by
the C call-out mechanism."
<category: 'coercion'>
^self asFloatD
]
asFloatD [
"Answer the receiver, converted to a FloatD"
<category: 'coercion'>
^fraction asFloatD
]
asFloatE [
"Answer the receiver, converted to a FloatE"
<category: 'coercion'>
^fraction asFloatE
]
asFloatQ [
"Answer the receiver, converted to a FloatQ"
<category: 'coercion'>
^fraction asFloatQ
]
asFraction [
"Answer the receiver, converted to a Fraction"
<category: 'coercion'>
| num denom gcd |
denom := 10 raisedToInteger: scale.
num := fraction numerator * denom quo: fraction denominator.
gcd := num gcd: denom.
^Fraction numerator: (num divExact: gcd) denominator: (denom divExact: gcd)
]
coerce: aNumber [
"Answer aNumber, converted to a ScaledDecimal with the same scale
as the receiver."
<category: 'coercion'>
^ScaledDecimal newFromNumber: aNumber asFraction scale: scale
]
generality [
"Return the receiver's generality"
<category: 'coercion'>
^250
]
+ aNumber [
"Sum two numbers and answer the result."
<category: 'arithmetic'>
aNumber generality = self generality
ifTrue:
[^ScaledDecimal newFromNumber: fraction + aNumber fraction
scale: (scale max: aNumber scale)]
ifFalse: [^self retrySumCoercing: aNumber]
]
- aNumber [
"Subtract aNumber from the receiver and answer the result."
<category: 'arithmetic'>
aNumber generality = self generality
ifTrue:
[^ScaledDecimal newFromNumber: fraction - aNumber fraction
scale: (scale max: aNumber scale)]
ifFalse: [^self retryDifferenceCoercing: aNumber]
]
* aNumber [
"Multiply two numbers and answer the result."
<category: 'arithmetic'>
aNumber generality = self generality
ifTrue:
[^ScaledDecimal newFromNumber: fraction * aNumber fraction
scale: (scale max: aNumber scale)]
ifFalse: [^self retryMultiplicationCoercing: aNumber]
]
/ aNumber [
"Divide two numbers and answer the result."
<category: 'arithmetic'>
aNumber generality = self generality
ifTrue:
[^ScaledDecimal newFromNumber: fraction / aNumber fraction
scale: (scale max: aNumber scale)]
ifFalse: [^self retryDivisionCoercing: aNumber]
]
\\ aNumber [
"Answer the remainder after integer division the receiver by aNumber
with truncation towards negative infinity."
<category: 'arithmetic'>
aNumber generality = self generality
ifTrue:
[^ScaledDecimal newFromNumber: fraction \\ aNumber fraction
scale: (scale max: aNumber scale)]
ifFalse: [^self retry: #\\ coercing: aNumber]
]
// aNumber [
"Answer the integer quotient after dividing the receiver by aNumber
with truncation towards negative infinity."
<category: 'arithmetic'>
^fraction // aNumber
]
< aNumber [
"Answer whether the receiver is less than arg."
<category: 'comparing'>
aNumber generality = self generality
ifTrue: [^(self compare: aNumber) < 0]
ifFalse: [^self retryRelationalOp: #< coercing: aNumber]
]
<= aNumber [
"Answer whether the receiver is less than or equal to arg."
<category: 'comparing'>
aNumber generality = self generality
ifTrue: [^(self compare: aNumber) <= 0]
ifFalse: [^self retryRelationalOp: #<= coercing: aNumber]
]
> aNumber [
"Answer whether the receiver is greater than arg."
<category: 'comparing'>
aNumber generality = self generality
ifTrue: [^(self compare: aNumber) > 0]
ifFalse: [^self retryRelationalOp: #> coercing: aNumber]
]
>= aNumber [
"Answer whether the receiver is greater than or equal to arg."
<category: 'comparing'>
aNumber generality = self generality
ifTrue: [^(self compare: aNumber) >= 0]
ifFalse: [^self retryRelationalOp: #>= coercing: aNumber]
]
= arg [
"Answer whether the receiver is equal to arg."
<category: 'comparing'>
(arg isKindOf: Number) ifFalse: [^false].
arg generality = self generality
ifTrue: [^(self compare: arg) = 0]
ifFalse: [^self retryEqualityCoercing: arg]
]
~= arg [
"Answer whether the receiver is not equal arg."
<category: 'comparing'>
(arg isKindOf: Number) ifFalse: [^true].
arg generality = self generality
ifTrue: [^(self compare: arg) ~= 0]
ifFalse: [^self retryInequalityCoercing: arg]
]
hash [
"Answer an hash value for the receiver."
<category: 'comparing'>
^fraction hash
]
displayOn: aStream [
"Print a representation of the receiver on aStream, intended to
be directed to a user. In this particular case, the `scale'
part of the #printString is not emitted."
<category: 'printing'>
| aFraction fracDigits |
self < 0 ifTrue: [aStream nextPut: $-].
aFraction := fraction abs.
aStream nextPutAll: aFraction truncated printString.
scale = 0 ifTrue: [^self].
aStream nextPut: $..
fracDigits := aFraction fractionPart.
scale timesRepeat:
[fracDigits := fracDigits * 10.
aStream nextPut: (Character digitValue: fracDigits truncated).
fracDigits := fracDigits fractionPart]
]
printOn: aStream [
"Print a representation of the receiver on aStream."
<category: 'printing'>
self displayOn: aStream.
aStream nextPut: $s.
scale printOn: aStream
]
isLiteralObject [
"Answer whether the receiver is expressible as a Smalltalk literal."
<category: 'storing'>
^true
]
storeLiteralOn: aStream [
"Store on aStream some Smalltalk code which compiles to the receiver"
<category: 'storing'>
self storeOn: aStream
]
storeOn: aStream [
"Print Smalltalk code that compiles to the receiver on aStream."
<category: 'storing'>
self printOn: aStream
]
fraction [
"Private - Answer to full precision the fraction that the receiver
represents."
<category: 'private'>
^fraction
]
compare: arg [
"Private - Answer a Number that is the receiver - arg,
truncated to a number of digits equal to the minimum of our
scale and aScaledDecimal's."
<category: 'private'>
^((fraction - arg fraction)
* (10 raisedToInteger: (self scale min: arg scale))) rounded
]
scale [
"Private - Answer a integer which represents the total number of digits
used to represent the fraction part of the receiver, including trailing
zeroes."
<category: 'private'>
^scale
]
setFraction: theFraction scale: theScale [
"Private - Set the fraction to theFraction and the total number of digits
used to represent the fraction part of the receiver, including trailing
zeroes, to the Integer theScale."
<category: 'private'>
fraction := theFraction.
scale := theScale
]
]
|