Integer.st
author Claus Gittinger <cg@exept.de>
Thu, 04 Apr 2019 00:24:02 +0200
changeset 24047 df6ad32114b1
parent 24005 813a3a6e3af4
child 24099 b01e81fcd293
permissions -rw-r--r--
*** empty log message ***
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
23930
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
     1
"{ Encoding: utf8 }"
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
     2
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     3
"
5
67342904af11 *** empty log message ***
claus
parents: 3
diff changeset
     4
 COPYRIGHT (c) 1988 by Claus Gittinger
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
     5
              All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     6
a27a279701f8 Initial revision
claus
parents:
diff changeset
     7
 This software is furnished under a license and may be used
a27a279701f8 Initial revision
claus
parents:
diff changeset
     8
 only in accordance with the terms of that license and with the
a27a279701f8 Initial revision
claus
parents:
diff changeset
     9
 inclusion of the above copyright notice.   This software may not
a27a279701f8 Initial revision
claus
parents:
diff changeset
    10
 be provided or otherwise made available to, or used by, any
a27a279701f8 Initial revision
claus
parents:
diff changeset
    11
 other person.  No title to or ownership of the software is
a27a279701f8 Initial revision
claus
parents:
diff changeset
    12
 hereby transferred.
a27a279701f8 Initial revision
claus
parents:
diff changeset
    13
"
5435
ad6612cc6848 oops odd/even fallback was wrong
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
    14
"{ Package: 'stx:libbasic' }"
ad6612cc6848 oops odd/even fallback was wrong
Claus Gittinger <cg@exept.de>
parents: 5238
diff changeset
    15
17488
9da696f7560f class: Integer
Claus Gittinger <cg@exept.de>
parents: 17248
diff changeset
    16
"{ NameSpace: Smalltalk }"
9da696f7560f class: Integer
Claus Gittinger <cg@exept.de>
parents: 17248
diff changeset
    17
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    18
Number subclass:#Integer
19327
723b235f0980 #DOCUMENTATION
Stefan Vogel <sv@exept.de>
parents: 19319
diff changeset
    19
	instanceVariableNames:''
723b235f0980 #DOCUMENTATION
Stefan Vogel <sv@exept.de>
parents: 19319
diff changeset
    20
	classVariableNames:'BCDConversionErrorSignal PrimeCache'
723b235f0980 #DOCUMENTATION
Stefan Vogel <sv@exept.de>
parents: 19319
diff changeset
    21
	poolDictionaries:''
723b235f0980 #DOCUMENTATION
Stefan Vogel <sv@exept.de>
parents: 19319
diff changeset
    22
	category:'Magnitude-Numbers'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    23
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    24
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
    25
Object subclass:#ModuloNumber
19327
723b235f0980 #DOCUMENTATION
Stefan Vogel <sv@exept.de>
parents: 19319
diff changeset
    26
	instanceVariableNames:'modulus reciprocal shift'
723b235f0980 #DOCUMENTATION
Stefan Vogel <sv@exept.de>
parents: 19319
diff changeset
    27
	classVariableNames:''
723b235f0980 #DOCUMENTATION
Stefan Vogel <sv@exept.de>
parents: 19319
diff changeset
    28
	poolDictionaries:''
723b235f0980 #DOCUMENTATION
Stefan Vogel <sv@exept.de>
parents: 19319
diff changeset
    29
	privateIn:Integer
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
    30
!
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
    31
1842
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
    32
!Integer class methodsFor:'documentation'!
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    33
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    34
copyright
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    35
"
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    36
 COPYRIGHT (c) 1988 by Claus Gittinger
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
    37
              All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    38
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    39
 This software is furnished under a license and may be used
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    40
 only in accordance with the terms of that license and with the
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    41
 inclusion of the above copyright notice.   This software may not
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    42
 be provided or otherwise made available to, or used by, any
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    43
 other person.  No title to or ownership of the software is
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    44
 hereby transferred.
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    45
"
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    46
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    47
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    48
documentation
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    49
"
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    50
    abstract superclass for all integer numbers.
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    51
    See details in concrete subclasses LargeInteger and SmallInteger.
212
3edd10edefaf *** empty log message ***
claus
parents: 202
diff changeset
    52
1892
d3564145c15c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1888
diff changeset
    53
    Mixed mode arithmetic:
22071
9423b8769ca7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22070
diff changeset
    54
        int <op> int         -> int
9423b8769ca7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22070
diff changeset
    55
        int <op> fraction    -> fraction
9423b8769ca7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22070
diff changeset
    56
        int <op> float       -> float
9423b8769ca7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22070
diff changeset
    57
        int <op> fix         -> fix; scale is fix's scale
1892
d3564145c15c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1888
diff changeset
    58
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1210
diff changeset
    59
    [author:]
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
    60
        Claus Gittinger
1556
134d96466f5a commentary
Claus Gittinger <cg@exept.de>
parents: 1555
diff changeset
    61
134d96466f5a commentary
Claus Gittinger <cg@exept.de>
parents: 1555
diff changeset
    62
    [see also:]
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
    63
        Number
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
    64
        LargeInteger SmallInteger
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
    65
        Float ShortFloat Fraction FixedPoint
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    66
"
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
    67
! !
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    68
1842
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
    69
!Integer class methodsFor:'instance creation'!
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
    70
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3036
diff changeset
    71
byte1:b1 byte2:b2 byte3:b3 byte4:b4
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3036
diff changeset
    72
    "Squeak compatibility:
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3036
diff changeset
    73
     Return an Integer given four value bytes.
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
    74
     The returned integer is either a Small- or a LargeInteger
15241
735c63d4e41f class: Integer
Claus Gittinger <cg@exept.de>
parents: 15084
diff changeset
    75
     (on 32bit systems - on 64bit systems, it will be always a SmallInteger)"
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3036
diff changeset
    76
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3036
diff changeset
    77
    |t|
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3036
diff changeset
    78
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3036
diff changeset
    79
    t := b4.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3036
diff changeset
    80
    t := (t bitShift:8) + b3.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3036
diff changeset
    81
    t := (t bitShift:8) + b2.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3036
diff changeset
    82
    ^ (t bitShift:8) + b1.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3036
diff changeset
    83
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3036
diff changeset
    84
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3036
diff changeset
    85
     (Integer byte1:16r10 byte2:16r32 byte3:16r54 byte4:16r76) hexPrintString
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3036
diff changeset
    86
     (Integer byte1:16r00 byte2:16r11 byte3:16r22 byte4:16r33) hexPrintString
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3036
diff changeset
    87
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3036
diff changeset
    88
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3036
diff changeset
    89
    "Created: 19.10.1997 / 18:08:52 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3036
diff changeset
    90
    "Modified: 19.10.1997 / 18:09:04 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3036
diff changeset
    91
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3036
diff changeset
    92
3639
c4fbb700a569 added #fastFromString: (for Andis IEC-SocketInterface)
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
    93
fastFromString:aString at:startIndex
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
    94
    "return the next unsigned Integer from the string
4610
742650733761 comment
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
    95
     as a decimal number, starting at startIndex.
19276
533a1c12846c use atol instead of atoi
Claus Gittinger <cg@exept.de>
parents: 19257
diff changeset
    96
     The number must be in the native machine's int range
23944
1f8b8f9e755f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23930
diff changeset
    97
     (i.e. 64bit or 32bit depending on the cpu's native pointer size);
1f8b8f9e755f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23930
diff changeset
    98
     However, for portability, only use it for 32bit numbers (uint32s).
3639
c4fbb700a569 added #fastFromString: (for Andis IEC-SocketInterface)
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
    99
     No spaces are skipped.
c4fbb700a569 added #fastFromString: (for Andis IEC-SocketInterface)
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
   100
c4fbb700a569 added #fastFromString: (for Andis IEC-SocketInterface)
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
   101
     This is a specially tuned entry (using a low-level C-call), which
c4fbb700a569 added #fastFromString: (for Andis IEC-SocketInterface)
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
   102
     returns garbage if the argument string is not a small integer number.
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
   103
     It has been added to allow high speed string decomposition into numbers,
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
   104
     especially for mass-data."
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
   105
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
   106
%{   /* NOCONTEXT */
12480
01a98f46e297 change __isString() to __isStringLike() in primitive code
Stefan Vogel <sv@exept.de>
parents: 12422
diff changeset
   107
    if (__isStringLike(aString) && __isSmallInteger(startIndex)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   108
        char *cp = (char *)(__stringVal(aString));
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   109
        int idx = __intVal(startIndex) - 1;
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   110
        unsigned INT val;
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   111
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   112
        if ((unsigned)idx < __stringSize(aString)) {
23944
1f8b8f9e755f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23930
diff changeset
   113
            extern int atoi();
1f8b8f9e755f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23930
diff changeset
   114
            extern long atol();
19276
533a1c12846c use atol instead of atoi
Claus Gittinger <cg@exept.de>
parents: 19257
diff changeset
   115
533a1c12846c use atol instead of atoi
Claus Gittinger <cg@exept.de>
parents: 19257
diff changeset
   116
            val = atol(cp + idx);
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   117
            if (val <= _MAX_INT) {
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   118
                RETURN(__mkSmallInteger(val));
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   119
            }
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   120
            RETURN (__MKUINT(val));
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   121
        }
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
   122
    }
3639
c4fbb700a569 added #fastFromString: (for Andis IEC-SocketInterface)
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
   123
%}.
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
   124
    self primitiveFailed.
3639
c4fbb700a569 added #fastFromString: (for Andis IEC-SocketInterface)
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
   125
c4fbb700a569 added #fastFromString: (for Andis IEC-SocketInterface)
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
   126
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   127
     Integer fastFromString:'12345' at:1
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   128
     Integer fastFromString:'12345' at:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   129
     Integer fastFromString:'12345' at:3
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   130
     Integer fastFromString:'12345' at:4
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   131
     Integer fastFromString:'12345' at:5
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   132
     Integer fastFromString:'1234512345' at:1
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   133
     Integer fastFromString:'2147483647' at:1
23944
1f8b8f9e755f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23930
diff changeset
   134
     Integer fastFromString:'-12345' at:1
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   135
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   136
     Integer fastFromString:'4294967295' at:1
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   137
     Integer fastFromString:'12345' at:6
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   138
     Integer fastFromString:'12345' at:0
3639
c4fbb700a569 added #fastFromString: (for Andis IEC-SocketInterface)
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
   139
c4fbb700a569 added #fastFromString: (for Andis IEC-SocketInterface)
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
   140
     Time millisecondsToRun:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   141
        100000 timesRepeat:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   142
            Integer readFrom:'12345'
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   143
        ]
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   144
     ]
3639
c4fbb700a569 added #fastFromString: (for Andis IEC-SocketInterface)
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
   145
    "
c4fbb700a569 added #fastFromString: (for Andis IEC-SocketInterface)
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
   146
c4fbb700a569 added #fastFromString: (for Andis IEC-SocketInterface)
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
   147
    "
c4fbb700a569 added #fastFromString: (for Andis IEC-SocketInterface)
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
   148
     Time millisecondsToRun:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   149
        100000 timesRepeat:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   150
            Integer fastFromString:'12345' at:1
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   151
        ]
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   152
     ]
3639
c4fbb700a569 added #fastFromString: (for Andis IEC-SocketInterface)
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
   153
    "
23944
1f8b8f9e755f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23930
diff changeset
   154
1f8b8f9e755f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23930
diff changeset
   155
    "Modified (comment): / 20-03-2019 / 13:44:23 / Claus Gittinger"
3639
c4fbb700a569 added #fastFromString: (for Andis IEC-SocketInterface)
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
   156
!
c4fbb700a569 added #fastFromString: (for Andis IEC-SocketInterface)
Claus Gittinger <cg@exept.de>
parents: 3638
diff changeset
   157
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
   158
fromBCDBytes:aByteArray
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
   159
    "given a byteArray in BCD format, return an appropriate integer.
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
   160
     The byteArray must contain the BCD encoded decimal string,
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
   161
     starting with the most significant digits.
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
   162
     This conversion is useful for some communication protocols,
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
   163
     or control systems, which represent big numbers this way...
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
   164
    "
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
   165
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
   166
    |val|
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
   167
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
   168
    val := 0.
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
   169
    aByteArray do:[:twoDigits |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   170
        |hi lo|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   171
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   172
        hi := (twoDigits bitShift:-4) bitAnd:16r0F.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   173
        lo := twoDigits bitAnd:16r0F.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   174
        val := (val * 100) + (hi * 10) + lo
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
   175
    ].
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
   176
    ^ val
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
   177
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
   178
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   179
     Integer fromBCDBytes:#[16r12 16r34 16r56]
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   180
     Integer fromBCDBytes:#[16r12 16r34 16r56 16r78]
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   181
     Integer fromBCDBytes:#[16r12 16r34 16r56 16r78 16r90]
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   182
     Integer fromBCDBytes:#[16r98 16r76 16r54]
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   183
     Integer fromBCDBytes:#[16r98 16r76 16r54 16r32]
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   184
     Integer fromBCDBytes:#[16r98 16r76 16r54 16r32 16r10]
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
   185
     Integer fromBCDBytes:#[16r12 16r34 16r56 16r78 16r90 16r12 16r34 16r56 16r78 16r90]
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
   186
    "
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
   187
!
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
   188
5171
6dc2f5a18953 Add #fromSwappedBCDBytes
Stefan Vogel <sv@exept.de>
parents: 5017
diff changeset
   189
fromSwappedBCDBytes:aByteArray
6dc2f5a18953 Add #fromSwappedBCDBytes
Stefan Vogel <sv@exept.de>
parents: 5017
diff changeset
   190
    "given a byteArray in BCD format, return an appropriate integer.
6dc2f5a18953 Add #fromSwappedBCDBytes
Stefan Vogel <sv@exept.de>
parents: 5017
diff changeset
   191
     The byteArray must contain the BCD encoded decimal string,
6dc2f5a18953 Add #fromSwappedBCDBytes
Stefan Vogel <sv@exept.de>
parents: 5017
diff changeset
   192
     starting with the LEAST significant digits.
6dc2f5a18953 Add #fromSwappedBCDBytes
Stefan Vogel <sv@exept.de>
parents: 5017
diff changeset
   193
     This conversion is useful for some communication protocols,
6dc2f5a18953 Add #fromSwappedBCDBytes
Stefan Vogel <sv@exept.de>
parents: 5017
diff changeset
   194
     or control systems (e.g. SMC), which represent big numbers this way...
6dc2f5a18953 Add #fromSwappedBCDBytes
Stefan Vogel <sv@exept.de>
parents: 5017
diff changeset
   195
    "
6dc2f5a18953 Add #fromSwappedBCDBytes
Stefan Vogel <sv@exept.de>
parents: 5017
diff changeset
   196
6dc2f5a18953 Add #fromSwappedBCDBytes
Stefan Vogel <sv@exept.de>
parents: 5017
diff changeset
   197
    |val|
6dc2f5a18953 Add #fromSwappedBCDBytes
Stefan Vogel <sv@exept.de>
parents: 5017
diff changeset
   198
6dc2f5a18953 Add #fromSwappedBCDBytes
Stefan Vogel <sv@exept.de>
parents: 5017
diff changeset
   199
    val := 0.
6dc2f5a18953 Add #fromSwappedBCDBytes
Stefan Vogel <sv@exept.de>
parents: 5017
diff changeset
   200
    aByteArray do:[:twoDigits |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   201
        |hi lo|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   202
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   203
        lo := (twoDigits bitShift:-4) bitAnd:16r0F.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   204
        hi := twoDigits bitAnd:16r0F.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   205
        lo <= 9 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   206
            val := (val * 100) + (hi * 10) + lo
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   207
        ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   208
            "16rF is used to encode an odd number of digits"
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   209
            val := (val * 10) + hi.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   210
        ].
5171
6dc2f5a18953 Add #fromSwappedBCDBytes
Stefan Vogel <sv@exept.de>
parents: 5017
diff changeset
   211
    ].
6dc2f5a18953 Add #fromSwappedBCDBytes
Stefan Vogel <sv@exept.de>
parents: 5017
diff changeset
   212
    ^ val
6dc2f5a18953 Add #fromSwappedBCDBytes
Stefan Vogel <sv@exept.de>
parents: 5017
diff changeset
   213
6dc2f5a18953 Add #fromSwappedBCDBytes
Stefan Vogel <sv@exept.de>
parents: 5017
diff changeset
   214
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   215
     Integer fromSwappedBCDBytes:#[16r12 16r34 16r56]
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   216
     Integer fromSwappedBCDBytes:#[16r12 16r34 16rF6]
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   217
     Integer fromSwappedBCDBytes:#[16r12 16r34 16r56 16r78]
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   218
     Integer fromSwappedBCDBytes:#[16r12 16r34 16r56 16r78 16r90]
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   219
     Integer fromSwappedBCDBytes:#[16r98 16r76 16r54]
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   220
     Integer fromSwappedBCDBytes:#[16r98 16r76 16r54 16r32]
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   221
     Integer fromSwappedBCDBytes:#[16r98 16r76 16r54 16r32 16r10]
5171
6dc2f5a18953 Add #fromSwappedBCDBytes
Stefan Vogel <sv@exept.de>
parents: 5017
diff changeset
   222
     Integer fromSwappedBCDBytes:#[16r12 16r34 16r56 16r78 16r90 16r12 16r34 16r56 16r78 16r90]
6dc2f5a18953 Add #fromSwappedBCDBytes
Stefan Vogel <sv@exept.de>
parents: 5017
diff changeset
   223
    "
6dc2f5a18953 Add #fromSwappedBCDBytes
Stefan Vogel <sv@exept.de>
parents: 5017
diff changeset
   224
!
6dc2f5a18953 Add #fromSwappedBCDBytes
Stefan Vogel <sv@exept.de>
parents: 5017
diff changeset
   225
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
   226
new:numberOfBytes neg:negative
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
   227
    "for ST-80 compatibility:
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
   228
     Return an empty Integer (uninitialized value) with space for
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
   229
     numberOfBytes bytes (= digitLength). The additional argument
132
ab2cfccd218c *** empty log message ***
claus
parents: 92
diff changeset
   230
     negative specifies if the result should be a negative number.
ab2cfccd218c *** empty log message ***
claus
parents: 92
diff changeset
   231
     The digits can be stored byte-wise into the result, using digitAt:put:"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
   232
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
   233
    ^ LargeInteger basicNew
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   234
            numberOfDigits:numberOfBytes
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   235
            sign:(negative ifTrue:[-1] ifFalse:[1])
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   236
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   237
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   238
readFrom:aStringOrStream
20329
8d0544411027 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20269
diff changeset
   239
    "return the next Integer from the (character-)stream aStream
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   240
     as decimal number.
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   241
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   242
     NOTICE:
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   243
       This behaves different from the default readFrom:, in returning
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   244
       0 (instead of raising an error) in case no number can be read.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   245
       It is unclear, if this is the correct behavior (ST-80 does this)
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   246
       - depending on the upcoming ANSI standard, this may change."
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   247
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   248
    ^ self readFrom:aStringOrStream onError:0
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   249
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   250
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   251
     Integer readFrom:(ReadStream on:'foobar')
22460
f8b145aaccda #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 22222
diff changeset
   252
     Integer readFrom:(ReadStream on:'123foobar')
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   253
     Integer readFrom:(ReadStream on:'foobar') onError:nil
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   254
    "
22460
f8b145aaccda #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 22222
diff changeset
   255
f8b145aaccda #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 22222
diff changeset
   256
    "Modified (comment): / 17-01-2018 / 18:27:26 / stefan"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   257
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   258
21636
b1bf6b59060e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21429
diff changeset
   259
readFrom:aStringOrStream allowRadix:allowRadix onError:exceptionBlock
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   260
    "return the next Integer from the (character-)stream aStream,
21637
337ade9e863e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21636
diff changeset
   261
     possibly handling initial XXr for arbitrary radix numbers and initial sign.
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   262
     Also, all initial whitespace is skipped.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   263
     If the string does not represent a valid integer number,
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   264
     return the value of exceptionBlock."
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   265
3995
777470826394 no need for another error-handler blcok in #readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 3993
diff changeset
   266
    |value|
777470826394 no need for another error-handler blcok in #readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 3993
diff changeset
   267
7093
60bad14d38fc Convert Object>>errorSignal -> Error
Stefan Vogel <sv@exept.de>
parents: 6907
diff changeset
   268
    Error handle:[:ex |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   269
        ^ exceptionBlock value
1700
25223802076c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1560
diff changeset
   270
    ] do:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   271
        |str nextChar negative|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   272
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   273
        str := aStringOrStream readStream.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   274
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   275
        nextChar := str skipSeparators.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   276
        (nextChar == $-) ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   277
            negative := true.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   278
            str next.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   279
            nextChar := str peekOrNil
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   280
        ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   281
            negative := false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   282
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   283
        (nextChar isNil or:[nextChar isDigit not]) ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   284
            "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   285
             the string does not represent an integer
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   286
            "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   287
            ^ exceptionBlock value
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   288
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   289
        value := self readFrom:str radix:10.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   290
        nextChar := str peekOrNil.
21636
b1bf6b59060e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21429
diff changeset
   291
        (allowRadix and:[((nextChar == $r) or:[ nextChar == $R])]) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   292
            "-xxr<number> is invalid; should be xxr-<val>"
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   293
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   294
            negative ifTrue:[
20332
1f8971a07091 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20329
diff changeset
   295
                'Integer [warning]: invalid (negative) radix; please use xxr-<val> instead of -xxr<number>' errorPrintCR.
1f8971a07091 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20329
diff changeset
   296
                "/ negative := false
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   297
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   298
            str next.
20332
1f8971a07091 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20329
diff changeset
   299
            nextChar := str peekOrNil.
1f8971a07091 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20329
diff changeset
   300
            nextChar == $- ifTrue:[
1f8971a07091 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20329
diff changeset
   301
                negative ifTrue:[
1f8971a07091 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20329
diff changeset
   302
                    'Integer [warning]: invalid double sign; please use xxr-<val> instead of -xxr<number>' errorPrintCR.
1f8971a07091 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20329
diff changeset
   303
                ].
1f8971a07091 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20329
diff changeset
   304
                negative := true.
1f8971a07091 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20329
diff changeset
   305
                str next.
1f8971a07091 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20329
diff changeset
   306
            ].
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   307
            value := self readFrom:str radix:value
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   308
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   309
        negative ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   310
            value := value negated
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   311
        ].
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   312
    ].
3995
777470826394 no need for another error-handler blcok in #readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 3993
diff changeset
   313
    ^ value
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   314
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   315
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   316
     Integer readFrom:'12345'      onError:['wrong']
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   317
     Integer readFrom:'-12345'     onError:['wrong']
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   318
     Integer readFrom:'+12345'     onError:['wrong']
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   319
     Integer readFrom:'16rFFFF'    onError:['wrong']
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   320
     Integer readFrom:'12345.1234' onError:['wrong']
3995
777470826394 no need for another error-handler blcok in #readFrom:onError:
Claus Gittinger <cg@exept.de>
parents: 3993
diff changeset
   321
     Integer readFrom:'foo'        onError:['wrong']
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   322
     Integer readFrom:'foo'
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   323
    "
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   324
21636
b1bf6b59060e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21429
diff changeset
   325
    "Created: / 09-03-2017 / 16:26:28 / cg"
b1bf6b59060e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21429
diff changeset
   326
!
b1bf6b59060e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21429
diff changeset
   327
b1bf6b59060e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21429
diff changeset
   328
readFrom:aStringOrStream onError:exceptionBlock
b1bf6b59060e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21429
diff changeset
   329
    "return the next Integer from the (character-)stream aStream,
b1bf6b59060e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21429
diff changeset
   330
     handling initial XXr for arbitrary radix numbers and initial sign.
b1bf6b59060e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21429
diff changeset
   331
     Also, all initial whitespace is skipped.
b1bf6b59060e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21429
diff changeset
   332
     If the string does not represent a valid integer number,
b1bf6b59060e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21429
diff changeset
   333
     return the value of exceptionBlock."
b1bf6b59060e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21429
diff changeset
   334
b1bf6b59060e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21429
diff changeset
   335
    ^ self readFrom:aStringOrStream allowRadix:true onError:exceptionBlock
b1bf6b59060e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21429
diff changeset
   336
b1bf6b59060e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21429
diff changeset
   337
    "
b1bf6b59060e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21429
diff changeset
   338
     Integer readFrom:'12345'      onError:['wrong']
b1bf6b59060e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21429
diff changeset
   339
     Integer readFrom:'-12345'     onError:['wrong']
b1bf6b59060e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21429
diff changeset
   340
     Integer readFrom:'+12345'     onError:['wrong']
b1bf6b59060e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21429
diff changeset
   341
     Integer readFrom:'16rFFFF'    onError:['wrong']
b1bf6b59060e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21429
diff changeset
   342
     Integer readFrom:'12345.1234' onError:['wrong']
b1bf6b59060e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21429
diff changeset
   343
     Integer readFrom:'foo'        onError:['wrong']
b1bf6b59060e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21429
diff changeset
   344
     Integer readFrom:'foo'
b1bf6b59060e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21429
diff changeset
   345
b1bf6b59060e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21429
diff changeset
   346
     Integer readFrom:'16rFFFF'    allowRadix:false onError:['wrong']
b1bf6b59060e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21429
diff changeset
   347
    "
b1bf6b59060e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21429
diff changeset
   348
b1bf6b59060e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21429
diff changeset
   349
    "Created: / 16-11-1995 / 22:48:59 / cg"
b1bf6b59060e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21429
diff changeset
   350
    "Modified (comment): / 09-03-2017 / 16:27:14 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   351
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   352
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   353
readFrom:aStringOrStream radix:radix
20329
8d0544411027 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20269
diff changeset
   354
    "return the next UNSIGNED Integer from the (character-)stream aStream in radix; 
8d0544411027 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20269
diff changeset
   355
     (assumes that the initial XXr has already been read).
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   356
     No whitespace-skipping is done.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   357
     Returns 0 if no number available.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   358
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   359
     NOTICE:
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   360
       This behaves different from the default readFrom:, in returning
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   361
       0 (instead of raising an error) in case no number can be read.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   362
       It is unclear, if this is the correct behavior (ST-80 does this)
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   363
       - depending on the upcoming ANSI standard, this may change."
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   364
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   365
    ^ self readFrom:aStringOrStream radix:radix onError:0
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   366
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   367
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   368
readFrom:aStringOrStream radix:radix onError:exceptionBlock
20329
8d0544411027 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20269
diff changeset
   369
    "return the next UNSIGNED Integer from the (character-)stream aStream in radix; 
8d0544411027 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20269
diff changeset
   370
     (assumes that the initial XXr has already been read).
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   371
     No whitespace-skipping is done.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   372
     Returns the value of exceptionBlock, if no number is available."
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   373
20130
f5f12388c4fb #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 19874
diff changeset
   374
    |str nextChar value
4169
7079cb06963b tuned string -> integer conversion for Large numbers.
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   375
     r     "{ Class: SmallInteger }"
11654
9dd403ddfb91 tuned largeInteger reading
Claus Gittinger <cg@exept.de>
parents: 11587
diff changeset
   376
     r2    "{ Class: SmallInteger }"
9dd403ddfb91 tuned largeInteger reading
Claus Gittinger <cg@exept.de>
parents: 11587
diff changeset
   377
     r3    "{ Class: SmallInteger }"
9dd403ddfb91 tuned largeInteger reading
Claus Gittinger <cg@exept.de>
parents: 11587
diff changeset
   378
     r4    "{ Class: SmallInteger }"
9dd403ddfb91 tuned largeInteger reading
Claus Gittinger <cg@exept.de>
parents: 11587
diff changeset
   379
     digit1 digit2 digit3 digit4 |
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   380
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   381
    str := aStringOrStream readStream.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   382
3374
6897f584accb faster conversion from string (due to slow #pastEnd)
Claus Gittinger <cg@exept.de>
parents: 3298
diff changeset
   383
    nextChar := str peekOrNil.
20130
f5f12388c4fb #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 19874
diff changeset
   384
    (nextChar isNil or:[(value := nextChar digitValueRadix:radix) isNil]) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   385
        ^ exceptionBlock value
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   386
    ].
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   387
4169
7079cb06963b tuned string -> integer conversion for Large numbers.
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   388
"/ OLD code
7079cb06963b tuned string -> integer conversion for Large numbers.
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   389
"/    [nextChar notNil and:[nextChar isDigitRadix:radix]] whileTrue:[
7079cb06963b tuned string -> integer conversion for Large numbers.
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   390
"/        str next.
7079cb06963b tuned string -> integer conversion for Large numbers.
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   391
"/        value := value * radix + nextChar digitValue.
7079cb06963b tuned string -> integer conversion for Large numbers.
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   392
"/        nextChar := str peekOrNil.
7079cb06963b tuned string -> integer conversion for Large numbers.
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   393
"/    ].
7079cb06963b tuned string -> integer conversion for Large numbers.
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   394
"/    ^ value.
7079cb06963b tuned string -> integer conversion for Large numbers.
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   395
7079cb06963b tuned string -> integer conversion for Large numbers.
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   396
    "/ the code below does the same, but is much faster, if the
7079cb06963b tuned string -> integer conversion for Large numbers.
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   397
    "/ converted number is large
7079cb06963b tuned string -> integer conversion for Large numbers.
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   398
    "/ (requires only half as many LargeInt multiplications and additions)
7079cb06963b tuned string -> integer conversion for Large numbers.
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   399
    "/ It should not be slower for smallIntegers.
7079cb06963b tuned string -> integer conversion for Large numbers.
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   400
7079cb06963b tuned string -> integer conversion for Large numbers.
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   401
    r := radix.
7079cb06963b tuned string -> integer conversion for Large numbers.
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   402
    r2 := r * r.
11654
9dd403ddfb91 tuned largeInteger reading
Claus Gittinger <cg@exept.de>
parents: 11587
diff changeset
   403
    r4 := r2 * r2.
9dd403ddfb91 tuned largeInteger reading
Claus Gittinger <cg@exept.de>
parents: 11587
diff changeset
   404
20130
f5f12388c4fb #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 19874
diff changeset
   405
    [
f5f12388c4fb #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 19874
diff changeset
   406
        nextChar := str nextPeekOrNil.
f5f12388c4fb #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 19874
diff changeset
   407
        nextChar notNil and:[(digit1 := nextChar digitValueRadix:r) notNil]
f5f12388c4fb #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 19874
diff changeset
   408
    ] whileTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   409
        "/ read 4 chars and pre-compute their value to avoid largeInt operations.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   410
20130
f5f12388c4fb #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 19874
diff changeset
   411
        nextChar := str nextPeekOrNil.
f5f12388c4fb #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 19874
diff changeset
   412
        (nextChar isNil or:[(digit2 := nextChar digitValueRadix:r) isNil]) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   413
            ^ (value * r) + digit1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   414
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   415
20130
f5f12388c4fb #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 19874
diff changeset
   416
        nextChar := str nextPeekOrNil.
f5f12388c4fb #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 19874
diff changeset
   417
        (nextChar isNil or:[(digit3 := nextChar digitValueRadix:r) isNil]) ifTrue:[
f5f12388c4fb #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 19874
diff changeset
   418
            ^ (value * r2) + ((digit1*r) + digit2) .
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   419
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   420
20130
f5f12388c4fb #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 19874
diff changeset
   421
        nextChar := str nextPeekOrNil.
f5f12388c4fb #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 19874
diff changeset
   422
        (nextChar isNil or:[ (digit4 := nextChar digitValueRadix:r) isNil]) ifTrue:[
f5f12388c4fb #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 19874
diff changeset
   423
            r3 := r2 * r.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   424
            ^ (value * r3) + ((((digit1*r) + digit2)*r) + digit3).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   425
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   426
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   427
        value := (value * r4) + ((((((digit1*r) + digit2)*r) + digit3)*r) + digit4).
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   428
    ].
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   429
    ^ value
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   430
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
   431
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   432
     Integer readFrom:(ReadStream on:'12345') radix:10
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   433
     Integer readFrom:(ReadStream on:'FFFF') radix:16
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   434
     Integer readFrom:(ReadStream on:'1010') radix:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   435
     Integer readFrom:(ReadStream on:'foobar') radix:10
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   436
     Integer readFrom:(ReadStream on:'foobar') radix:10 onError:nil
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   437
     Integer readFrom:'gg' radix:10 onError:0
20130
f5f12388c4fb #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 19874
diff changeset
   438
     Integer readFrom:'' radix:10 onError:'wrong'
f5f12388c4fb #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 19874
diff changeset
   439
f5f12388c4fb #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 19874
diff changeset
   440
     |s|
f5f12388c4fb #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 19874
diff changeset
   441
     s := String new:1000 withAll:$1.
11654
9dd403ddfb91 tuned largeInteger reading
Claus Gittinger <cg@exept.de>
parents: 11587
diff changeset
   442
     Time millisecondsToRun:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   443
        1000 timesRepeat:[
20130
f5f12388c4fb #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 19874
diff changeset
   444
            s asInteger
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   445
        ]
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
   446
     ]
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   447
    "
3374
6897f584accb faster conversion from string (due to slow #pastEnd)
Claus Gittinger <cg@exept.de>
parents: 3298
diff changeset
   448
6897f584accb faster conversion from string (due to slow #pastEnd)
Claus Gittinger <cg@exept.de>
parents: 3298
diff changeset
   449
    "Modified: / 14.4.1998 / 19:16:46 / cg"
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   450
!
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   451
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   452
readFromRomanString:aStringOrStream
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   453
    "convert a string or stream containing a roman representation into an integer.
11125
89eb8912ef38 comment
Claus Gittinger <cg@exept.de>
parents: 11095
diff changeset
   454
     Raises a RomanNumberFormatError, if the inputs format is completely wrong.
21429
f926511bf350 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21386
diff changeset
   455
     Raises BadRomanNumberFormatError if it's wrong, but could be parsed.
6682
9a97f4deb836 more on roman numbers
Claus Gittinger <cg@exept.de>
parents: 6673
diff changeset
   456
     Notifies via NaiveRomanNumberFormatNotification, if its a bit wrong (naive format).
9a97f4deb836 more on roman numbers
Claus Gittinger <cg@exept.de>
parents: 6673
diff changeset
   457
     Will read both real and naive roman numbers (see printRomanOn: vs. printRomanOn:naive:),
20378
d0b2afa829d4 #OTHER by mawalch
mawalch
parents: 20332
diff changeset
   458
     however, a notification is raised for naive numbers (catch it if you are interested in it)."
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   459
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   460
    |romanValues s c val digitVal prevDigitVal countSame delta
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   461
     stopOnSeparator finish|
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   462
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   463
    romanValues := Dictionary
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   464
                    withKeys:'MDCLXVI' "/ #($M $D $C $L $X $V $I)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   465
                    andValues:#(1000 500 100 50 10 5 1).
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   466
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   467
    (stopOnSeparator := aStringOrStream isStream) ifFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   468
        s := aStringOrStream readStream.
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   469
    ].
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   470
    s atEnd ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   471
        ^ RomanNumberFormatError raiseErrorString:'empty string'
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   472
    ].
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   473
    val := 0.
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   474
    prevDigitVal := 99999.
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   475
    countSame := 1.
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   476
    finish := false.
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   477
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   478
    [s atEnd or:[finish]] whileFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   479
        c := s next asUppercase.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   480
        c isSeparator ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   481
            stopOnSeparator ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   482
                ^ RomanNumberFormatError raiseErrorString:'garbage at the end'
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   483
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   484
            finish := true.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   485
        ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   486
            digitVal := romanValues at:c ifAbsent:nil.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   487
            digitVal isNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   488
                ^ RomanNumberFormatError raiseErrorString:'invalid character'
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   489
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   490
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   491
            digitVal = prevDigitVal ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   492
                ( #( 1 10 100 1000) includes:digitVal) ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   493
                    ^ RomanNumberFormatError raiseErrorString:'character may not be repeated'
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   494
                ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   495
                val := val + digitVal.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   496
                countSame := countSame + 1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   497
                countSame >= 4 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   498
                    digitVal ~= 1000 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   499
                        countSame > 4 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   500
                            "/ this is a bad roman number (such as MCCCCCCCCXXXXXXII);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   501
                            "/ Its not correct, but sometimes encountered on buildings.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   502
                            "/ If you do not want to be too picky,
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   503
                            "/ provide a proceeding handler in order to proceed the conversion.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   504
                            BadRomanNumberFormatError raiseRequestErrorString:'more than 4 occurrences of same character'
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   505
                        ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   506
                            "/ this is a naive roman number (such as VIIII);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   507
                            "/ Its not correct, but very often encountered (especially as page numbers).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   508
                            "/ The notification below normally goes unnoticed, unless some input validator
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   509
                            "/ wants to be very picky, and treat this as an error.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   510
                            "/ To do so, provide a handler for NaiveRomanNumberFormatNotification.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   511
                            NaiveRomanNumberFormatNotification raiseRequestErrorString:'more than 3 occurrences of same character'.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   512
                        ]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   513
                    ]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   514
                ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   515
            ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   516
                digitVal < prevDigitVal ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   517
                    val := val + digitVal.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   518
                ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   519
                    countSame == 1 ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   520
                        ^ RomanNumberFormatError raiseErrorString:'invalid character combination'
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   521
                    ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   522
                    delta := digitVal - prevDigitVal.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   523
                    ( #( 4 9 40 90 400 900) includes:delta) ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   524
                        ^ RomanNumberFormatError raiseErrorString:'invalid character combination'
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   525
                    ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   526
                    val := val - prevDigitVal.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   527
                    val := val + delta.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   528
                    digitVal := prevDigitVal - 0.1.  "/ trick: prevent prevDigit from arriving again.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   529
                ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   530
                countSame := 1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   531
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   532
            prevDigitVal := digitVal.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   533
        ].
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   534
    ].
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   535
"/    val > 5000 ifTrue:[
20622
952f7804f48c #DOCUMENTATION by mawalch
mawalch
parents: 20378
diff changeset
   536
"/        ^ RomanNumberFormatError raiseErrorString:'number out of range (1..5000)'
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   537
"/    ].
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   538
    ^ val.
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   539
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   540
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   541
     Integer readFromRomanString:'I'
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   542
     Integer readFromRomanString:'II'
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   543
     Integer readFromRomanString:'III'
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   544
     Integer readFromRomanString:'IV'
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   545
     Integer readFromRomanString:'clix'
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   546
     Integer readFromRomanString:'MIX'
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   547
     Integer readFromRomanString:'MCMXCIX'
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   548
6682
9a97f4deb836 more on roman numbers
Claus Gittinger <cg@exept.de>
parents: 6673
diff changeset
   549
   Naive cases (which are accepted):
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   550
     Integer readFromRomanString:'IIII'
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   551
     Integer readFromRomanString:'VIIII'
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   552
     Integer readFromRomanString:'CLXXXXVIIII'
6682
9a97f4deb836 more on roman numbers
Claus Gittinger <cg@exept.de>
parents: 6673
diff changeset
   553
9a97f4deb836 more on roman numbers
Claus Gittinger <cg@exept.de>
parents: 6673
diff changeset
   554
    Error case (not proceedable):
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   555
     Integer readFromRomanString:'LC'
6682
9a97f4deb836 more on roman numbers
Claus Gittinger <cg@exept.de>
parents: 6673
diff changeset
   556
9a97f4deb836 more on roman numbers
Claus Gittinger <cg@exept.de>
parents: 6673
diff changeset
   557
    Error case (proceedable):
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   558
     Integer readFromRomanString:'MCCCCCCCCXXXXXXIIIIII'
6682
9a97f4deb836 more on roman numbers
Claus Gittinger <cg@exept.de>
parents: 6673
diff changeset
   559
9a97f4deb836 more on roman numbers
Claus Gittinger <cg@exept.de>
parents: 6673
diff changeset
   560
     BadRomanNumberFormatError ignoreIn:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   561
         Integer readFromRomanString:'MCCCCCCCCXXXXXXIIIIII'
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   562
     ]
6682
9a97f4deb836 more on roman numbers
Claus Gittinger <cg@exept.de>
parents: 6673
diff changeset
   563
    "
9a97f4deb836 more on roman numbers
Claus Gittinger <cg@exept.de>
parents: 6673
diff changeset
   564
9a97f4deb836 more on roman numbers
Claus Gittinger <cg@exept.de>
parents: 6673
diff changeset
   565
9a97f4deb836 more on roman numbers
Claus Gittinger <cg@exept.de>
parents: 6673
diff changeset
   566
    "naive cases:
9a97f4deb836 more on roman numbers
Claus Gittinger <cg@exept.de>
parents: 6673
diff changeset
   567
     #(
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   568
        'MCMXCIX'           1999
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   569
        'MCMXCVIIII'        1999
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   570
        'MCMLXXXXIX'        1999
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   571
        'MDCCCCXCIX'        1999
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   572
        'MDCCCCXCVIIII'     1999
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   573
        'MDCCCCLXXXXIX'     1999
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   574
        'MDCCCCLXXXXVIIII'  1999
6682
9a97f4deb836 more on roman numbers
Claus Gittinger <cg@exept.de>
parents: 6673
diff changeset
   575
     ) pairWiseDo:[:goodString :expectedValue |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   576
        (Integer readFromRomanString:goodString onError:nil) ~= expectedValue ifTrue:[self halt].
6682
9a97f4deb836 more on roman numbers
Claus Gittinger <cg@exept.de>
parents: 6673
diff changeset
   577
     ]
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   578
    "
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   579
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   580
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   581
    "error cases:
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   582
      #(
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   583
        'XIIX'
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   584
        'VV'
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   585
        'VVV'
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   586
        'XXL'
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   587
        'XLX'
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   588
        'LC'
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   589
        'LL'
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   590
        'DD'
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   591
     ) do:[:badString |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   592
        (Integer readFromRomanString:badString onError:nil) notNil ifTrue:[self halt].
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   593
     ]
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   594
    "
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   595
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   596
    "good cases:
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   597
     #( 'I'     1
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   598
        'II'    2
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   599
        'III'   3
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   600
        'IV'    4
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   601
        'V'     5
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   602
        'VI'    6
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   603
        'VII'   7
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   604
        'VIII'  8
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   605
        'IX'    9
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   606
        'X'     10
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   607
        'XI'    11
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   608
        'XII'   12
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   609
        'XIII'  13
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   610
        'XIV'   14
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   611
        'XV'    15
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   612
        'XVI'   16
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   613
        'XVII'  17
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   614
        'XVIII' 18
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   615
        'XIX'   19
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   616
        'XX'    20
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   617
        'XXX'   30
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   618
        'L'     50
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   619
        'XL'    40
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   620
        'LX'    60
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   621
        'LXX'   70
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   622
        'LXXX'  80
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   623
        'CXL'   140
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   624
        'CL'    150
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   625
        'CLX'   160
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   626
        'MMM'                   3000
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   627
        'MMMM'                  4000
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   628
        'MMMMCMXCIX'            4999
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   629
        'MMMMMMMMMCMXCIX'       9999
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   630
     ) pairWiseDo:[:goodString :expectedValue |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   631
        (Integer readFromRomanString:goodString onError:nil) ~= expectedValue ifTrue:[self halt].
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   632
     ]
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   633
    "
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   634
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   635
    "
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   636
      1 to:9999 do:[:n |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   637
        |romanString|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   638
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   639
        romanString := String streamContents:[:stream | n printRomanOn:stream].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   640
        (Integer readFromRomanString:romanString onError:nil) ~= n ifTrue:[self halt].
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   641
     ]
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   642
    "
21429
f926511bf350 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21386
diff changeset
   643
f926511bf350 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21386
diff changeset
   644
    "Modified (comment): / 13-02-2017 / 20:23:02 / cg"
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   645
!
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   646
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   647
readFromRomanString:aStringOrStream onError:exceptionalValue
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   648
    "convert a string or stream containing a roman representation into an integer.
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   649
     Raises an exception, if the inputs format is wrong.
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   650
     Does allow reading of naive (more than 3 in a row) and
6682
9a97f4deb836 more on roman numbers
Claus Gittinger <cg@exept.de>
parents: 6673
diff changeset
   651
     bad (not using L and D) roman numbers.
9a97f4deb836 more on roman numbers
Claus Gittinger <cg@exept.de>
parents: 6673
diff changeset
   652
     (Such numbers can be seen on some medevial buildings. "
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   653
21386
6cdddfc6f2e0 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20687
diff changeset
   654
    ^ RomanNumberFormatError
6cdddfc6f2e0 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20687
diff changeset
   655
        handle:[:ex | exceptionalValue value ]
6cdddfc6f2e0 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20687
diff changeset
   656
        do:[ self readFromRomanString:aStringOrStream ].
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   657
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   658
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   659
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   660
     Integer readFromRomanString:'I'    onError:nil
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   661
     Integer readFromRomanString:'II'   onError:nil
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   662
     Integer readFromRomanString:'III'  onError:nil
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   663
     Integer readFromRomanString:'IV'   onError:nil
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   664
     Integer readFromRomanString:'clix' onError:nil
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   665
     Integer readFromRomanString:'MCMXCIX' onError:nil
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   666
6682
9a97f4deb836 more on roman numbers
Claus Gittinger <cg@exept.de>
parents: 6673
diff changeset
   667
   Naive cases (which are accepted):
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   668
     Integer readFromRomanString:'IIII' onError:nil
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   669
     Integer readFromRomanString:'VIIII' onError:nil
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   670
     Integer readFromRomanString:'CLXXXXVIIII' onError:nil
6682
9a97f4deb836 more on roman numbers
Claus Gittinger <cg@exept.de>
parents: 6673
diff changeset
   671
9a97f4deb836 more on roman numbers
Claus Gittinger <cg@exept.de>
parents: 6673
diff changeset
   672
   Error cases:
21386
6cdddfc6f2e0 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20687
diff changeset
   673
     Integer readFromRomanString:'LC'   onError:nil
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   674
    "
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   675
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   676
    "error cases:
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   677
      #(
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   678
        'XIIX'
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   679
        'VV'
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   680
        'VVV'
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   681
        'XXL'
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   682
        'XLX'
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   683
        'LC'
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   684
        'LL'
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   685
        'DD'
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   686
     ) do:[:badString |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   687
        (Integer readFromRomanString:badString onError:nil) notNil ifTrue:[self halt].
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   688
     ]
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   689
    "
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   690
6682
9a97f4deb836 more on roman numbers
Claus Gittinger <cg@exept.de>
parents: 6673
diff changeset
   691
    "naive (but handled) cases:
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   692
      #(
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   693
        'IIII'   4
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   694
        'VIIII'  9
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   695
        'XIIII'  14
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   696
        'XVIIII' 19
6682
9a97f4deb836 more on roman numbers
Claus Gittinger <cg@exept.de>
parents: 6673
diff changeset
   697
     ) pairWiseDo:[:goodString :expectedValue |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   698
        (Integer readFromRomanString:goodString onError:nil) ~= expectedValue ifTrue:[self halt].
6682
9a97f4deb836 more on roman numbers
Claus Gittinger <cg@exept.de>
parents: 6673
diff changeset
   699
     ]
9a97f4deb836 more on roman numbers
Claus Gittinger <cg@exept.de>
parents: 6673
diff changeset
   700
    "
9a97f4deb836 more on roman numbers
Claus Gittinger <cg@exept.de>
parents: 6673
diff changeset
   701
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   702
    "good cases:
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   703
     #( 'I'     1
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   704
        'II'    2
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   705
        'III'   3
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   706
        'IV'    4
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   707
        'V'     5
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   708
        'VI'    6
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   709
        'VII'   7
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   710
        'VIII'  8
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   711
        'IX'    9
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   712
        'X'     10
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   713
        'XI'    11
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   714
        'XII'   12
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   715
        'XIII'  13
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   716
        'XIV'   14
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   717
        'XV'    15
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   718
        'XVI'   16
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   719
        'XVII'  17
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   720
        'XVIII' 18
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   721
        'XIX'   19
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   722
        'XX'    20
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   723
        'XXX'   30
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   724
        'L'     50
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   725
        'XL'    40
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   726
        'LX'    60
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   727
        'LXX'   70
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   728
        'LXXX'  80
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   729
        'CXL'   140
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   730
        'CL'    150
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   731
        'CLX'   160
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   732
        'MMM'                   3000
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   733
        'MMMM'                  4000
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   734
        'MMMMCMXCIX'            4999
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   735
        'MMMMMMMMMCMXCIX'       9999
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   736
     ) pairWiseDo:[:goodString :expectedValue |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   737
        (Integer readFromRomanString:goodString onError:nil) ~= expectedValue ifTrue:[self halt].
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   738
     ]
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   739
    "
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   740
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   741
    "
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   742
      1 to:9999 do:[:n |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   743
        |romanString|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   744
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   745
        romanString := String streamContents:[:stream | n printRomanOn:stream].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   746
        (Integer readFromRomanString:romanString onError:nil) ~= n ifTrue:[self halt].
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   747
     ]
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   748
    "
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   749
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   750
    "reading naive numbers:
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   751
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
   752
      1 to:9999 do:[:n |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   753
        |romanString|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   754
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   755
        romanString := String streamContents:[:stream | n printRomanOn:stream naive:true].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   756
        (Integer readFromRomanString:romanString onError:nil) ~= n ifTrue:[self halt].
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   757
     ]
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
   758
    "
21386
6cdddfc6f2e0 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20687
diff changeset
   759
6cdddfc6f2e0 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20687
diff changeset
   760
    "Modified (comment): / 08-02-2017 / 19:07:00 / stefan"
8897
da8d205a93aa Mark obsolete method as obsolete
Stefan Vogel <sv@exept.de>
parents: 8892
diff changeset
   761
!
da8d205a93aa Mark obsolete method as obsolete
Stefan Vogel <sv@exept.de>
parents: 8892
diff changeset
   762
da8d205a93aa Mark obsolete method as obsolete
Stefan Vogel <sv@exept.de>
parents: 8892
diff changeset
   763
readFromString:aString radix:base onError:exceptionBlock
20329
8d0544411027 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20269
diff changeset
   764
    "return the next UNSIGNED Integer from the (character-)aString in radix; 
8d0544411027 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20269
diff changeset
   765
     (assumes that the initial XXr has already been read).
8d0544411027 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20269
diff changeset
   766
     No whitespace-skipping is done.
8d0544411027 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20269
diff changeset
   767
     Expects that NO garbage is at the end of the string.
8d0544411027 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20269
diff changeset
   768
     Returns the value from exceptionBlock, if no valid integer is in the string."
8d0544411027 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20269
diff changeset
   769
8897
da8d205a93aa Mark obsolete method as obsolete
Stefan Vogel <sv@exept.de>
parents: 8892
diff changeset
   770
    |str val|
da8d205a93aa Mark obsolete method as obsolete
Stefan Vogel <sv@exept.de>
parents: 8892
diff changeset
   771
da8d205a93aa Mark obsolete method as obsolete
Stefan Vogel <sv@exept.de>
parents: 8892
diff changeset
   772
    str := ReadStream on:aString.
da8d205a93aa Mark obsolete method as obsolete
Stefan Vogel <sv@exept.de>
parents: 8892
diff changeset
   773
    val := self readFrom:str radix:base onError:[^ exceptionBlock value].
da8d205a93aa Mark obsolete method as obsolete
Stefan Vogel <sv@exept.de>
parents: 8892
diff changeset
   774
    str atEnd ifFalse:[ ^ exceptionBlock value].
da8d205a93aa Mark obsolete method as obsolete
Stefan Vogel <sv@exept.de>
parents: 8892
diff changeset
   775
    ^ val
20329
8d0544411027 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20269
diff changeset
   776
8d0544411027 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20269
diff changeset
   777
    "
8d0544411027 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20269
diff changeset
   778
     Integer readFromString:'1234' radix:10 onError:[nil] 
8d0544411027 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20269
diff changeset
   779
     Integer readFromString:'-1234' radix:10 onError:[nil]  - I only read unsigned numbers
8d0544411027 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20269
diff changeset
   780
     Integer readFromString:' 1234' radix:10 onError:[nil]  - I do not skip whitespace
8d0544411027 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20269
diff changeset
   781
     Integer readFromString:'1234 ' radix:10 onError:[nil]  - I do not accept anything after the number
8d0544411027 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20269
diff changeset
   782
8d0544411027 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20269
diff changeset
   783
    "
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   784
! !
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   785
9141
dc20ee8ba916 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9136
diff changeset
   786
!Integer class methodsFor:'Compatibility-Squeak'!
dc20ee8ba916 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9136
diff changeset
   787
dc20ee8ba916 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9136
diff changeset
   788
readFrom:aStringOrStream base:aBase
dc20ee8ba916 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9136
diff changeset
   789
    "for squeak compatibility"
dc20ee8ba916 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9136
diff changeset
   790
dc20ee8ba916 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9136
diff changeset
   791
    ^ self readFrom:aStringOrStream radix:aBase
dc20ee8ba916 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9136
diff changeset
   792
! !
dc20ee8ba916 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9136
diff changeset
   793
4996
c3716cebe47b added a bcdConversionErrorSignal
Claus Gittinger <cg@exept.de>
parents: 4973
diff changeset
   794
!Integer class methodsFor:'Signal constants'!
c3716cebe47b added a bcdConversionErrorSignal
Claus Gittinger <cg@exept.de>
parents: 4973
diff changeset
   795
c3716cebe47b added a bcdConversionErrorSignal
Claus Gittinger <cg@exept.de>
parents: 4973
diff changeset
   796
bcdConversionErrorSignal
c3716cebe47b added a bcdConversionErrorSignal
Claus Gittinger <cg@exept.de>
parents: 4973
diff changeset
   797
    "return the signal which is raised when bcd conversion fails
c3716cebe47b added a bcdConversionErrorSignal
Claus Gittinger <cg@exept.de>
parents: 4973
diff changeset
   798
     (i.e. when trying to decode an invalid BCD number)"
c3716cebe47b added a bcdConversionErrorSignal
Claus Gittinger <cg@exept.de>
parents: 4973
diff changeset
   799
c3716cebe47b added a bcdConversionErrorSignal
Claus Gittinger <cg@exept.de>
parents: 4973
diff changeset
   800
    ^ BCDConversionErrorSignal
c3716cebe47b added a bcdConversionErrorSignal
Claus Gittinger <cg@exept.de>
parents: 4973
diff changeset
   801
c3716cebe47b added a bcdConversionErrorSignal
Claus Gittinger <cg@exept.de>
parents: 4973
diff changeset
   802
    "Modified: / 15.11.1999 / 20:35:20 / cg"
c3716cebe47b added a bcdConversionErrorSignal
Claus Gittinger <cg@exept.de>
parents: 4973
diff changeset
   803
! !
c3716cebe47b added a bcdConversionErrorSignal
Claus Gittinger <cg@exept.de>
parents: 4973
diff changeset
   804
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
   805
!Integer class methodsFor:'class initialization'!
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
   806
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
   807
initialize
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
   808
    BCDConversionErrorSignal isNil ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   809
        BCDConversionErrorSignal := ConversionError newSignal.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   810
        BCDConversionErrorSignal nameClass:self message:#bcdConversionErrorSignal.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   811
        BCDConversionErrorSignal notifierString:'bcd conversion error'.
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
   812
    ].
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
   813
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
   814
    "Modified: / 15.11.1999 / 20:36:04 / cg"
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
   815
! !
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
   816
21822
7f00cd69b534 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21774
diff changeset
   817
!Integer class methodsFor:'coercing & converting'!
7f00cd69b534 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21774
diff changeset
   818
7f00cd69b534 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21774
diff changeset
   819
coerce:aNumber
7f00cd69b534 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21774
diff changeset
   820
    "convert the argument aNumber into an instance of the receiver's class and return it."
7f00cd69b534 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21774
diff changeset
   821
7f00cd69b534 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21774
diff changeset
   822
    ^ aNumber asInteger
7f00cd69b534 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21774
diff changeset
   823
! !
7f00cd69b534 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21774
diff changeset
   824
1842
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
   825
!Integer class methodsFor:'constants'!
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   826
7727
bda9f88c6847 Define #epsilon
Stefan Vogel <sv@exept.de>
parents: 7685
diff changeset
   827
epsilon
21903
af41d081505d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21822
diff changeset
   828
    "return the maximum relative spacing of instances of mySelf
af41d081505d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21822
diff changeset
   829
     (i.e. the value-delta of the least significant bit)"
7727
bda9f88c6847 Define #epsilon
Stefan Vogel <sv@exept.de>
parents: 7685
diff changeset
   830
bda9f88c6847 Define #epsilon
Stefan Vogel <sv@exept.de>
parents: 7685
diff changeset
   831
    "don't know, what to really return here.
8635
38674ba49a14 comment
Claus Gittinger <cg@exept.de>
parents: 8573
diff changeset
   832
     Returning 1 gives stupid values when doing some taylor series approximations
38674ba49a14 comment
Claus Gittinger <cg@exept.de>
parents: 8573
diff changeset
   833
     (although it is correct)"
7727
bda9f88c6847 Define #epsilon
Stefan Vogel <sv@exept.de>
parents: 7685
diff changeset
   834
bda9f88c6847 Define #epsilon
Stefan Vogel <sv@exept.de>
parents: 7685
diff changeset
   835
    ^ Float epsilon.
8635
38674ba49a14 comment
Claus Gittinger <cg@exept.de>
parents: 8573
diff changeset
   836
38674ba49a14 comment
Claus Gittinger <cg@exept.de>
parents: 8573
diff changeset
   837
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   838
     2 sqrt_withAccuracy:(Integer epsilon)
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   839
     2 sqrt_withAccuracy:1
8635
38674ba49a14 comment
Claus Gittinger <cg@exept.de>
parents: 8573
diff changeset
   840
    "
21903
af41d081505d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21822
diff changeset
   841
af41d081505d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21822
diff changeset
   842
    "Modified (comment): / 22-06-2017 / 13:44:17 / cg"
7727
bda9f88c6847 Define #epsilon
Stefan Vogel <sv@exept.de>
parents: 7685
diff changeset
   843
!
bda9f88c6847 Define #epsilon
Stefan Vogel <sv@exept.de>
parents: 7685
diff changeset
   844
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   845
unity
1555
316491c1b216 commentary
Claus Gittinger <cg@exept.de>
parents: 1431
diff changeset
   846
    "return the neutral element for multiplication (1)"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   847
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   848
    ^ 1
1555
316491c1b216 commentary
Claus Gittinger <cg@exept.de>
parents: 1431
diff changeset
   849
316491c1b216 commentary
Claus Gittinger <cg@exept.de>
parents: 1431
diff changeset
   850
    "Modified: 18.7.1996 / 12:26:43 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   851
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   852
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   853
zero
1555
316491c1b216 commentary
Claus Gittinger <cg@exept.de>
parents: 1431
diff changeset
   854
    "return the neutral element for addition (0)"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   855
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   856
    ^ 0
1555
316491c1b216 commentary
Claus Gittinger <cg@exept.de>
parents: 1431
diff changeset
   857
316491c1b216 commentary
Claus Gittinger <cg@exept.de>
parents: 1431
diff changeset
   858
    "Modified: 18.7.1996 / 12:26:38 / cg"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
   859
! !
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
   860
23944
1f8b8f9e755f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23930
diff changeset
   861
9125
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   862
!Integer class methodsFor:'prime numbers'!
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   863
11520
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   864
flushPrimeCache
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
   865
    "cleanup after using a primeCache.
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
   866
     See comment in initializePrimeCacheUpTo:limit"
11520
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   867
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   868
    PrimeCache := nil.
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   869
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   870
    "
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   871
     Integer initializePrimeCacheUpTo:1000000
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   872
     Integer flushPrimeCache.
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   873
    "
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   874
!
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   875
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   876
initializePrimeCacheUpTo:limit
11582
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
   877
    "if many operations are to be done using primes, we can keep them around...
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
   878
     You will need n/8/2 bytes to keep fast info about primes up to n
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
   879
     (i.e. 100Mb is good for primes up to 1.6*10^9)"
11520
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   880
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   881
    |bits|
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   882
11563
a91c8d348760 could have returned an uncompressed largeint after bitShift
Claus Gittinger <cg@exept.de>
parents: 11521
diff changeset
   883
    PrimeCache := nil.
11582
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
   884
    bits := BooleanArray new:limit//2.
11520
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   885
    self primesUpTo:limit do:[:p |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   886
        bits at:p//2 put:true
11520
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   887
    ].
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   888
    PrimeCache := bits.
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   889
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   890
    "
11521
1f5b947c7fc8 primeCache
Claus Gittinger <cg@exept.de>
parents: 11520
diff changeset
   891
     Integer initializePrimeCacheUpTo:1000000.
11654
9dd403ddfb91 tuned largeInteger reading
Claus Gittinger <cg@exept.de>
parents: 11587
diff changeset
   892
     Integer initializePrimeCacheUpTo:10000000.
9dd403ddfb91 tuned largeInteger reading
Claus Gittinger <cg@exept.de>
parents: 11587
diff changeset
   893
     Integer initializePrimeCacheUpTo:100000000.
11563
a91c8d348760 could have returned an uncompressed largeint after bitShift
Claus Gittinger <cg@exept.de>
parents: 11521
diff changeset
   894
     Integer initializePrimeCacheUpTo:1000000000.
11521
1f5b947c7fc8 primeCache
Claus Gittinger <cg@exept.de>
parents: 11520
diff changeset
   895
     Integer flushPrimeCache.
1f5b947c7fc8 primeCache
Claus Gittinger <cg@exept.de>
parents: 11520
diff changeset
   896
    "
1f5b947c7fc8 primeCache
Claus Gittinger <cg@exept.de>
parents: 11520
diff changeset
   897
1f5b947c7fc8 primeCache
Claus Gittinger <cg@exept.de>
parents: 11520
diff changeset
   898
    "
1f5b947c7fc8 primeCache
Claus Gittinger <cg@exept.de>
parents: 11520
diff changeset
   899
     Integer flushPrimeCache.
1f5b947c7fc8 primeCache
Claus Gittinger <cg@exept.de>
parents: 11520
diff changeset
   900
     Transcript showCR:(
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   901
        Time millisecondsToRun:[ 1 to:100000 do:[:n | n isPrime] ]
11521
1f5b947c7fc8 primeCache
Claus Gittinger <cg@exept.de>
parents: 11520
diff changeset
   902
     ).
1f5b947c7fc8 primeCache
Claus Gittinger <cg@exept.de>
parents: 11520
diff changeset
   903
     Integer initializePrimeCacheUpTo:100000.
1f5b947c7fc8 primeCache
Claus Gittinger <cg@exept.de>
parents: 11520
diff changeset
   904
     Transcript showCR:(
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   905
        Time millisecondsToRun:[ 1 to:100000 do:[:n | n isPrime] ]
11521
1f5b947c7fc8 primeCache
Claus Gittinger <cg@exept.de>
parents: 11520
diff changeset
   906
     ).
11520
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   907
     Integer flushPrimeCache.
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   908
    "
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   909
!
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   910
9125
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   911
largePrimesUpTo: max do: aBlock
11495
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
   912
    "Evaluate aBlock with all primes up and including maxValue.
9125
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   913
     The Algorithm is adapted from http://www.rsok.com/~jrm/printprimes.html
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   914
     It encodes prime numbers much more compactly than #primesUpTo:
9125
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   915
     38.5 integer per byte (2310 numbers per 60 byte) allow for some fun large primes.
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   916
     (all primes up to SmallInteger maxVal can be computed within ~27MB of memory;
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   917
     the regular #primesUpTo: would require 4 *GIGA*bytes).
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   918
     Note: The algorithm could be re-written to produce the first primes (which require
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   919
     the longest time to sieve) faster but only at the cost of clarity."
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   920
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   921
    | limit flags maskBitIndex bitIndex maskBit byteIndex index primesUpTo2310 indexLimit |
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   922
11495
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
   923
    limit := max asInteger.
9125
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   924
    indexLimit := max sqrt truncated + 1.
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   925
    "Create the array of flags."
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   926
    flags := ByteArray new: (limit + 2309) // 2310 * 60 + 60.
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   927
    flags atAllPut: 16rFF. "set all to true"
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   928
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   929
    "Compute the primes up to 2310"
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   930
    primesUpTo2310 := self primesUpTo: 2310.
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   931
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   932
    "Create a mapping from 2310 integers to 480 bits (60 byte)"
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   933
    maskBitIndex := Array new: 2310.
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   934
    bitIndex := -1. "for pre-increment"
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   935
    maskBitIndex at: 1 put: (bitIndex := bitIndex + 1).
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   936
    maskBitIndex at: 2 put: (bitIndex := bitIndex + 1).
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   937
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   938
    1 to: 5 do:[:i| aBlock value: (primesUpTo2310 at: i)].
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   939
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   940
    index := 6.
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   941
    2 to: 2309 do:[:n|
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   942
        [(primesUpTo2310 at: index) < n]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   943
            whileTrue:[index := index + 1].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   944
        n = (primesUpTo2310 at: index) ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   945
            maskBitIndex at: n+1 put: (bitIndex := bitIndex + 1).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   946
        ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   947
            "if modulo any of the prime factors of 2310, then could not be prime"
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   948
            (n \\ 2 = 0 or:[n \\ 3 = 0 or:[n \\ 5 = 0 or:[n \\ 7 = 0 or:[n \\ 11 = 0]]]])
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   949
                    ifTrue:[maskBitIndex at: n+1 put: 0]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   950
                    ifFalse:[maskBitIndex at: n+1 put: (bitIndex := bitIndex + 1)].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   951
        ].
9125
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   952
    ].
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   953
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   954
    "Now the real work begins...
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   955
    Start with 13 since multiples of 2,3,5,7,11 are handled by the storage method;
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   956
    increment by 2 for odd numbers only."
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   957
    13 to: limit by: 2 do:[:n|
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   958
        (maskBit := maskBitIndex at: (n \\ 2310 + 1)) = 0 ifFalse:["not a multiple of 2,3,5,7,11"
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   959
            byteIndex := n // 2310 * 60 + (maskBit-1 bitShift: -3) + 1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   960
            bitIndex := 1 bitShift: (maskBit bitAnd: 7).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   961
            ((flags at: byteIndex) bitAnd: bitIndex) = 0 ifFalse:["not marked -- n is prime"
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   962
                aBlock value: n.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   963
                "Start with n*n since any integer < n has already been sieved
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   964
                (e.g., any multiple of n with a number k < n has been cleared
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   965
                when k was sieved); add 2 * i to avoid even numbers and
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   966
                mark all multiples of this prime. Note: n < indexLimit below
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   967
                limits running into LargeInts -- nothing more."
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   968
                n < indexLimit ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   969
                    index := n * n.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   970
                    (index bitAnd: 1) = 0 ifTrue:[index := index + n].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   971
                    [index <= limit] whileTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   972
                        (maskBit := maskBitIndex at: (index \\ 2310 + 1)) = 0 ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   973
                            byteIndex := (index // 2310 * 60) + (maskBit-1 bitShift: -3) + 1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   974
                            maskBit := 255 - (1 bitShift: (maskBit bitAnd: 7)).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   975
                            flags at: byteIndex put: ((flags at: byteIndex) bitAnd: maskBit).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   976
                        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   977
                        index := index + (2 * n)].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   978
                ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   979
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   980
        ].
9125
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   981
    ].
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   982
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   983
    "
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   984
     Integer largePrimesUpTo:1000000 do:[:i | i > 900000 ifTrue:[self halt] ]
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   985
     (Integer primesUpTo:1000000) inspect
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   986
    "
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   987
!
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   988
11582
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
   989
primeCacheSize
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
   990
    "see comment in initializePrimeCacheUpTo:limit"
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
   991
11582
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
   992
    ^ PrimeCache size * 2
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
   993
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
   994
    "
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
   995
     Integer initializePrimeCacheUpTo:1000.
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
   996
     Integer initializePrimeCacheUpTo:1000000.
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
   997
     Integer initializePrimeCacheUpTo:1000000000.
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
   998
     Integer flushPrimeCache.
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
   999
    "
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
  1000
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
  1001
    "
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
  1002
     Integer flushPrimeCache.
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
  1003
     Transcript showCR:(
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1004
        Time millisecondsToRun:[ 1 to:100000 do:[:n | n isPrime] ]
11582
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
  1005
     ).
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
  1006
     Integer initializePrimeCacheUpTo:100000.
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
  1007
     Transcript showCR:(
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1008
        Time millisecondsToRun:[ 1 to:100000 do:[:n | n isPrime] ]
11582
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
  1009
     ).
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
  1010
     Integer flushPrimeCache.
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
  1011
    "
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
  1012
!
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
  1013
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1014
primesUpTo5000
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1015
    "return a table of primes up to 5000.
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1016
     Primes are heavily used to compute good container sizes in Set and Dictionary,
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1017
     and in some cryprographic algorithms."
11520
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
  1018
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
  1019
    ^ #(
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1020
            2 3   5   7  11  13  17  19  23  29  31  37  41  43  47  53  59  61  67  71
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1021
             73  79  83  89  97 101 103 107 109 113 127 131 137 139 149 151 157 163 167
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1022
            173 179 181 191 193 197 199 211 223 227 229 233 239 241 251 257 263 269 271
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1023
            277 281 283 293 307 311 313 317 331 337 347 349 353 359 367 373 379 383 389
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1024
            397 401 409 419 421 431 433 439 443 449 457 461 463 467 479 487 491 499 503
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1025
            509 521 523 541 547 557 563 569 571 577 587 593 599 601 607 613 617 619 631
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1026
            641 643 647 653 659 661 673 677 683 691 701 709 719 727 733 739 743 751 757
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1027
            761 769 773 787 797 809 811 821 823 827 829 839 853 857 859 863 877 881 883
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1028
            887 907 911 919 929 937 941 947 953 967 971 977 983 991 997
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1029
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1030
            1009 1013 1019 1021 1031 1033 1039 1049 1051 1061 1063 1069 1087 1091 1093
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1031
            1097 1103 1109 1117 1123 1129 1151 1153 1163 1171 1181 1187 1193 1201 1213
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1032
            1217 1223 1229 1231 1237 1249 1259 1277 1279 1283 1289 1291 1297 1301 1303
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1033
            1307 1319 1321 1327 1361 1367 1373 1381 1399 1409 1423 1427 1429 1433 1439
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1034
            1447 1451 1453 1459 1471 1481 1483 1487 1489 1493 1499 1511 1523 1531 1543
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1035
            1549 1553 1559 1567 1571 1579 1583 1597 1601 1607 1609 1613 1619 1621 1627
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1036
            1637 1657 1663 1667 1669 1693 1697 1699 1709 1721 1723 1733 1741 1747 1753
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1037
            1759 1777 1783 1787 1789 1801 1811 1823 1831 1847 1861 1867 1871 1873 1877
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1038
            1879 1889 1901 1907 1913 1931 1933 1949 1951 1973 1979 1987 1993 1997 1999
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1039
            
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1040
            2003 2011 2017 2027 2029 2039 2053 2063 2069 2081 2083 2087 2089 2099 2111 
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1041
            2113 2129 2131 2137 2141 2143 2153 2161 2179 2203 2207 2213 2221 2237 2239 
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1042
            2243 2251 2267 2269 2273 2281 2287 2293 2297 2309 2311 2333 2339 2341 2347 
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1043
            2351 2357 2371 2377 2381 2383 2389 2393 2399 2411 2417 2423 2437 2441 2447 
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1044
            2459 2467 2473 2477 2503 2521 2531 2539 2543 2549 2551 2557 2579 2591 2593 
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1045
            2609 2617 2621 2633 2647 2657 2659 2663 2671 2677 2683 2687 2689 2693 2699 
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1046
            2707 2711 2713 2719 2729 2731 2741 2749 2753 2767 2777 2789 2791 2797 2801 
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1047
            2803 2819 2833 2837 2843 2851 2857 2861 2879 2887 2897 2903 2909 2917 2927 
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1048
            2939 2953 2957 2963 2969 2971 2999 
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1049
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1050
            3001 3011 3019 3023 3037 3041 3049 3061 3067 3079 3083 3089 3109 3119 3121 
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1051
            3137 3163 3167 3169 3181 3187 3191 3203 3209 3217 3221 3229 3251 3253 3257 
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1052
            3259 3271 3299 3301 3307 3313 3319 3323 3329 3331 3343 3347 3359 3361 3371 
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1053
            3373 3389 3391 3407 3413 3433 3449 3457 3461 3463 3467 3469 3491 3499 3511 
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1054
            3517 3527 3529 3533 3539 3541 3547 3557 3559 3571 3581 3583 3593 3607 3613 
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1055
            3617 3623 3631 3637 3643 3659 3671 3673 3677 3691 3697 3701 3709 3719 3727 
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1056
            3733 3739 3761 3767 3769 3779 3793 3797 3803 3821 3823 3833 3847 3851 3853 
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1057
            3863 3877 3881 3889 3907 3911 3917 3919 3923 3929 3931 3943 3947 3967 3989 
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1058
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1059
            4001 4003 4007 4013 4019 4021 4027 4049 4051 4057 4073 4079 4091 4093 4099 
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1060
            4111 4127 4129 4133 4139 4153 4157 4159 4177 4201 4211 4217 4219 4229 4231 
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1061
            4241 4243 4253 4259 4261 4271 4273 4283 4289 4297 4327 4337 4339 4349 4357 
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1062
            4363 4373 4391 4397 4409 4421 4423 4441 4447 4451 4457 4463 4481 4483 4493 
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1063
            4507 4513 4517 4519 4523 4547 4549 4561 4567 4583 4591 4597 4603 4621 4637 
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1064
            4639 4643 4649 4651 4657 4663 4673 4679 4691 4703 4721 4723 4729 4733 4751 
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1065
            4759 4783 4787 4789 4793 4799 4801 4813 4817 4831 4861 4871 4877 4889 4903 
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1066
            4909 4919 4931 4933 4937 4943 4951 4957 4967 4969 4973 4987 4993 4999
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1067
        ).
11520
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
  1068
!
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
  1069
9125
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1070
primesUpTo: max
15578
88cefb6e5d94 class: Integer
Stefan Vogel <sv@exept.de>
parents: 15567
diff changeset
  1071
    "Return a list of prime integers up to and including the given integer."
9125
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1072
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  1073
    |cls|
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  1074
20646
16ddbfd2e22a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20622
diff changeset
  1075
    "/ sigh: IntegerArray is in libbasic2...
16ddbfd2e22a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20622
diff changeset
  1076
    (IntegerArray notNil 
16ddbfd2e22a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20622
diff changeset
  1077
    and:[ max < IntegerArray maxVal]) ifTrue:[
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  1078
        cls := IntegerArray.
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  1079
    ] ifFalse:[
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  1080
        cls := Array.
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  1081
    ].
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  1082
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  1083
    ^ cls streamContents:[:s| self primesUpTo: max do:[:prime| s nextPut: prime]]
9125
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1084
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1085
    "
11495
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1086
     Integer primesUpTo: 100
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1087
     Integer primesUpTo: 13
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1088
     (Integer primesUpTo: 100) select:[:p | p between:10 and:99]
9125
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1089
    "
11495
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1090
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1091
    "
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1092
     |p N a b|
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1093
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1094
     N := 1000.
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1095
     p := 1.
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1096
     a := (1 to:1000)
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1097
         collect:[:i | p := p nextPrime. p ]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1098
         thenSelect:[:p | p <= N].
11495
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1099
     b := Integer primesUpTo:N.
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1100
     self assert:(a = b)
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1101
    "
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1102
    "
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1103
     |p N a b|
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1104
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1105
     N := 1000 nextPrime.
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1106
     p := 1.
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1107
     a := (1 to:1000)
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1108
         collect:[:i | p := p nextPrime. p ]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1109
         thenSelect:[:p | p <= N].
11495
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1110
     b := Integer primesUpTo:N.
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1111
     self assert:(a = b)
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1112
    "
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1113
    "
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1114
     |p N a b|
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1115
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1116
     N := 1000 nextPrime-1.
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1117
     p := 1.
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1118
     a := (1 to:1000)
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1119
         collect:[:i | p := p nextPrime. p ]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1120
         thenSelect:[:p | p <= N].
11495
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1121
     b := Integer primesUpTo:N.
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1122
     self assert:(a = b)
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1123
    "
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1124
    "
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1125
     |p N a b|
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1126
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1127
     N := 100000.
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1128
     p := 1.
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1129
     a := (1 to:N)
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1130
         collect:[:i | p := p nextPrime. p ]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1131
         thenSelect:[:p | p <= N].
11495
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1132
     b := Integer primesUpTo:N.
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1133
     self assert:(a = b)
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1134
    "
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1135
    "
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1136
     |p N a b|
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1137
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1138
     N := 100000 nextPrime.
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1139
     p := 1.
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1140
     a := (1 to:N)
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1141
         collect:[:i | p := p nextPrime. p ]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1142
         thenSelect:[:p | p <= N].
11495
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1143
     b := Integer primesUpTo:N.
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1144
     self assert:(a = b)
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1145
    "
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1146
    "
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1147
     |p N a b|
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1148
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1149
     N := 100000 nextPrime-1.
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1150
     p := 1.
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1151
     a := (1 to:N)
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1152
         collect:[:i | p := p nextPrime. p ]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1153
         thenSelect:[:p | p <= N].
11495
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1154
     b := Integer primesUpTo:N.
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1155
     self assert:(a = b)
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1156
    "
9125
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1157
!
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1158
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1159
primesUpTo: max do: aBlock
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  1160
    "Compute aBlock with all prime integers up to and including the given integer.
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  1161
     See comment in initializePrimeCacheUpTo:limit"
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  1162
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1163
    | limit 
19131
Claus Gittinger <cg@exept.de>
parents: 19130
diff changeset
  1164
      iLimit "{ Class: SmallInteger }"
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1165
      flags 
19131
Claus Gittinger <cg@exept.de>
parents: 19130
diff changeset
  1166
      prime "{ Class: SmallInteger }"
Claus Gittinger <cg@exept.de>
parents: 19130
diff changeset
  1167
      k "{ Class: SmallInteger }"
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1168
      wellKnownPrimes|
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1169
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1170
    wellKnownPrimes := self primesUpTo5000.  
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1171
    max <= (wellKnownPrimes last+1) ifTrue:[
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1172
        wellKnownPrimes do:[:p |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1173
            p > max ifTrue:[^ self].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1174
            aBlock value:p.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1175
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1176
        ^ self.
11521
1f5b947c7fc8 primeCache
Claus Gittinger <cg@exept.de>
parents: 11520
diff changeset
  1177
    ].
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1178
    
11582
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
  1179
    max <= self primeCacheSize ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1180
        aBlock value:2.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1181
        3 to:max by:2 do:[:p |
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1182
            (PrimeCache at:p//2) ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1183
                aBlock value:p
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1184
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1185
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1186
        ^ self.
11520
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
  1187
    ].
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
  1188
9125
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1189
    limit := max asInteger - 1.
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1190
    "Fall back into #largePrimesUpTo:do: if we'd require more than 100k of memory;
9125
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1191
    the alternative will only requre 1/154th of the amount we need here and is almost as fast."
11495
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1192
    limit > 25000 ifTrue:[^ self largePrimesUpTo: max do: aBlock].
11492
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1193
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1194
    iLimit := limit.
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1195
    
11492
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1196
    "/ sieve, on the fly
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1197
    flags := ByteArray new: iLimit.
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1198
    aBlock value: 2.
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1199
    
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1200
    2 to: iLimit by:2 do: [:i |
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1201
        (flags at: i) == 0 ifTrue: [
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1202
            prime := i + 1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1203
            k := i + prime.
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1204
            [k <= iLimit] whileTrue: [
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1205
                flags at: k put: 1.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1206
                k := k + prime
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1207
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1208
            aBlock value: prime
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1209
        ]
9125
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1210
    ].
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1211
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1212
    "
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1213
     Integer primesUpTo: 100
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1214
     Integer primesUpTo:20000 do:[:p | ]
9125
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1215
    "
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1216
! !
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1217
4653
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  1218
!Integer class methodsFor:'queries'!
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  1219
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  1220
hasSharedInstances
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  1221
    "return true if this class has shared instances, that is, instances
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  1222
     with the same value are identical.
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  1223
     Although not always shared (LargeIntegers), these should be treated
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  1224
     so, to be independent of the number of bits in a SmallInt"
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  1225
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  1226
    ^ true
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  1227
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  1228
8892
5d05a7f150a5 +isAbstract
Claus Gittinger <cg@exept.de>
parents: 8635
diff changeset
  1229
!
5d05a7f150a5 +isAbstract
Claus Gittinger <cg@exept.de>
parents: 8635
diff changeset
  1230
5d05a7f150a5 +isAbstract
Claus Gittinger <cg@exept.de>
parents: 8635
diff changeset
  1231
isAbstract
11223
7536833995bb comment
Claus Gittinger <cg@exept.de>
parents: 11125
diff changeset
  1232
    "Return if this class is an abstract class.
7536833995bb comment
Claus Gittinger <cg@exept.de>
parents: 11125
diff changeset
  1233
     True is returned for Integer here; false for subclasses.
19455
848d2ecde887 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19433
diff changeset
  1234
     Abstract subclasses must redefine this again."
11223
7536833995bb comment
Claus Gittinger <cg@exept.de>
parents: 11125
diff changeset
  1235
8892
5d05a7f150a5 +isAbstract
Claus Gittinger <cg@exept.de>
parents: 8635
diff changeset
  1236
    ^ self == Integer
4653
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  1237
! !
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  1238
23944
1f8b8f9e755f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23930
diff changeset
  1239
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7173
diff changeset
  1240
!Integer methodsFor:'Compatibility-Dolphin'!
6249
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1241
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1242
highWord
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1243
    "return the high 16 bits of a 32 bit value"
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1244
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1245
    ^ self bitShift:-16
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1246
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1247
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1248
     (16r12345678 highWord) hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1249
     (16r12345678 lowWord) hexPrintString
6249
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1250
    "
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1251
!
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1252
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1253
lowWord
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1254
    "return the low 16 bits of a 32 bit value"
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1255
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1256
    ^ self bitAnd:16rFFFF
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1257
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1258
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1259
     (16r12345678 lowWord) hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1260
     (16r12345678 highWord) hexPrintString
6249
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1261
    "
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1262
!
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1263
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1264
mask:integerMask set:aBoolean
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1265
    "Answer the result of setting/resetting the specified mask in the receiver."
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1266
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1267
    ^ aBoolean
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1268
            ifTrue:  [self bitOr:integerMask]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1269
            ifFalse: [self bitClear:integerMask]
6249
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1270
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1271
    "turn on the 1-bit:
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1272
         |v|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1273
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1274
         v := 2r0100.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1275
         v mask:1 set:true
6249
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1276
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1277
     turn off the 1-bit:
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1278
         |v|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1279
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1280
         v := 2r0101.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1281
         v mask:1 set:false
6249
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1282
    "
6875
d064224376bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6858
diff changeset
  1283
!
d064224376bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6858
diff changeset
  1284
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1285
maskClear:aMaskInteger
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1286
    "return an integer with all bits cleared which are set in aMaskInteger.
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1287
     An alias for bitClear: for compatibility."
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1288
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1289
    ^ self bitClear:aMaskInteger
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1290
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1291
    "
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1292
     3 maskClear:1
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1293
    "
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1294
!
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1295
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1296
maskSet:aMaskInteger
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1297
    "return an integer with all bits set which are set in aMaskInteger.
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1298
     An alias for bitSet: for compatibility."
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1299
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1300
    ^ self bitOr:aMaskInteger
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1301
!
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1302
6875
d064224376bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6858
diff changeset
  1303
printStringRadix:aRadix padTo:sz
11936
94784c846e12 comments
Claus Gittinger <cg@exept.de>
parents: 11896
diff changeset
  1304
    "return a printed representation of the receiver in a given radix,
15765
6edf4f55277d class: Integer
Claus Gittinger <cg@exept.de>
parents: 15578
diff changeset
  1305
     padded with zeros (at the left) up to size.
11936
94784c846e12 comments
Claus Gittinger <cg@exept.de>
parents: 11896
diff changeset
  1306
     If the printString is longer than size,
94784c846e12 comments
Claus Gittinger <cg@exept.de>
parents: 11896
diff changeset
  1307
     it is returned unchanged (i.e. not truncated).
94784c846e12 comments
Claus Gittinger <cg@exept.de>
parents: 11896
diff changeset
  1308
     See also printStringRadix:size:fill:"
94784c846e12 comments
Claus Gittinger <cg@exept.de>
parents: 11896
diff changeset
  1309
6875
d064224376bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6858
diff changeset
  1310
    ^ self printStringRadix:aRadix size:sz fill:$0
d064224376bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6858
diff changeset
  1311
d064224376bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6858
diff changeset
  1312
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
  1313
     1024 printStringRadix:16 padTo:4
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
  1314
     16rABCD printStringRadix:16 padTo:3
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
  1315
     1024 printStringRadix:2 padTo:16
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
  1316
     1024 printStringRadix:16 padTo:8
6875
d064224376bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6858
diff changeset
  1317
    "
6907
a77451f0c14c dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6875
diff changeset
  1318
!
a77451f0c14c dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6875
diff changeset
  1319
a77451f0c14c dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6875
diff changeset
  1320
| aNumber
11936
94784c846e12 comments
Claus Gittinger <cg@exept.de>
parents: 11896
diff changeset
  1321
    "return the bitwise-or of the receiver and the argument, anInteger.
14448
9de88d62d686 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 14404
diff changeset
  1322
     Same as bitOr: - added for compatibility with Dolphin Smalltalk.
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  1323
     Notice:
19093
c07a1b2d0e11 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 19089
diff changeset
  1324
        PLEASE DO NOT USE | for integers in new code; it makes the code harder
c07a1b2d0e11 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 19089
diff changeset
  1325
        to understand, as it may be not obvious, whether a boolean-or a bitWise-or is intended.
c07a1b2d0e11 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 19089
diff changeset
  1326
        For integers, use bitOr: to make the intention explicit.
19094
784b51cf4213 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19093
diff changeset
  1327
        Also, consider using or: for booleans, which is does not evaluate the right part if the left is true."
11936
94784c846e12 comments
Claus Gittinger <cg@exept.de>
parents: 11896
diff changeset
  1328
6907
a77451f0c14c dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6875
diff changeset
  1329
    ^ self bitOr:aNumber
a77451f0c14c dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6875
diff changeset
  1330
a77451f0c14c dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6875
diff changeset
  1331
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1332
     14 | 1
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1333
     9 & 8
6907
a77451f0c14c dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6875
diff changeset
  1334
    "
6249
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1335
! !
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1336
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7173
diff changeset
  1337
!Integer methodsFor:'Compatibility-Squeak'!
4867
3bb80fe9bb8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4830
diff changeset
  1338
12122
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  1339
asByteArray
15937
ff395b64b43a class: Integer
Claus Gittinger <cg@exept.de>
parents: 15911
diff changeset
  1340
    "return my hexBytes in MSB.
ff395b64b43a class: Integer
Claus Gittinger <cg@exept.de>
parents: 15911
diff changeset
  1341
     Do not use:
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1342
        This is a very stupid squeak-compatibility method,
21993
73aa16ebc889 #DOCUMENTATION by mawalch
mawalch
parents: 21938
diff changeset
  1343
        as normally, you'd expect the bytes to be ordered in the machine's native order"
12147
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1344
15567
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  1345
    ^ self digitBytesMSB
21993
73aa16ebc889 #DOCUMENTATION by mawalch
mawalch
parents: 21938
diff changeset
  1346
73aa16ebc889 #DOCUMENTATION by mawalch
mawalch
parents: 21938
diff changeset
  1347
    "Modified (comment): / 11-07-2017 / 16:13:03 / mawalch"
12122
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  1348
!
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  1349
12147
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1350
asByteArrayOfSize:size
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1351
    "return my hexBytes in MSB, optionally padded at the left with zeros"
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1352
12122
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  1353
    "(((
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1354
        | repeats number |
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1355
        repeats := 1000000.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1356
        number := 123456789123456789123456789123456789123456789123456789.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1357
         [repeats timesRepeat: (number asByteArrayOfSize: 1024) ] timeToRun.
12122
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  1358
     )))"
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  1359
15567
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  1360
    | bytes bytesSize|
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  1361
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  1362
    bytes := self digitBytesMSB.
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  1363
    bytesSize := bytes size.
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  1364
    size < bytesSize ifTrue: [
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1365
        ^ ConversionError raiseRequestWith:self errorString:'number too big for ', size asString
14796
242490a39283 class: Integer
Stefan Vogel <sv@exept.de>
parents: 14767
diff changeset
  1366
    ].
15567
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  1367
    ^ (ByteArray new:size)
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1368
            replaceFrom:size-bytesSize+1 to:size with:bytes startingAt:1.
12147
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1369
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1370
    "
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1371
     123 asByteArrayOfSize:1 #[123]
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1372
     123 asByteArrayOfSize:2 #[0 123]
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1373
     123 asByteArrayOfSize:4 #[0 0 0 123]
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1374
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1375
     255 asByteArrayOfSize:1 #[255]
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1376
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  1377
     256 asByteArrayOfSize:1
12147
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1378
     256 asByteArrayOfSize:2
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1379
     256 asByteArrayOfSize:4
22567
8c44c87bd949 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22561
diff changeset
  1380
     256 asByteArrayOfSize:8
12147
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1381
    "
12122
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  1382
!
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  1383
4867
3bb80fe9bb8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4830
diff changeset
  1384
atRandom
3bb80fe9bb8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4830
diff changeset
  1385
    "return a random number between 1 amd myself"
3bb80fe9bb8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4830
diff changeset
  1386
8573
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1387
    ^ self atRandom:Random.
8572
3e649d2e3167 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8461
diff changeset
  1388
3e649d2e3167 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8461
diff changeset
  1389
    "
3e649d2e3167 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8461
diff changeset
  1390
     100 atRandom
3e649d2e3167 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8461
diff changeset
  1391
     1000 atRandom
3e649d2e3167 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8461
diff changeset
  1392
    "
4867
3bb80fe9bb8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4830
diff changeset
  1393
!
4376
8df0935ac5b1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4278
diff changeset
  1394
8573
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1395
atRandom:aRandomGenerator
15456
9535b5c74e85 class: Integer
Stefan Vogel <sv@exept.de>
parents: 15273
diff changeset
  1396
    "return a random number between 1 and myself"
8573
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1397
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1398
    self < 1 ifTrue:[^ self].
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1399
    ^ aRandomGenerator nextIntegerBetween:1 and:self
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1400
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1401
    "
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1402
     100 atRandom:(Random new)
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1403
     1000 atRandom:(Random new)
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1404
    "
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1405
!
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1406
22600
ca4fea0b5b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22567
diff changeset
  1407
bitShiftMagnitude:shift
ca4fea0b5b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22567
diff changeset
  1408
    ^ self bitShift:shift.
ca4fea0b5b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22567
diff changeset
  1409
ca4fea0b5b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22567
diff changeset
  1410
    "
ca4fea0b5b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22567
diff changeset
  1411
     -1 bitShiftMagnitude:1
ca4fea0b5b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22567
diff changeset
  1412
     -2 bitShift:-1
ca4fea0b5b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22567
diff changeset
  1413
     -2 bitShift:-1
ca4fea0b5b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22567
diff changeset
  1414
    "
ca4fea0b5b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22567
diff changeset
  1415
!
ca4fea0b5b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22567
diff changeset
  1416
14385
1bb6b27c59f9 added: #printLeftPaddedWith:to:base:
Claus Gittinger <cg@exept.de>
parents: 14294
diff changeset
  1417
printLeftPaddedWith:padChar to:size base:base
1bb6b27c59f9 added: #printLeftPaddedWith:to:base:
Claus Gittinger <cg@exept.de>
parents: 14294
diff changeset
  1418
    "prints left-padded"
1bb6b27c59f9 added: #printLeftPaddedWith:to:base:
Claus Gittinger <cg@exept.de>
parents: 14294
diff changeset
  1419
1bb6b27c59f9 added: #printLeftPaddedWith:to:base:
Claus Gittinger <cg@exept.de>
parents: 14294
diff changeset
  1420
    ^ (self printStringRadix:base) leftPaddedTo:size with:padChar
1bb6b27c59f9 added: #printLeftPaddedWith:to:base:
Claus Gittinger <cg@exept.de>
parents: 14294
diff changeset
  1421
1bb6b27c59f9 added: #printLeftPaddedWith:to:base:
Claus Gittinger <cg@exept.de>
parents: 14294
diff changeset
  1422
    "
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  1423
     1234 printPaddedWith:$0 to:4 base:16
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  1424
     1234 printLeftPaddedWith:$0 to:4 base:16
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  1425
     128 printLeftPaddedWith:$0 to:2 base:16
14385
1bb6b27c59f9 added: #printLeftPaddedWith:to:base:
Claus Gittinger <cg@exept.de>
parents: 14294
diff changeset
  1426
    "
1bb6b27c59f9 added: #printLeftPaddedWith:to:base:
Claus Gittinger <cg@exept.de>
parents: 14294
diff changeset
  1427
!
1bb6b27c59f9 added: #printLeftPaddedWith:to:base:
Claus Gittinger <cg@exept.de>
parents: 14294
diff changeset
  1428
11858
8baf5d75506e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11793
diff changeset
  1429
printPaddedWith:padChar to:size base:base
14385
1bb6b27c59f9 added: #printLeftPaddedWith:to:base:
Claus Gittinger <cg@exept.de>
parents: 14294
diff changeset
  1430
    "attention: prints right-padded; see printLeftPadded."
1bb6b27c59f9 added: #printLeftPaddedWith:to:base:
Claus Gittinger <cg@exept.de>
parents: 14294
diff changeset
  1431
11858
8baf5d75506e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11793
diff changeset
  1432
    ^ (self printStringRadix:base) paddedTo:size with:padChar
8baf5d75506e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11793
diff changeset
  1433
8baf5d75506e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11793
diff changeset
  1434
    "
8baf5d75506e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11793
diff changeset
  1435
     1234 printPaddedWith:$0 to:4 base:16
8baf5d75506e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11793
diff changeset
  1436
    "
8baf5d75506e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11793
diff changeset
  1437
!
8baf5d75506e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11793
diff changeset
  1438
4376
8df0935ac5b1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4278
diff changeset
  1439
printStringBase:base
4867
3bb80fe9bb8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4830
diff changeset
  1440
    "return my printString in a base;
3bb80fe9bb8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4830
diff changeset
  1441
     same as printStringRadix:"
3bb80fe9bb8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4830
diff changeset
  1442
4376
8df0935ac5b1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4278
diff changeset
  1443
    ^ self printStringRadix:base
12284
a6e7b47c08c4 comment/format in: #printStringBase:
Claus Gittinger <cg@exept.de>
parents: 12280
diff changeset
  1444
a6e7b47c08c4 comment/format in: #printStringBase:
Claus Gittinger <cg@exept.de>
parents: 12280
diff changeset
  1445
    "
a6e7b47c08c4 comment/format in: #printStringBase:
Claus Gittinger <cg@exept.de>
parents: 12280
diff changeset
  1446
     1234 printStringBase:16
a6e7b47c08c4 comment/format in: #printStringBase:
Claus Gittinger <cg@exept.de>
parents: 12280
diff changeset
  1447
    "
9068
ad6967cff1b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9057
diff changeset
  1448
!
ad6967cff1b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9057
diff changeset
  1449
9125
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1450
printStringHex
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1451
    "return my printString in base 16;
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1452
     same as printStringRadix:"
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1453
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1454
    ^ self printStringRadix:16
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1455
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1456
    "
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1457
     4096 printStringHex
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1458
    "
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1459
!
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1460
9068
ad6967cff1b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9057
diff changeset
  1461
printStringRoman
9069
e5ba0dc84a53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9068
diff changeset
  1462
    "return my roman printString;
e5ba0dc84a53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9068
diff changeset
  1463
     almost the same as romanPrintString:"
e5ba0dc84a53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9068
diff changeset
  1464
9068
ad6967cff1b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9057
diff changeset
  1465
    "funny - although the romans did not have negative numbers - squeak has"
ad6967cff1b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9057
diff changeset
  1466
    self negative ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1467
        ^ '-' , self negated romanPrintString
9068
ad6967cff1b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9057
diff changeset
  1468
    ].
ad6967cff1b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9057
diff changeset
  1469
    ^ self romanPrintString
12280
b2bbbfd2444e added: #raisedTo:modulo:
Stefan Vogel <sv@exept.de>
parents: 12255
diff changeset
  1470
!
b2bbbfd2444e added: #raisedTo:modulo:
Stefan Vogel <sv@exept.de>
parents: 12255
diff changeset
  1471
b2bbbfd2444e added: #raisedTo:modulo:
Stefan Vogel <sv@exept.de>
parents: 12255
diff changeset
  1472
raisedTo:exp modulo:mod
b2bbbfd2444e added: #raisedTo:modulo:
Stefan Vogel <sv@exept.de>
parents: 12255
diff changeset
  1473
    ^ self raisedTo:exp mod:mod
4376
8df0935ac5b1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4278
diff changeset
  1474
! !
8df0935ac5b1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4278
diff changeset
  1475
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7173
diff changeset
  1476
!Integer methodsFor:'Compatibility-V''Age'!
927
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1477
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1478
<< aNumber
7155
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  1479
    "V'Age compatibility: left shift"
927
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1480
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1481
    ^ self bitShift:aNumber
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1482
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1483
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1484
     1 << 5
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1485
     64 << -5
927
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1486
    "
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1487
!
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1488
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1489
>> aNumber
7155
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  1490
    "V'Age compatibility: right shift"
927
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1491
22213
8b482a0c44a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22166
diff changeset
  1492
    ^ self rightShift:aNumber
927
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1493
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1494
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1495
     1 >> -5
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1496
     64 >> 5
927
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1497
    "
22213
8b482a0c44a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22166
diff changeset
  1498
8b482a0c44a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22166
diff changeset
  1499
    "Modified: / 25-08-2017 / 12:32:47 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1500
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1501
22600
ca4fea0b5b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22567
diff changeset
  1502
4423
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1503
!Integer methodsFor:'bcd conversion'!
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1504
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1505
decodeFromBCD
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1506
    "return a number representing the value of the BCD encoded receiver."
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1507
4424
f0f658ed8995 bcd support
Claus Gittinger <cg@exept.de>
parents: 4423
diff changeset
  1508
    |v rslt multiplier nibble|
4423
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1509
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1510
    v := self.
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1511
    rslt := 0.
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1512
    multiplier := 1.
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1513
    [v > 0] whileTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1514
        nibble := v bitAnd:16r0F.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1515
        nibble > 9 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1516
            ^ BCDConversionErrorSignal
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1517
                    raiseRequestWith:self
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1518
                    errorString:'bad BCD coded value'
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1519
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1520
        rslt := rslt + (nibble * multiplier).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1521
        multiplier := multiplier * 10.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1522
        v := v bitShift:-4.
4423
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1523
    ].
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1524
    ^ rslt
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1525
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1526
    "
4949
4c0462bd4d6a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  1527
     16r1234567890123 decodeFromBCD
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1528
     16r1073741823 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1529
     16r1073741824 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1530
     16r1073741825 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1531
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1532
     16r55 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1533
     16r127 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1534
     16r800000 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1535
     16r8000000 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1536
     16r80000000 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1537
     16r800000000 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1538
     16r127567890 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1539
     16r1234567890 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1540
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1541
     16r5A decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1542
     16rFF decodeFromBCD
4423
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1543
    "
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1544
4996
c3716cebe47b added a bcdConversionErrorSignal
Claus Gittinger <cg@exept.de>
parents: 4973
diff changeset
  1545
    "Modified: / 15.11.1999 / 20:37:20 / cg"
4423
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1546
!
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1547
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1548
encodeAsBCD
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1549
    "return a BCD encoded number representing the same value as the
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1550
     receiver."
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1551
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1552
    |v rslt shift|
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1553
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1554
    v := self.
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1555
    rslt := shift := 0.
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1556
    [v > 0] whileTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1557
        rslt := rslt + ((v \\ 10) bitShift:shift).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1558
        shift := shift + 4.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1559
        v := v // 10.
4423
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1560
    ].
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1561
    ^ rslt
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1562
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1563
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1564
     55 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1565
     127 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1566
     127 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1567
     8912345 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1568
     89123456 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1569
     891234567 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1570
     900000000 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1571
     1073741823 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1572
     1073741824 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1573
     1073741825 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1574
     1891234567 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1575
     8912345678 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1576
     1234567890 encodeAsBCD hexPrintString
4423
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1577
    "
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1578
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1579
! !
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1580
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1581
!Integer methodsFor:'bit operators'!
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1582
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1583
allMask:aMaskInteger
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1584
    "return true if all 1-bits in aMaskInteger are also 1 in the receiver"
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1585
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1586
    ^ (self bitAnd:aMaskInteger) == aMaskInteger
4643
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1587
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1588
    "2r00001111 allMask:2r00000001"
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1589
    "2r00001111 allMask:2r00011110"
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1590
    "2r00001111 allMask:2r00000000"
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1591
!
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1592
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1593
anyMask:aMaskInteger
4643
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1594
    "return true if any 1-bits in anInteger is also 1 in the receiver.
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1595
     (somewhat incorrect, if the mask is zero)"
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1596
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1597
    ^ (self bitAnd:aMaskInteger) ~~ 0
4643
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1598
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1599
    "2r00001111 anyMask:2r00000001"
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1600
    "2r00001111 anyMask:2r11110000"
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1601
!
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1602
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1603
bitAnd:aMaskInteger
357
claus
parents: 356
diff changeset
  1604
    "return the bitwise-and of the receiver and the argument, anInteger.
claus
parents: 356
diff changeset
  1605
     This is a general and slow implementation, walking over the bytes of
claus
parents: 356
diff changeset
  1606
     the receiver and the argument."
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1607
927
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1608
    |n "{ Class: SmallInteger }"
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1609
     result byte|
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1610
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1611
    aMaskInteger isInteger ifFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1612
        ^ aMaskInteger bitAndFromInteger:self.
6358
706234560a0b allow double dispatch for bit* operations
Claus Gittinger <cg@exept.de>
parents: 6249
diff changeset
  1613
    ].
706234560a0b allow double dispatch for bit* operations
Claus Gittinger <cg@exept.de>
parents: 6249
diff changeset
  1614
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1615
    n := (aMaskInteger digitLength) min:(self digitLength).
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1616
    result := self class basicNew numberOfDigits:n.
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1617
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1618
    1 to:n do:[:index |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1619
        byte := (aMaskInteger digitAt:index) bitAnd:(self digitAt:index).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1620
        result digitAt:index put:byte.
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1621
    ].
3162
c7c8af356ff2 dont hardcode the numberof bytes (use maxBytes for alpha);
Claus Gittinger <cg@exept.de>
parents: 3138
diff changeset
  1622
    (byte == 0 or:[n <= SmallInteger maxBytes]) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1623
        ^ result compressed
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1624
    ].
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1625
    ^ result
357
claus
parents: 356
diff changeset
  1626
claus
parents: 356
diff changeset
  1627
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1628
     (16r112233445566778899 bitAnd:16rFF                ) printStringRadix:16
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1629
     (16r112233445566778899 bitAnd:16rFFFFFFFFFFFFFFFF00) printStringRadix:16
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1630
     (16r112233445566778899 bitAnd:16rFF0000000000000000) printStringRadix:16
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1631
     (16r112233445566778899 bitAnd:16r00000000000000FFFF) printStringRadix:16
357
claus
parents: 356
diff changeset
  1632
    "
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  1633
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  1634
    "Modified: 5.11.1996 / 14:06:26 / cg"
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1635
!
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1636
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1637
bitClear:aMaskInteger
19071
2941ec17cf5d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19068
diff changeset
  1638
    "return the bitwise-and of the receiver and the complement of the argument, anInteger,
16379
04f35b0875dc class: Integer
Claus Gittinger <cg@exept.de>
parents: 16347
diff changeset
  1639
     returning the receiver with bits of the argument cleared.
19071
2941ec17cf5d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19068
diff changeset
  1640
     (i.e. the same as self bitAnd:aMaskInteger bitInvert).
3884
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1641
     This is a general and slow implementation, walking over the bytes of
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1642
     the receiver and the argument."
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1643
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1644
    |n "{ Class: SmallInteger }"
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1645
     result byte|
3188
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  1646
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1647
    n := (aMaskInteger digitLength) max:(self digitLength).
3884
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1648
    result := self class basicNew numberOfDigits:n.
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1649
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1650
    1 to:n do:[:index |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1651
        byte :=  (self digitAt:index) bitClear:(aMaskInteger digitAt:index).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1652
        result digitAt:index put:byte.
3884
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1653
    ].
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1654
    (byte == 0 or:[n <= SmallInteger maxBytes]) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1655
        ^ result compressed
3884
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1656
    ].
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1657
    ^ result
3188
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  1658
!
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  1659
11492
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1660
bitCount
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1661
    "return the number of 1-bits in the receiver"
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1662
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1663
    |n "{ Class: SmallInteger }"
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1664
     cnt byte|
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1665
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1666
    n := self digitLength.
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1667
    cnt := 0.
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1668
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1669
    1 to:n do:[:index |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1670
        byte := self digitAt:index.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1671
        cnt := cnt + (byte bitCount)
11492
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1672
    ].
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1673
    ^ cnt
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1674
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1675
     "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1676
      2r100000000000000000000000000000000000000000000000000000000001 bitCount
11492
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1677
      2r111111111111111111111111111111111111111111111111111111111111111111 bitCount
13914
725916ddad3f comment/format
Claus Gittinger <cg@exept.de>
parents: 13907
diff changeset
  1678
      100 factorial bitCount -> 207
725916ddad3f comment/format
Claus Gittinger <cg@exept.de>
parents: 13907
diff changeset
  1679
      1000 factorial bitCount -> 3788
11492
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1680
     "
13914
725916ddad3f comment/format
Claus Gittinger <cg@exept.de>
parents: 13907
diff changeset
  1681
725916ddad3f comment/format
Claus Gittinger <cg@exept.de>
parents: 13907
diff changeset
  1682
    "Modified (comment): / 09-01-2012 / 19:51:00 / cg"
11492
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1683
!
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1684
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1685
bitDeinterleave:n
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1686
    "extract count integers from an n-way Morton number as a vector;
22222
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1687
     This is the inverse operation from bitInterleave: - see comment there.
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1688
     i.e. if count is 3,
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1689
     and the receiver's bits are
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1690
        cN bN aN ... c2 b2 a2 c1 b1 a1 c0 b0 a0
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1691
     then the result will be a vector containing the numbers a,b,c with bits:
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1692
        aN ... a2 a1 a0
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1693
        bN ... b2 b1 b0 
22222
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1694
        cN ... c2 c1 c0."
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1695
     
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1696
    |v shift tuple|
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1697
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1698
    tuple := Array new:n withAll:0.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1699
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1700
    shift := 0.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1701
    v := self.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1702
    [ v > 0 ] whileTrue:[
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1703
        1 to:n do:[:i |
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1704
            tuple at:i put:((tuple at:i) bitOr:((v bitAnd:1) bitShift:shift)).
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1705
            v := v rightShift:1.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1706
        ].
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1707
        shift := shift + 1.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1708
    ].
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1709
    ^ tuple
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1710
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1711
    "
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1712
     (2r1100 bitInterleaveWith:2r1001) -> 2r11100001
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1713
     (2r11000110 bitInterleaveWith:2r10011100 and:2r10100101) -> 2r111100001010010111100001.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1714
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1715
     2r11100001 bitDeinterleave:2
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1716
     
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1717
     (2r11000110 bitInterleaveWith:2r10011100 and:2r10100101) 
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1718
     (198 bitInterleaveWith:156 and:165) bitDeinterleave:3
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1719
    "
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1720
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1721
    "Created: / 28-08-2017 / 15:02:31 / cg"
22222
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1722
    "Modified (comment): / 28-08-2017 / 18:45:21 / cg"
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1723
!
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1724
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1725
bitInterleaveWith:anInteger
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1726
    "generate a Morton number (-> https://en.wikipedia.org/wiki/Morton_number_(number_theory)) 
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1727
     by interleaving bits of the receiver (at odd positions if counting from 1) 
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1728
     with bits of the argument (at even bit positions).
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1729
     
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1730
     Thus, if the bits of the receiver are
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1731
        aN ... a2 a1 a0
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1732
     and those of the argument are:
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1733
        bN ... b2 b1 b0
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1734
     the result is
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1735
        bN aN ... b2 a2 b1 a1 b0 a0.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1736
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1737
     Morton numbers are great to linearize 2D coordinates
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1738
     eg. to sort 2D points by distances"    
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1739
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1740
    "/ a naive and slow fallback here, using a small map to process cunks of 4 bits
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1741
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1742
    |a b shift ma mb val|
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1743
22222
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1744
    self assert:(self >= 0).
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1745
    self assert:(a >= 0).
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1746
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1747
    a := self.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1748
    b := anInteger.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1749
    val := 0.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1750
    shift := 0.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1751
    [ (a == 0) and:[b == 0]] whileFalse:[
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1752
        "/ strip off 4 bits from each...
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1753
        "/ 0000       0001       0010       0011       0100       0101       0110       0111       1000       1001       1010       1011       1100       1101       1110       1111 
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1754
        mb := #[ 2r00000000 2r00000010 2r00001000 2r00001010 2r00100000 2r00100010 2r00101000 2r00101010 2r10000000 2r10000010 2r10001000 2r10001010 2r10100000 2r10100010 2r10101000 2r10101010 ] 
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1755
                at:((b bitAnd:2r1111)+1).
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1756
        ma := #[ 2r00000000 2r00000001 2r00000100 2r00000101 2r00010000 2r00010001 2r00010100 2r00010101 2r01000000 2r01000001 2r01000100 2r01000101 2r01010000 2r01010001 2r01010100 2r01010101 ]
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1757
                at:((a bitAnd:2r1111)+1).
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1758
        val := val bitOr:((ma bitOr:mb) bitShift:shift).
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1759
        shift := shift + 8.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1760
        a := a rightShift:4.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1761
        b := b rightShift:4.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1762
    ].
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1763
    ^ val.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1764
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1765
    "
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1766
     (2r11000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1767
     bitInterleaveWith:2r10010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) 
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1768
        -> 2r1101001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1769
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1770
     (2r11000101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1771
     bitInterleaveWith:2r10010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) 
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1772
        -> 2r1101001000010001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1773
    "
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1774
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1775
    "Created: / 28-08-2017 / 14:33:08 / cg"
22222
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1776
    "Modified: / 28-08-2017 / 19:19:31 / cg"
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1777
!
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1778
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1779
bitInterleaveWith:integer1 and:integer2
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1780
    "generate a Morton3 number (-> https://en.wikipedia.org/wiki/Morton_number_(number_theory)) 
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1781
     by interleaving bits of the receiver with bits of the arguments.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1782
     Thus, if the bits of the receiver are
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1783
        aN ... a2 a1 a0
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1784
     and those of the integer1 are:
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1785
        bN ... b2 b1 b0
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1786
     and those of the integer2 are:
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1787
        cN ... c2 c1 c0
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1788
     the result is
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1789
        cN bN aN ... c2 b2 a2 c1 b1 a1 c0 b0 a0.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1790
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1791
     Morton3 numbers are great to linearize 3D coordinates
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1792
     eg. to sort 3D points by distances"    
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1793
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1794
    |a b c shift ma mb mc val|
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1795
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1796
    a := self.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1797
    b := integer1.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1798
    c := integer2.
22469
6058c02151eb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22460
diff changeset
  1799
    self assert:(a >= 0).
6058c02151eb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22460
diff changeset
  1800
    self assert:(b >= 0).
6058c02151eb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22460
diff changeset
  1801
    self assert:(c >= 0).
6058c02151eb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22460
diff changeset
  1802
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1803
    val := 0.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1804
    shift := 0.
22469
6058c02151eb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22460
diff changeset
  1805
    [ a ~~ 0 or:[b ~~ 0 or:[c ~~ 0]] ] whileTrue:[
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1806
        "/ strip off 4 bits from each...
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1807
        "/ 0000       0001       0010       0011       0100       0101       0110       0111       1000       1001       1010       1011       1100       1101       1110       1111 
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1808
        mc := #( 2r000000000000 2r000000000100 2r000000100000 2r000000100100 2r000100000000 2r000100000100 2r000100100000 2r000100100100 2r100000000000 2r100000000100 2r100000100000 2r100000100100 2r100100000000 2r100100000100 2r100100100000 2r100100100100 ) 
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1809
                at:((c bitAnd:2r1111)+1).
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1810
        mb := #( 2r000000000000 2r000000000010 2r000000010000 2r000000010010 2r000010000000 2r000010000010 2r000010010000 2r000010010010 2r010000000000 2r010000000010 2r010000010000 2r010000010010 2r010010000000 2r010010000010 2r010010010000 2r010010010010 )
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1811
                at:((b bitAnd:2r1111)+1).
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1812
        ma := #( 2r000000000000 2r000000000001 2r000000001000 2r000000001001 2r000001000000 2r000001000001 2r000001001000 2r000001001001 2r001000000000 2r001000000001 2r001000001000 2r001000001001 2r001001000000 2r001001000001 2r001001001000 2r001001001001 )
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1813
                at:((a bitAnd:2r1111)+1).
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1814
        val := val bitOr:(((ma bitOr:mb) bitOr:mc) bitShift:shift).
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1815
        shift := shift + 12.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1816
        a := a rightShift:4.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1817
        b := b rightShift:4.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1818
        c := c rightShift:4.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1819
    ].
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1820
    ^ val.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1821
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1822
    "
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1823
     (2r1100 bitInterleaveWith:2r1001 and:2r1010) printStringRadix:2 -> '111 001 100 010'
22222
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1824
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1825
     (2r11000110 bitInterleaveWith:2r10011100 and:2r10100101) printStringRadix:2 -> '111 001 100 010 010 111 001 100'
22222
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1826
     (1 bitInterleaveWith:1 and:16)
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1827
     
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1828
     ((1<<31) bitInterleaveWith:(1<<31) and:(1<<31)) bitDeinterleave:3
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1829
     ((1<<31) bitInterleaveWith:(1<<63) and:(1<<95)) bitDeinterleave:3
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1830
    "
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1831
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1832
    "Created: / 28-08-2017 / 14:33:04 / cg"
22222
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1833
    "Modified: / 28-08-2017 / 19:19:25 / cg"
22469
6058c02151eb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22460
diff changeset
  1834
    "Modified: / 19-01-2018 / 11:29:04 / stefan"
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1835
!
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1836
3455
2b19e1e70adc added bitInvert for LargeIntegers (positive only)
Claus Gittinger <cg@exept.de>
parents: 3395
diff changeset
  1837
bitInvert
2b19e1e70adc added bitInvert for LargeIntegers (positive only)
Claus Gittinger <cg@exept.de>
parents: 3395
diff changeset
  1838
    "return a new integer, where all bits are complemented.
2b19e1e70adc added bitInvert for LargeIntegers (positive only)
Claus Gittinger <cg@exept.de>
parents: 3395
diff changeset
  1839
     This does not really make sense for negative largeIntegers,
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  1840
     since the digits are stored as absolute value.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  1841
     Q: is this specified in a language standard ?"
3455
2b19e1e70adc added bitInvert for LargeIntegers (positive only)
Claus Gittinger <cg@exept.de>
parents: 3395
diff changeset
  1842
4614
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1843
"/    ^ -1 - self
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1844
15841
7c222b07168f class: Integer
Stefan Vogel <sv@exept.de>
parents: 15775
diff changeset
  1845
    |n      "{ Class: SmallInteger }"
7c222b07168f class: Integer
Stefan Vogel <sv@exept.de>
parents: 15775
diff changeset
  1846
     byte   "{ Class: SmallInteger }"
7c222b07168f class: Integer
Stefan Vogel <sv@exept.de>
parents: 15775
diff changeset
  1847
     result|
4614
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1848
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1849
    n := self digitLength.
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1850
    result := self class basicNew numberOfDigits:n.
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1851
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1852
    1 to:n do:[:index |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1853
        byte := self digitAt:index.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1854
        byte := byte bitInvert bitAnd:16rFF.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1855
        result digitAt:index put:byte.
4614
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1856
    ].
15841
7c222b07168f class: Integer
Stefan Vogel <sv@exept.de>
parents: 15775
diff changeset
  1857
    (byte == 0 or:[n <= SmallInteger maxBytes]) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1858
        "if last byte is zero we can normalize"
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1859
        ^ result compressed
4614
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1860
    ].
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1861
    ^ result
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1862
19068
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1863
    "
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1864
     16rff bitInvert bitAnd:16rff
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1865
     16rffffffff bitInvert
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1866
     16rff00ff00 bitInvert hexPrintString
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1867
    "
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1868
!
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1869
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1870
bitInvertByte
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1871
    "return a new integer, where the low 8 bits are masked and complemented.
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1872
     This returns an unsigned version of what bitInvert would return.
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1873
     (i.e. same as self bitInvert bitAnd:16rFF)"
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1874
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1875
    ^ (self digitAt:1) bitInvert bitAnd:16rFF
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1876
    
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1877
    "
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1878
     16rff bitInvert
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1879
     16rff bitInvertByte
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1880
    "
3455
2b19e1e70adc added bitInvert for LargeIntegers (positive only)
Claus Gittinger <cg@exept.de>
parents: 3395
diff changeset
  1881
!
2b19e1e70adc added bitInvert for LargeIntegers (positive only)
Claus Gittinger <cg@exept.de>
parents: 3395
diff changeset
  1882
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1883
bitOr:aMaskInteger
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1884
    "return the bitwise-or of the receiver and the argument, anInteger.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1885
     This is a general and slow implementation, walking over the bytes of
23118
0c79d2fbcf16 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23055
diff changeset
  1886
     the receiver and the argument.
0c79d2fbcf16 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23055
diff changeset
  1887
     It is redefined in concrete subclasses (especially SmallInteger) for performance."
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1888
927
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1889
    |n "{ Class: SmallInteger }"
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1890
     result byte|
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1891
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1892
    aMaskInteger isInteger ifFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1893
        ^ aMaskInteger bitOrFromInteger:self.
6358
706234560a0b allow double dispatch for bit* operations
Claus Gittinger <cg@exept.de>
parents: 6249
diff changeset
  1894
    ].
706234560a0b allow double dispatch for bit* operations
Claus Gittinger <cg@exept.de>
parents: 6249
diff changeset
  1895
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1896
    n := (aMaskInteger digitLength) max:(self digitLength).
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1897
    result := self class basicNew numberOfDigits:n.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1898
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1899
    1 to:n do:[:index |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1900
        byte := (aMaskInteger digitAt:index) bitOr:(self digitAt:index).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1901
        result digitAt:index put:byte.
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1902
    ].
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1903
"/ no need to normalize - if the operands were correct
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1904
"/    byte == 0 ifTrue:[
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1905
"/        ^ result compressed
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1906
"/    ].
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1907
    ^ result
23118
0c79d2fbcf16 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23055
diff changeset
  1908
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1909
    "
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1910
        16rFFFFFFFFFFFFFFFFFFFF0 bitOr:1.0
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1911
        16rFFFFFFFFFFFFFFFFFFFF0 bitOr:1.0s1
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1912
        16rFFFFFFFFFFFFFFFFFFFF0 bitOr:1.1
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1913
    "
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1914
23118
0c79d2fbcf16 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23055
diff changeset
  1915
    "Modified (comment): / 20-06-2018 / 14:47:43 / Claus Gittinger"
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1916
    "Modified (comment): / 01-11-2018 / 12:10:27 / Stefan Vogel"
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1917
!
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1918
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1919
bitReversed
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1920
    "swap (i.e. reverse) bits in an integer
23994
e4e3b75162ad #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23992
diff changeset
  1921
     i.e. a.b.c.d....x.y.z -> z.y.x...b.a.d.c.
e4e3b75162ad #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23992
diff changeset
  1922
     Warning: 
e4e3b75162ad #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23992
diff changeset
  1923
        do not use this without care: it depends on the machine's 
e4e3b75162ad #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23992
diff changeset
  1924
        word size; i.e. a 64bit machine will return a different result as a 32bit machine.
e4e3b75162ad #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23992
diff changeset
  1925
        Better use one of the bitReversedXX methods.
e4e3b75162ad #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23992
diff changeset
  1926
        This my vanish or be replaced by something better"
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1927
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1928
    |n "{ Class: SmallInteger }"
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1929
     result byte|
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1930
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1931
    n := self digitLength.
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1932
    result := self class basicNew numberOfDigits:n.
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1933
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1934
    1 to:n do:[:index |
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1935
        byte := (self digitAt:index) bitReversed8.
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1936
        result digitAt:n+1-index put:byte.
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1937
    ].
23992
3dc2d660853d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23980
diff changeset
  1938
    (byte == 0 or:[n <= SmallInteger maxBytes]) ifTrue:[
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1939
        ^ result compressed
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1940
    ].
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1941
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1942
    ^ result
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1943
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1944
    "
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1945
     2r1001 asLargeInteger bitReversed printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1946
     2r10011101 asLargeInteger bitReversed printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1947
     2r111110011101 asLargeInteger bitReversed printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1948
     2r11111001110100000000000000000000000000000000000000000001  bitReversed printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1949
     -1 asLargeInteger bitReversed printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1950
    "
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1951
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1952
    "Created: / 01-11-2018 / 11:22:42 / Stefan Vogel"
23994
e4e3b75162ad #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23992
diff changeset
  1953
    "Modified (comment): / 27-03-2019 / 18:28:42 / Claus Gittinger"
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1954
!
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1955
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1956
bitReversed16
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1957
    "swap (i.e. reverse) the low 16 bits in an integer
24005
813a3a6e3af4 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23999
diff changeset
  1958
     the high bits are ignored and cleared in the result
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1959
     i.e. xxx.a.b.c.d....x.y.z -> 000.z.y.x...b.a.d.c."
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1960
23999
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1961
    |rslt|
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1962
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1963
    rslt := (self digitAt:2) bitReversed8.
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1964
    rslt := rslt bitOr:((self digitAt:1) bitReversed8 bitShift:8).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1965
    ^ rslt.
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1966
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1967
    "
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1968
     16r8000 bitReversed16  
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1969
     16r87654321 bitReversed16 printStringRadix:2
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1970
     16rFEDCBA987654321 bitReversed16 printStringRadix:2
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1971
    "
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1972
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1973
    "Created: / 01-11-2018 / 11:34:51 / Stefan Vogel"
24005
813a3a6e3af4 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23999
diff changeset
  1974
    "Modified (comment): / 27-03-2019 / 15:14:45 / stefan"
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1975
!
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1976
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1977
bitReversed32
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1978
    "swap (i.e. reverse) the low 32 bits in an integer
24005
813a3a6e3af4 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23999
diff changeset
  1979
     the high bits are ignored and cleared in the result
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1980
     i.e. xxx.a.b.c.d....x.y.z -> 000.z.y.x...b.a.d.c."
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1981
23999
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1982
    |rslt|
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1983
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1984
    rslt := (self digitAt:4) bitReversed8.
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1985
    rslt := rslt bitOr:((self digitAt:3) bitReversed8 bitShift:8).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1986
    rslt := rslt bitOr:((self digitAt:2) bitReversed8 bitShift:16).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1987
    rslt := rslt bitOr:((self digitAt:1) bitReversed8 bitShift:24).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1988
    ^ rslt.
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1989
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1990
    "
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1991
     16r80000000 bitReversed32
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1992
     2r11111001110100000000000000000000000000000000000000000001  bitReversed32 printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1993
     -1 asLargeInteger bitReversed32 printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1994
    "
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1995
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1996
    "Created: / 01-11-2018 / 11:35:54 / Stefan Vogel"
24005
813a3a6e3af4 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23999
diff changeset
  1997
    "Modified (comment): / 27-03-2019 / 15:14:39 / stefan"
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1998
!
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1999
23992
3dc2d660853d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23980
diff changeset
  2000
bitReversed64
24005
813a3a6e3af4 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23999
diff changeset
  2001
    "swap (i.e. reverse) the low 64 bits in an integer
813a3a6e3af4 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23999
diff changeset
  2002
     the high bits are ignored and cleared in the result
23992
3dc2d660853d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23980
diff changeset
  2003
     i.e. xxx.a.b.c.d....x.y.z -> 000.z.y.x...b.a.d.c."
3dc2d660853d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23980
diff changeset
  2004
23999
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2005
    |rslt|
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2006
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2007
    rslt := (self digitAt:8) bitReversed8.
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2008
    rslt := rslt bitOr:((self digitAt:7) bitReversed8 bitShift:8).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2009
    rslt := rslt bitOr:((self digitAt:6) bitReversed8 bitShift:16).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2010
    rslt := rslt bitOr:((self digitAt:5) bitReversed8 bitShift:24).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2011
    rslt := rslt bitOr:((self digitAt:4) bitReversed8 bitShift:32).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2012
    rslt := rslt bitOr:((self digitAt:3) bitReversed8 bitShift:40).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2013
    rslt := rslt bitOr:((self digitAt:2) bitReversed8 bitShift:48).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2014
    rslt := rslt bitOr:((self digitAt:1) bitReversed8 bitShift:56).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2015
    ^ rslt.
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2016
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2017
    "
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2018
     16r80000000 bitReversed32
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2019
     16r80000000 bitReversed64
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2020
     16r8000000000000000 bitReversed64
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2021
     2r11111001110100000000000000000000000000000000000000000001  bitReversed32 printStringRadix:2
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2022
     -1 asLargeInteger bitReversed32 printStringRadix:2
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2023
    "
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2024
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2025
    "Created: / 01-11-2018 / 11:35:54 / Stefan Vogel"
24005
813a3a6e3af4 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23999
diff changeset
  2026
    "Modified (comment): / 27-03-2019 / 15:14:33 / stefan"
23992
3dc2d660853d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23980
diff changeset
  2027
!
3dc2d660853d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23980
diff changeset
  2028
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2029
bitReversed8
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2030
    "swap (i.e. reverse) the low 8 bits in an integer
24005
813a3a6e3af4 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23999
diff changeset
  2031
     the high bits are ignored and cleared in the result
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2032
     i.e. xxx.a.b.c.d....x.y.z -> 000.z.y.x...b.a.d.c."
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2033
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2034
    ^ (self digitAt:1) bitReversed8.
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2035
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2036
    "
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2037
     2r1001 asLargeInteger bitReversed8 printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2038
     2r10011101 asLargeInteger bitReversed8 printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2039
     2r111110011101 asLargeInteger bitReversed8 printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2040
     2r11111001110100000000000000000000000000000000000000000001  bitReversed8 printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2041
     -1 asLargeInteger bitReversed8 printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2042
    "
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2043
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2044
    "Created: / 01-11-2018 / 11:32:58 / Stefan Vogel"
24005
813a3a6e3af4 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23999
diff changeset
  2045
    "Modified (comment): / 27-03-2019 / 15:14:54 / stefan"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2046
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2047
85
claus
parents: 77
diff changeset
  2048
bitShift:shiftCount
claus
parents: 77
diff changeset
  2049
    "return the value of the receiver shifted by shiftCount bits;
claus
parents: 77
diff changeset
  2050
     leftShift if shiftCount > 0; rightShift otherwise.
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2051
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2052
     Notice: the result of bitShift: on negative receivers is not
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2053
             defined in the language standard (since the implementation
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2054
             is free to choose any internal representation for integers)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2055
             However, ST/X preserves the sign."
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2056
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2057
    |result
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2058
     prev       "{ Class: SmallInteger }"
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2059
     next       "{ Class: SmallInteger }"
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2060
     byte       "{ Class: SmallInteger }"
359
claus
parents: 357
diff changeset
  2061
     byte2      "{ Class: SmallInteger }"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2062
     bitShift   "{ Class: SmallInteger }"
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2063
     revShift   "{ Class: SmallInteger }"
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2064
     digitShift "{ Class: SmallInteger }"
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3036
diff changeset
  2065
     nn         "{ Class: SmallInteger }"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3036
diff changeset
  2066
     nDigits    "{ Class: SmallInteger }" |
85
claus
parents: 77
diff changeset
  2067
6358
706234560a0b allow double dispatch for bit* operations
Claus Gittinger <cg@exept.de>
parents: 6249
diff changeset
  2068
    shiftCount isInteger ifFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2069
        ^ shiftCount bitShiftFromInteger:self.
6358
706234560a0b allow double dispatch for bit* operations
Claus Gittinger <cg@exept.de>
parents: 6249
diff changeset
  2070
    ].
706234560a0b allow double dispatch for bit* operations
Claus Gittinger <cg@exept.de>
parents: 6249
diff changeset
  2071
85
claus
parents: 77
diff changeset
  2072
    shiftCount > 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2073
        "left shift"
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2074
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2075
        nDigits := self digitLength.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2076
        digitShift := shiftCount // 8.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2077
        bitShift := shiftCount \\ 8.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2079
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2080
         modulo 8 shifts can be done faster ...
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2081
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2082
        bitShift == 0 ifTrue:[
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2083
            nn := nDigits + digitShift.
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2084
            result := self class basicNew numberOfDigits:nn sign:self sign.
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2085
            result digitBytes replaceFrom:(digitShift + 1) to:nn with:self digitBytes.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2086
            "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2087
             no normalize needed, since receiver was already normalized
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2088
            "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2089
            ^ result
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2090
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2091
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2092
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2093
         less-than-8 shifts can be done faster ...
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2094
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2095
        digitShift == 0 ifTrue:[
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2096
            nn := nDigits+1.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2097
            result := self class basicNew numberOfDigits:nn sign:self sign.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2098
            prev := 0.
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2099
            1 to:nDigits do:[:index |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2100
                byte := self digitAt:index.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2101
                byte := (byte bitShift:bitShift) bitOr:prev.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2102
                result digitAt:index put:(byte bitAnd:16rFF).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2103
                prev := byte bitShift:-8.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2104
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2105
            result digitAt:nn put:prev.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2106
            "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2107
             might have stored a 0-byte ...
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2108
            "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2109
            prev == 0 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2110
                ^ result compressed
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2111
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2112
            ^ result.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2113
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2114
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2115
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2116
         slow case ...
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2117
        "
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2118
        nn := nDigits + digitShift + 1.
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2119
        result := self class basicNew numberOfDigits:nn sign:self sign.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2120
        byte := self digitAt:1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2121
        byte := (byte bitShift:bitShift) bitAnd:16rFF.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2122
        result digitAt:(digitShift + 1) put:byte.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2123
        revShift := -8 + bitShift.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2124
        2 to:nDigits do:[:index |
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2125
            byte := self digitAt:index.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2126
            byte2 := self digitAt:index-1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2127
            byte := byte bitShift:bitShift.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2128
            byte2 := byte2 bitShift:revShift.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2129
            byte := (byte bitOr:byte2) bitAnd:16rFF.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2130
            result digitAt:(index + digitShift) put:byte.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2131
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2132
        byte2 := self digitAt:nDigits.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2133
        byte2 := (byte2 bitShift:revShift) bitAnd:16rFF.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2134
        result digitAt:(nDigits + digitShift + 1) put:byte2.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2135
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2136
         might have stored a 0-byte ...
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2137
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2138
        byte2 == 0 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2139
            ^ result compressed
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2140
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2141
        ^ result
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2142
    ].
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2143
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2144
    shiftCount < 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2145
        "right shift"
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2146
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2147
        nDigits := self digitLength.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2148
        digitShift := shiftCount negated // 8.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2149
        bitShift := shiftCount negated \\ 8.
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2150
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2151
        digitShift >= nDigits ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2152
            ^ 0
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2153
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2154
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2155
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2156
         modulo 8 shifts can be done faster ...
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2157
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2158
        bitShift == 0 ifTrue:[
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2159
            nn := nDigits-digitShift.
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2160
            result := self class basicNew numberOfDigits:nn sign:self sign.
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2161
            result digitBytes replaceFrom:1 to:nn with:self digitBytes startingAt:(digitShift + 1) .
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2162
            nn <= SmallInteger maxBytes ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2163
                ^ result compressed
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2164
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2165
            ^ result
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2166
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2167
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2168
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2169
         less-than-8 shifts can be done faster ...
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2170
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2171
        digitShift == 0 ifTrue:[
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2172
            result := self class basicNew numberOfDigits:nDigits sign:self sign.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2173
            prev := 0.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2174
            bitShift := bitShift negated.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2175
            revShift := 8 + bitShift.
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2176
            nDigits to:1 by:-1 do:[:index |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2177
                byte := self digitAt:index.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2178
                next := (byte bitShift:revShift) bitAnd:16rFF.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2179
                byte := (byte bitShift:bitShift) bitOr:prev.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2180
                result digitAt:index put:(byte bitAnd:16rFF).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2181
                prev := next.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2182
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2183
            ^ result compressed
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2184
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2185
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2186
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2187
         slow case ...
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2188
        "
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2189
        nn := nDigits-digitShift.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2190
        result := self class basicNew numberOfDigits:nn sign:self sign.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2191
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2192
        prev := 0.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2193
        bitShift := bitShift negated.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2194
        revShift := 8 + bitShift.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2195
        nn := digitShift + 1.
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2196
        nDigits to:nn by:-1 do:[:index |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2197
            byte := self digitAt:index.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2198
            next := (byte bitShift:revShift) bitAnd:16rFF.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2199
            byte := (byte bitShift:bitShift) bitOr:prev.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2200
            result digitAt:(index - digitShift) put:byte.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2201
            prev := next.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2202
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2203
        "the last stored byte ..."
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2204
        ^ result compressed
85
claus
parents: 77
diff changeset
  2205
    ].
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2206
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2207
    ^ self "no shift"
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  2208
3638
edf314b220d2 fixed #bitShift: (right)
Claus Gittinger <cg@exept.de>
parents: 3455
diff changeset
  2209
    "Modified: / 8.7.1998 / 12:45:24 / cg"
4151
6d6971c27567 Some speedups.
Stefan Vogel <sv@exept.de>
parents: 4142
diff changeset
  2210
    "Modified: / 5.5.1999 / 16:05:05 / stefan"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2211
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2212
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  2213
bitTest:aMaskInteger
5782
dcc037e5bdbf comment change
Claus Gittinger <cg@exept.de>
parents: 5496
diff changeset
  2214
    "return true, if any bit from aMask is set in the receiver.
dcc037e5bdbf comment change
Claus Gittinger <cg@exept.de>
parents: 5496
diff changeset
  2215
     I.e. true, if the bitwise-AND of the receiver and the argument, anInteger
1407
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2216
     is non-0, false otherwise.
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2217
     This is a general and slow implementation, walking over the bytes of
23118
0c79d2fbcf16 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23055
diff changeset
  2218
     the receiver and the argument. 
0c79d2fbcf16 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23055
diff changeset
  2219
     It is redefined in concrete subclasses (especially SmallInteger) for performance."
1407
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2220
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2221
    |n "{ Class: SmallInteger }"
4278
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2222
     byte|
1407
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2223
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  2224
    n := (aMaskInteger digitLength) min:(self digitLength).
1407
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2225
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2226
    1 to:n do:[:index |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2227
        byte := (aMaskInteger digitAt:index) bitAnd:(self digitAt:index).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2228
        byte ~~ 0 ifTrue:[^ true].
1407
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2229
    ].
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2230
    ^ false
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2231
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2232
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2233
     16r112233445566778899 bitTest:16rFF
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2234
     16r112233445566778800 bitTest:16rFF
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2235
     16r112233445566778899 bitTest:16rFFFFFFFFFFFFFFFF00
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2236
     16r112233445566778899 bitTest:16rFF0000000000000000
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2237
     16r112233445566778899 bitTest:16r00000000000000FFFF
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2238
     16r1234567800000000 bitTest:16r8000000000000000
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2239
     16r8765432100000000 bitTest:16r8000000000000000
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2240
     16r12345678 bitTest:16r80000000
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2241
     16r87654321 bitTest:16r80000000
1407
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2242
    "
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2243
23118
0c79d2fbcf16 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23055
diff changeset
  2244
    "Modified: / 06-06-1999 / 15:10:33 / cg"
0c79d2fbcf16 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23055
diff changeset
  2245
    "Modified (comment): / 20-06-2018 / 14:47:28 / Claus Gittinger"
1407
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2246
!
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2247
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2248
bitXor:anInteger
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2249
    "return the bitwise-or of the receiver and the argument, anInteger.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2250
     This is a general and slow implementation, walking over the bytes of
23118
0c79d2fbcf16 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23055
diff changeset
  2251
     the receiver and the argument.
0c79d2fbcf16 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23055
diff changeset
  2252
     It is redefined in concrete subclasses (especially SmallInteger) for performance."
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2253
927
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  2254
    |n "{ Class: SmallInteger }"
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  2255
     result byte|
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2256
6358
706234560a0b allow double dispatch for bit* operations
Claus Gittinger <cg@exept.de>
parents: 6249
diff changeset
  2257
    anInteger isInteger ifFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2258
        ^ anInteger bitXorFromInteger:self.
6358
706234560a0b allow double dispatch for bit* operations
Claus Gittinger <cg@exept.de>
parents: 6249
diff changeset
  2259
    ].
706234560a0b allow double dispatch for bit* operations
Claus Gittinger <cg@exept.de>
parents: 6249
diff changeset
  2260
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2261
    n := (anInteger digitLength) max:(self digitLength).
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2262
    result := self class basicNew numberOfDigits:n.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2263
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2264
    1 to:n do:[:index |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2265
        byte := (anInteger digitAt:index) bitXor:(self digitAt:index).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2266
        result digitAt:index put:byte.
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2267
    ].
3993
a5a09b2d36cd oops - bitXor: did not always compress the result.
Claus Gittinger <cg@exept.de>
parents: 3908
diff changeset
  2268
    (byte == 0 or:[n <= SmallInteger maxBytes]) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2269
        ^ result compressed
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2270
    ].
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2271
    ^ result
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2272
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2273
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2274
     (16r112233445566778899 bitXor:16rFF                ) printStringRadix:16 '112233445566778866'
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2275
     (16r112233445566778899 bitXor:16rFFFFFFFFFFFFFFFF00) printStringRadix:16 'EEDDCCBBAA99887799'
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2276
     (16r112233445566778899 bitXor:16rFF0000000000000000) printStringRadix:16 'EE2233445566778899'
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2277
     (16r112233445566778899 bitXor:16r112233445566778800) printStringRadix:16
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2278
    "
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  2279
23118
0c79d2fbcf16 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23055
diff changeset
  2280
    "Modified: / 05-11-1996 / 14:06:40 / cg"
0c79d2fbcf16 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23055
diff changeset
  2281
    "Modified (comment): / 20-06-2018 / 14:47:55 / Claus Gittinger"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2282
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2283
12670
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2284
changeMask:mask to:aBooleanOrNumber
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2285
    "return a new number where the specified mask-bit is on or off,
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2286
     depending on aBooleanOrNumber.
14404
49a54ea47bf8 comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 14403
diff changeset
  2287
     The method's name may be misleading: the receiver is not changed,
12670
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2288
     but a new number is returned. Should be named #withMask:changedTo:"
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2289
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2290
    (aBooleanOrNumber == 0 or:[aBooleanOrNumber == false]) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2291
        ^ self bitClear:mask
12670
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2292
    ].
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2293
    ^ self bitOr:mask
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2294
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2295
    "
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  2296
     (16r3fffffff changeMask:16r80 to:0) hexPrintString
12670
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2297
     (16r3fff0000 changeMask:16r80 to:1) hexPrintString
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2298
    "
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2299
!
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2300
4278
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2301
even
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2302
    "return true if the receiver is even"
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2303
9401
65f884297c68 speed up #even and #odd
Stefan Vogel <sv@exept.de>
parents: 9316
diff changeset
  2304
    ^ (self bitAt:1) == 0
4278
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2305
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2306
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2307
     16r112233445566778899 even
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2308
     16r112233445566778800 even
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2309
     1 even
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2310
     2 even
4278
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2311
    "
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2312
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2313
    "Created: / 6.6.1999 / 15:00:40 / cg"
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2314
!
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2315
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2316
highBit
19600
aca6c5fb9d70 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19553
diff changeset
  2317
    "return the bitIndex of the highest bit set. 
aca6c5fb9d70 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19553
diff changeset
  2318
     The returned bitIndex starts at 1 for the least significant bit.
6481
d5c94e93067c highBit now returns 0 if no bit is set.
Claus Gittinger <cg@exept.de>
parents: 6480
diff changeset
  2319
     Returns 0 if no bit is set."
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2320
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2321
    |byteNr highByte|
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2322
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2323
    byteNr := self digitLength.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  2324
    byteNr == 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2325
        ^ 0
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  2326
    ].
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2327
    highByte := self digitAt:byteNr.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2328
    ^ (byteNr - 1) * 8 + highByte highBit
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2329
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2330
    "
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  2331
     0 highBit
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  2332
     -1 highBit
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2333
     (1 bitShift:1) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2334
     (1 bitShift:30) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2335
     (1 bitShift:31) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2336
     (1 bitShift:32) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2337
     (1 bitShift:33) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2338
     (1 bitShift:64) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2339
     (1 bitShift:1000) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2340
     (1 bitShift:1000) negated highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2341
     ((1 bitShift:64)-1) highBit
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2342
    "
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  2343
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  2344
    "Modified: / 3.5.1999 / 09:20:57 / stefan"
2429
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2345
!
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2346
16071
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2347
leftShift:shiftCount
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2348
    "return the value of the receiver shifted left by shiftCount bits;
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2349
     leftShift if shiftCount > 0; rightShift otherwise.
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2350
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2351
     Notice: the result of bitShift: on negative receivers is not
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2352
             defined in the language standard (since the implementation
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2353
             is free to choose any internal representation for integers)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2354
             However, ST/X preserves the sign."
16071
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2355
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2356
    ^ self bitShift:shiftCount
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2357
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2358
    "
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2359
     16r100000000 leftShift:1
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2360
     16r100000000 negated leftShift:1
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2361
    "
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2362
!
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2363
2429
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2364
lowBit
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2365
    "return the bitIndex of the lowest bit set. The returned bitIndex
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2366
     starts at 1 for the least significant bit.
6480
4ff7f2af25fc lowBit now returns 0 if no bit is set.
Claus Gittinger <cg@exept.de>
parents: 6358
diff changeset
  2367
     Returns 0 if no bit is set."
2429
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2368
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2369
    |maxBytes "{ Class: SmallInteger }"
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2370
     byte|
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2371
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2372
    maxBytes := self digitLength.
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2373
    1 to:maxBytes do:[:byteIndex |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2374
        byte := self digitAt:byteIndex.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2375
        byte ~~ 0 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2376
            ^ (byteIndex-1)*8 + (byte lowBit)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2377
        ].
2429
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2378
    ].
6480
4ff7f2af25fc lowBit now returns 0 if no bit is set.
Claus Gittinger <cg@exept.de>
parents: 6358
diff changeset
  2379
    ^ 0 "/ should not happen
2429
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2380
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2381
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2382
     0 lowBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2383
     1 lowBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2384
     (1 bitShift:1) lowBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2385
     (1 bitShift:1) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2386
     (1 bitShift:30) lowBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2387
     (1 bitShift:30) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2388
     (1 bitShift:31) lowBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2389
     (1 bitShift:31) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2390
     (1 bitShift:32) lowBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2391
     (1 bitShift:32) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2392
     (1 bitShift:33) lowBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2393
     (1 bitShift:33) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2394
     (1 bitShift:64) lowBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2395
     (1 bitShift:64) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2396
     (1 bitShift:1000) lowBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2397
     (1 bitShift:1000) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2398
     ((1 bitShift:64)-1) lowBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2399
     ((1 bitShift:64)-1) highBit
2429
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2400
    "
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2401
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2402
    "Modified: 1.3.1997 / 16:54:23 / cg"
4278
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2403
!
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2404
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  2405
noMask:aMaskInteger
4643
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  2406
    "return true if no 1-bit in anInteger is 1 in the receiver"
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  2407
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  2408
    ^ (self bitAnd:aMaskInteger) == 0
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  2409
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  2410
    "
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  2411
     2r00001111 noMask:2r00000001
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  2412
     2r00001111 noMask:2r11110000
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  2413
    "
4643
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  2414
!
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  2415
4278
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2416
odd
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2417
    "return true if the receiver is odd"
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2418
9401
65f884297c68 speed up #even and #odd
Stefan Vogel <sv@exept.de>
parents: 9316
diff changeset
  2419
    ^ (self bitAt:1) == 1
4278
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2420
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2421
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2422
     16r112233445566778899 odd
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2423
     16r112233445566778800 odd
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2424
     1 odd
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2425
     2 odd
4278
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2426
    "
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2427
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2428
    "Created: / 6.6.1999 / 15:00:55 / cg"
5209
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2429
!
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2430
7155
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2431
rightShift:shiftCount
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2432
    "return the value of the receiver shifted right by shiftCount bits;
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2433
     rightShift if shiftCount > 0; leftShift otherwise.
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2434
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2435
     Notice: the result of bitShift: on negative receivers is not
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2436
             defined in the language standard (since the implementation
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2437
             is free to choose any internal representation for integers)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2438
             However, ST/X preserves the sign."
7155
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2439
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2440
    ^ self bitShift:(shiftCount negated)
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2441
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2442
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2443
     16r100000000 rightShift:1
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2444
     16r100000000 negated rightShift:1
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2445
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2446
     16r100000000 rightShift:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2447
     16r100000000 negated rightShift:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2448
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2449
     16r100000000 rightShift:3
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2450
     16r100000000 negated rightShift:3
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2451
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2452
     ((16r100000000 rightShift:1) rightShift:1) rightShift:1
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2453
     ((16r100000000 negated rightShift:1) rightShift:1) rightShift:1
7155
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2454
    "
19053
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2455
! !
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2456
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2457
!Integer methodsFor:'bit operators - indexed'!
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2458
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2459
bitAt:index
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2460
    "return the value of the index's bit (index starts at 1) as 0 or 1.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2461
     Notice: the result of bitAt: on negative receivers is not
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2462
             defined in the language standard (since the implementation
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2463
             is free to choose any internal representation for integers)"
19053
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2464
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2465
    |i "{Class: SmallInteger}"|
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2466
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2467
    i := index - 1.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2468
    i < 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2469
        ^ SubscriptOutOfBoundsError
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2470
                raiseRequestWith:index
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2471
                errorString:'index out of bounds'
19053
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2472
    ].
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2473
    ^ (self digitAt:(i // 8 + 1)) bitAt:(i \\ 8 + 1)
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2474
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2475
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2476
     1 bitAt:1                     => 1
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2477
     1 bitAt:2                     => 0
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2478
     1 bitAt:0                     index error
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2479
     2r1000100010001000100010001000100010001000100010001000 bitAt:48 => 1
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2480
     2r1000100010001000100010001000100010001000100010001000 bitAt:47 => 0
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2481
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2482
     (1 bitShift:1000) bitAt:1000  => 0
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2483
     (1 bitShift:1000) bitAt:1001  => 1
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2484
     (1 bitShift:1000) bitAt:1002  => 0
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2485
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2486
     (1 bitShift:30) bitAt:30
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2487
     (1 bitShift:30) bitAt:31
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2488
     (1 bitShift:30) bitAt:32
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2489
     (1 bitShift:31) bitAt:31
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2490
     (1 bitShift:31) bitAt:32
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2491
     (1 bitShift:31) bitAt:33
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2492
     (1 bitShift:32) bitAt:32
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2493
     (1 bitShift:32) bitAt:33
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2494
     (1 bitShift:32) bitAt:34
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2495
     (1 bitShift:64) bitAt:64
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2496
     (1 bitShift:64) bitAt:65
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2497
     (1 bitShift:64) bitAt:66
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2498
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2499
!
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2500
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2501
bitIndicesOfOneBitsDo:aBlock
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2502
    "evaluate aBlock for all indices of a 1-bit, starting with the index of the lowest bit.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2503
     The index for the least significant bit is 1."
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2504
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2505
    1 to:self digitLength do:[:i8 |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2506
        |byte|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2507
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2508
        byte := self digitAt:i8.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2509
        byte ~~ 0 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2510
            1 to:8 do:[:i |
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2511
                (byte bitAt:i) == 1 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2512
                    aBlock value:(((i8-1)*8) + i).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2513
                ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2514
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2515
        ]
19053
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2516
    ].
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2517
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2518
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2519
     1 bitIndicesOfOneBitsDo:[:i | Transcript showCR:i].
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2520
     2 bitIndicesOfOneBitsDo:[:i | Transcript showCR:i]
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2521
     4 bitIndicesOfOneBitsDo:[:i | Transcript showCR:i]
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2522
     12 bitIndicesOfOneBitsDo:[:i | Transcript showCR:i]
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2523
     127 bitIndicesOfOneBitsDo:[:i | Transcript showCR:i]
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2524
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2525
!
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2526
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2527
bitIndicesOfOneBitsReverseDo:aBlock
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2528
    "evaluate aBlock for all indices of a 1-bit, starting with the index of the highest
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2529
     and ending with the lowest bit.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2530
     The index for the least significant bit is 1."
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2531
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2532
    self digitLength downTo:1 do:[:i8 |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2533
        |byte|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2534
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2535
        byte := self digitAt:i8.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2536
        byte ~~ 0 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2537
            8 downTo:1 do:[:i |
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2538
                (byte bitAt:i) == 1 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2539
                    aBlock value:(((i8-1)*8) + i).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2540
                ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2541
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2542
        ]
19053
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2543
    ].
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2544
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2545
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2546
     1 bitIndicesOfOneBitsReverseDo:[:i | Transcript showCR:i].
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2547
     2 bitIndicesOfOneBitsReverseDo:[:i | Transcript showCR:i]
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2548
     4 bitIndicesOfOneBitsReverseDo:[:i | Transcript showCR:i]
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2549
     12 bitIndicesOfOneBitsReverseDo:[:i | Transcript showCR:i]
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2550
     127 bitIndicesOfOneBitsReverseDo:[:i | Transcript showCR:i]
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2551
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2552
!
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2553
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2554
changeBit:index to:aBooleanOrNumber
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2555
    "return a new number where the specified bit is on or off,
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2556
     depending on aBooleanOrNumber.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2557
     Bits are counted from 1 starting with the least significant.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2558
     The method's name may be misleading: the receiver is not changed,
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2559
     but a new number is returned. Should be named #withBit:changedTo:"
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2560
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2561
    (aBooleanOrNumber == 0 or:[aBooleanOrNumber == false]) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2562
        ^ self clearBit:index
19053
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2563
    ].
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2564
    ^ self setBit:index
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2565
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2566
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2567
     (16r3fffffff changeBit:31 to:1) hexPrintString
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2568
     (16r3fffffff asLargeInteger setBit:31) hexPrintString
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2569
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2570
!
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2571
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2572
clearBit:index
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2573
    "return a new integer where the specified bit is off.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2574
     Bits are counted from 1 starting with the least significant.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2575
     The method's name may be misleading: the receiver is not changed,
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2576
     but a new number is returned. Should be named #withBitCleared:"
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2577
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2578
    |n         "{ Class: SmallInteger }"
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2579
     byteIndex "{ Class: SmallInteger }"
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2580
     bitIndex  "{ Class: SmallInteger }"
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2581
     result byte|
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2582
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2583
    index <= 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2584
        ^ SubscriptOutOfBoundsSignal
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2585
                raiseRequestWith:index
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2586
                errorString:'bit index out of bounds'
19053
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2587
    ].
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2588
    byteIndex := ((index - 1) // 8) + 1.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2589
    n := self digitLength.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2590
    byteIndex > n ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2591
        ^ self
19053
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2592
    ].
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2593
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2594
    result := self simpleDeepCopy.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2595
    bitIndex := ((index - 1) \\ 8) + 1.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2596
    byte := (result digitAt:byteIndex) clearBit:bitIndex.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2597
    result digitAt:byteIndex put:byte.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2598
    (byte == 0 or:[n == byteIndex and:[n <= SmallInteger maxBytes]]) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2599
        ^ result compressed
19053
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2600
    ].
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2601
    ^ result
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2602
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2603
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2604
     3111111111 clearBit:1
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2605
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2606
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2607
    "Modified: / 28.7.1998 / 18:35:50 / cg"
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2608
!
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2609
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2610
invertBit:index
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2611
    "return a new number where the specified bit is inverted.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2612
     Bits are counted from 1 starting with the least significant.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2613
     The method's name may be misleading: the receiver is not changed,
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2614
     but a new number is returned. Should be named #withBitInverted:"
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2615
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2616
    index <= 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2617
        ^ SubscriptOutOfBoundsSignal
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2618
                raiseRequestWith:index
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2619
                errorString:'index out of bounds'
19053
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2620
    ].
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2621
    ^ self bitXor:(1 bitShift:index-1)
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2622
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2623
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2624
     0 invertBit:3         => 4 (2r100)
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2625
     0 invertBit:48        => 140737488355328 (2r1000.....000)
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2626
     ((0 invertBit:99) invertBit:100) printStringRadix:2
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2627
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2628
!
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2629
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2630
isBitClear:index
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2631
    "return true if the index' bit is clear; false otherwise.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2632
     Bits are counted from 1 starting with the least significant."
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2633
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2634
    ^ (self bitAt:index) == 0
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2635
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2636
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2637
     5 isBitClear:1       => false
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2638
     5 isBitClear:2       => true
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2639
     5 isBitClear:3       => false
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2640
     5 isBitClear:4       => true
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2641
     5 isBitClear:10000   => true
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2642
     2r0101 isBitClear:2  => true
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2643
     2r0101 isBitClear:1  => false
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2644
     2r0101 isBitClear:0  index error
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2645
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2646
!
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2647
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2648
isBitSet:index
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2649
    "return true if the index' bit is set; false otherwise.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2650
     Bits are counted from 1 starting with the least significant."
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2651
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2652
    ^ (self bitAt:index) ~~ 0
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2653
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2654
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2655
     5 isBitSet:3       => true
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2656
     2r0101 isBitSet:2  => false
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2657
     2r0101 isBitSet:1  => true
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2658
     2r0101 isBitSet:0  index error
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2659
    "
7155
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2660
!
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2661
5209
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2662
setBit:index
8937
4f2508548327 comment
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  2663
    "return a new integer, where the specified bit is on.
5209
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2664
     Bits are counted from 1 starting with the least significant.
14404
49a54ea47bf8 comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 14403
diff changeset
  2665
     The method's name may be misleading: the receiver is not changed,
11499
fa02ab9a83f0 comment
Claus Gittinger <cg@exept.de>
parents: 11496
diff changeset
  2666
     but a new number is returned. Should be named #withBitSet:"
5209
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2667
5496
338c81a04468 index bounds in bit operations;
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
  2668
    index <= 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2669
        ^ SubscriptOutOfBoundsSignal
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2670
                raiseRequestWith:index
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2671
                errorString:'index out of bounds'
5496
338c81a04468 index bounds in bit operations;
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
  2672
    ].
5209
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2673
    ^ self bitOr:(1 bitShift:index-1)
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2674
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2675
    "
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2676
     0 setBit:3         => 4 (2r100)
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2677
     0 setBit:48        => 140737488355328 (2r1000.....000)
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2678
     ((0 setBit:99) setBit:100) printStringRadix:2
5209
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2679
    "
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2680
! !
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2681
3890
a024811ed304 added #digitByteLength
Claus Gittinger <cg@exept.de>
parents: 3884
diff changeset
  2682
!Integer methodsFor:'byte access'!
a024811ed304 added #digitByteLength
Claus Gittinger <cg@exept.de>
parents: 3884
diff changeset
  2683
12784
3bc5946ade11 added: #byteAt:
Stefan Vogel <sv@exept.de>
parents: 12670
diff changeset
  2684
byteAt:anIndex
3bc5946ade11 added: #byteAt:
Stefan Vogel <sv@exept.de>
parents: 12670
diff changeset
  2685
    "compatibility with ByteArrays etc."
3bc5946ade11 added: #byteAt:
Stefan Vogel <sv@exept.de>
parents: 12670
diff changeset
  2686
3bc5946ade11 added: #byteAt:
Stefan Vogel <sv@exept.de>
parents: 12670
diff changeset
  2687
    ^ self digitAt:anIndex
3bc5946ade11 added: #byteAt:
Stefan Vogel <sv@exept.de>
parents: 12670
diff changeset
  2688
3bc5946ade11 added: #byteAt:
Stefan Vogel <sv@exept.de>
parents: 12670
diff changeset
  2689
    "
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2690
        12345678 byteAt:2
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2691
        12345678 digitBytes at:2
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2692
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2693
        -12345678 byteAt:2
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2694
        -12345678 digitBytes at:2
12784
3bc5946ade11 added: #byteAt:
Stefan Vogel <sv@exept.de>
parents: 12670
diff changeset
  2695
    "
3bc5946ade11 added: #byteAt:
Stefan Vogel <sv@exept.de>
parents: 12670
diff changeset
  2696
!
3bc5946ade11 added: #byteAt:
Stefan Vogel <sv@exept.de>
parents: 12670
diff changeset
  2697
19130
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2698
byteSwapped32
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2699
    "a fallback, in case unimplemented in concrete classes.
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2700
     Not actually used"
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2701
    
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2702
    ^ ((self digitAt:1) bitShift:24)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2703
    + ((self digitAt:2) bitShift:16)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2704
    + ((self digitAt:3) bitShift:8)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2705
    + (self digitAt:4)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2706
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2707
    "
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2708
     16r12345678901234567890 byteSwapped32
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2709
    "
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2710
!
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2711
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2712
byteSwapped64
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2713
    "a fallback, in case unimplemented in concrete classes.
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2714
     Not actually used"
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2715
    
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2716
    ^ ((self digitAt:1) bitShift:56)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2717
    + ((self digitAt:2) bitShift:48)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2718
    + ((self digitAt:3) bitShift:40)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2719
    + ((self digitAt:4) bitShift:32)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2720
    + ((self digitAt:5) bitShift:24)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2721
    + ((self digitAt:6) bitShift:16)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2722
    + ((self digitAt:7) bitShift:8)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2723
    + (self digitAt:8)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2724
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2725
    "
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2726
     16r1234567890123456789 byteSwapped64 hexPrintString
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2727
    "
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2728
!
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2729
3890
a024811ed304 added #digitByteLength
Claus Gittinger <cg@exept.de>
parents: 3884
diff changeset
  2730
digitByteLength
19327
723b235f0980 #DOCUMENTATION
Stefan Vogel <sv@exept.de>
parents: 19319
diff changeset
  2731
    <resource: #obsolete>
19316
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2732
    "return the number bytes required for a 2's complement
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2733
     binary representation of this Integer."
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2734
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2735
    self obsoleteMethodWarning:'use signedDigitLength - attention: return value fixed'.
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2736
    ^ self signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2737
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2738
    "
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2739
     -127 digitByteLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2740
     -128 digitByteLength
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2741
     -129 digitByteLength
19315
e11b9d45bb9c #DOCUMENTATION
Stefan Vogel <sv@exept.de>
parents: 19276
diff changeset
  2742
     -32769 digitByteLength
e11b9d45bb9c #DOCUMENTATION
Stefan Vogel <sv@exept.de>
parents: 19276
diff changeset
  2743
     32768 digitByteLength
3890
a024811ed304 added #digitByteLength
Claus Gittinger <cg@exept.de>
parents: 3884
diff changeset
  2744
    "
10488
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2745
!
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2746
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2747
digitBytes
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  2748
    "return a byteArray filled with the receiver's bits
10488
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2749
     (8 bits of the absolute value per element),
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2750
     least significant byte is first"
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2751
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2752
    ^ self subclassResponsibility
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2753
!
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2754
15567
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  2755
digitBytesMSB
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  2756
    "return a byteArray filled with the receiver's bits
15567
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  2757
     (8 bits of the absolute value per element),
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  2758
     most significant byte is first"
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  2759
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  2760
    ^ self subclassResponsibility
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  2761
!
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  2762
10488
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2763
digitBytesMSB:msbFlag
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  2764
    "return a byteArray filled with the receiver's bits
10488
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2765
     (8 bits of the absolute value per element),
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2766
     if msbflag = true, most significant byte is first,
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2767
     otherwise least significant byte is first"
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2768
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2769
    msbFlag ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2770
        ^ self digitBytesMSB.
10488
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2771
    ].
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2772
    ^ self digitBytes
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2773
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2774
    "
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2775
      16r12 digitBytesMSB:true
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2776
      16r1234 digitBytesMSB:true
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2777
      16r1234 digitBytesMSB:false
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2778
      16r12345678 digitBytesMSB:true
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2779
      16r12345678 digitBytesMSB:false
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2780
    "
14166
ea350ed3d6a9 added: #swapBytes
Stefan Vogel <sv@exept.de>
parents: 14098
diff changeset
  2781
!
ea350ed3d6a9 added: #swapBytes
Stefan Vogel <sv@exept.de>
parents: 14098
diff changeset
  2782
19316
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2783
signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2784
    "return the number bytes required for a 2's complement
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2785
     binary representation of this Integer.
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2786
     I.e. the number of bytes from which we have to sign extent the highest bit"    
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2787
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2788
    |absLen "{ Class: SmallInteger }" |
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2789
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2790
    self >= 0 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2791
        absLen := self digitLength.
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2792
        (self digitByteAt:absLen) >= 16r80 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2793
            ^ absLen + 1.
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2794
        ].
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2795
        ^ absLen.
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2796
    ].
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2797
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2798
    absLen := self negated digitLength.
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2799
    (self digitByteAt:absLen) < 16r80 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2800
            ^ absLen + 1
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2801
    ].
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2802
    ^ absLen
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2803
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2804
    "
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2805
     0 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2806
     1 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2807
     126 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2808
     127 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2809
     128 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2810
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2811
     255 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2812
     256 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2813
     257 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2814
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2815
     32767 signedDigitLength    
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2816
     32768 signedDigitLength    
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2817
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2818
     -1 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2819
     -127 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2820
     -128 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2821
     -129 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2822
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2823
     -32767 signedDigitLength    
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2824
     -32768 signedDigitLength    
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2825
     -32769 signedDigitLength    
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2826
    "
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2827
!
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2828
14166
ea350ed3d6a9 added: #swapBytes
Stefan Vogel <sv@exept.de>
parents: 14098
diff changeset
  2829
swapBytes
16886
247352d5de0f class: Integer
Stefan Vogel <sv@exept.de>
parents: 16884
diff changeset
  2830
    "swap bytes pair-wise in a positive integer
247352d5de0f class: Integer
Stefan Vogel <sv@exept.de>
parents: 16884
diff changeset
  2831
     i.e. a.b.c.d -> b.a.d.c
247352d5de0f class: Integer
Stefan Vogel <sv@exept.de>
parents: 16884
diff changeset
  2832
     Swapping of negative integers is undefined and therefore not supported."
16884
1d8ce66b2547 class: Integer
Stefan Vogel <sv@exept.de>
parents: 16874
diff changeset
  2833
1d8ce66b2547 class: Integer
Stefan Vogel <sv@exept.de>
parents: 16874
diff changeset
  2834
    |digitBytes|
1d8ce66b2547 class: Integer
Stefan Vogel <sv@exept.de>
parents: 16874
diff changeset
  2835
1d8ce66b2547 class: Integer
Stefan Vogel <sv@exept.de>
parents: 16874
diff changeset
  2836
    self negative ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2837
        RangeError raiseWith:self errorString:'negative numbers are not supported in #swapBytes'.
16884
1d8ce66b2547 class: Integer
Stefan Vogel <sv@exept.de>
parents: 16874
diff changeset
  2838
    ].
1d8ce66b2547 class: Integer
Stefan Vogel <sv@exept.de>
parents: 16874
diff changeset
  2839
    digitBytes := self digitBytes.
1d8ce66b2547 class: Integer
Stefan Vogel <sv@exept.de>
parents: 16874
diff changeset
  2840
    digitBytes size odd ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2841
        "ByteArray<<#swapBytes needs even number of bytes.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2842
         Add 0 to the most significant position (the end)"
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2843
        digitBytes := digitBytes copyWith:0.
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  2844
16884
1d8ce66b2547 class: Integer
Stefan Vogel <sv@exept.de>
parents: 16874
diff changeset
  2845
    ].
1d8ce66b2547 class: Integer
Stefan Vogel <sv@exept.de>
parents: 16874
diff changeset
  2846
    ^ (LargeInteger digitBytes:digitBytes swapBytes) compressed
14166
ea350ed3d6a9 added: #swapBytes
Stefan Vogel <sv@exept.de>
parents: 14098
diff changeset
  2847
ea350ed3d6a9 added: #swapBytes
Stefan Vogel <sv@exept.de>
parents: 14098
diff changeset
  2848
    "
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2849
        16rFFEE2211 swapBytes hexPrintString
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2850
        16rFFEEAA2211 swapBytes hexPrintString
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2851
        16r2211 swapBytes hexPrintString
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2852
        16rFF3FFFFF swapBytes
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2853
        self assert:(SmallInteger maxVal swapBytes swapBytes == SmallInteger maxVal)
14166
ea350ed3d6a9 added: #swapBytes
Stefan Vogel <sv@exept.de>
parents: 14098
diff changeset
  2854
    "
3890
a024811ed304 added #digitByteLength
Claus Gittinger <cg@exept.de>
parents: 3884
diff changeset
  2855
! !
a024811ed304 added #digitByteLength
Claus Gittinger <cg@exept.de>
parents: 3884
diff changeset
  2856
5238
f7a816a660a3 categories
Claus Gittinger <cg@exept.de>
parents: 5210
diff changeset
  2857
!Integer methodsFor:'coercing & converting'!
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2858
1888
463d49ca22e3 fixedPoint support
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2859
asFixedPoint
463d49ca22e3 fixedPoint support
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2860
    "return the receiver as a fixedPoint number"
463d49ca22e3 fixedPoint support
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2861
6640
2de8925ad2cd fixed asFixedPoint (did return int due to reduce).
Claus Gittinger <cg@exept.de>
parents: 6639
diff changeset
  2862
    ^ FixedPoint basicNew
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2863
        setNumerator:self denominator:1 scale:1
1888
463d49ca22e3 fixedPoint support
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2864
463d49ca22e3 fixedPoint support
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2865
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2866
     100 asFixedPoint
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2867
     100 asFixedPoint + 0.1 asFixedPoint
1888
463d49ca22e3 fixedPoint support
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2868
    "
463d49ca22e3 fixedPoint support
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2869
463d49ca22e3 fixedPoint support
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2870
    "Modified: 5.11.1996 / 15:13:17 / cg"
463d49ca22e3 fixedPoint support
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2871
!
463d49ca22e3 fixedPoint support
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2872
2141
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2873
asFixedPoint:scale
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2874
    "return the receiver as fixedPoint number, with the given number
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2875
     of post-decimal-point digits."
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2876
6639
d88a51b081ae fixed asFixedPoint (did return int due to reduce).
Claus Gittinger <cg@exept.de>
parents: 6635
diff changeset
  2877
    ^ FixedPoint basicNew
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2878
        setNumerator:self denominator:1 scale:scale
2141
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2879
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2880
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2881
     100 asFixedPoint:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2882
     100 asFixedPoint + (0.1 asFixedPoint:2)
2141
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2883
    "
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2884
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2885
    "Modified: 10.1.1997 / 20:00:08 / cg"
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2886
!
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2887
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2888
asFloat
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2889
    "return a Float with same value as myself.
11240
4ce9c8fa3d37 comment
Claus Gittinger <cg@exept.de>
parents: 11223
diff changeset
  2890
     Since floats have a limited precision, you usually loose bits when doing this."
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2891
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2892
    ^ Float fromInteger:self
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2893
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2894
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2895
     1234567890 asFloat
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2896
     1234567890 asFloat asInteger
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2897
     12345678901234567890 asFloat
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2898
     12345678901234567890 asFloat asInteger
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2899
    "
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2900
!
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2901
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2902
asFraction
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2903
    "return a Fraction with same value as receiver"
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2904
2794
862ee34a4821 when coercing an integer, do not reduce the result.
Claus Gittinger <cg@exept.de>
parents: 2793
diff changeset
  2905
    ^ Fraction basicNew setNumerator:self denominator:1
862ee34a4821 when coercing an integer, do not reduce the result.
Claus Gittinger <cg@exept.de>
parents: 2793
diff changeset
  2906
862ee34a4821 when coercing an integer, do not reduce the result.
Claus Gittinger <cg@exept.de>
parents: 2793
diff changeset
  2907
    "Modified: 28.7.1997 / 19:26:06 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2908
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2909
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2910
asInteger
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2911
    "return the receiver truncated towards zero -
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2912
     for integers this is self"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2913
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2914
    ^ self
1337
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  2915
!
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  2916
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2917
asLargeFloat
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2918
    "return a LargeFloat with same value as myself.
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2919
     Since largeFloats have a limited precision, you usually loose bits when
23053
624d156e698c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22600
diff changeset
  2920
     doing this.
624d156e698c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22600
diff changeset
  2921
     If the largeFloat class is not present, a regular float is returned"
624d156e698c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22600
diff changeset
  2922
23055
321a26366ce6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23053
diff changeset
  2923
    ^ (LargeFloat ? LongFloat ? Float) fromInteger:self
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2924
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2925
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2926
     1234567890 asLargeFloat
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2927
     1234567890 asLargeFloat asInteger
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2928
     12345678901234567890 asLargeFloat
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2929
     12345678901234567890 asLargeFloat asInteger
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2930
    "
23053
624d156e698c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22600
diff changeset
  2931
23055
321a26366ce6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23053
diff changeset
  2932
    "Modified: / 07-06-2018 / 16:28:16 / Claus Gittinger"
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2933
!
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2934
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2935
asLongFloat
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2936
    "return a LongFloat with same value as myself.
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2937
     Since longFloats have a limited precision, you usually loose bits when
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2938
     doing this."
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2939
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2940
    ^ LongFloat fromInteger:self
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2941
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2942
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2943
     1234567890 asFloat
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2944
     1234567890 asFloat asInteger
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2945
     12345678901234567890 asFloat
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2946
     12345678901234567890 asFloat asInteger
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2947
    "
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2948
!
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2949
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  2950
asModuloNumber
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  2951
    "return a precomputed modulo number"
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  2952
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  2953
    ^ ModuloNumber modulus:self.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  2954
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  2955
    "Created: / 3.5.1999 / 14:48:03 / stefan"
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  2956
!
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  2957
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2958
asShortFloat
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2959
    "return a ShortFloat with same value as receiver"
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2960
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2961
    ^ ShortFloat fromInteger:self
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2962
!
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2963
21822
7f00cd69b534 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21774
diff changeset
  2964
coerce:aNumber
7f00cd69b534 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21774
diff changeset
  2965
    "convert the argument aNumber into an instance of the receiver's class and return it."
7f00cd69b534 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21774
diff changeset
  2966
7f00cd69b534 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21774
diff changeset
  2967
    ^ aNumber asInteger
7f00cd69b534 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21774
diff changeset
  2968
!
7f00cd69b534 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21774
diff changeset
  2969
14043
045fd447ab4d added: #signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 13993
diff changeset
  2970
signExtended24BitValue
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  2971
    "return an integer from sign-extending the 24'th bit.
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  2972
     i.e. interprets the lowest 24 bits as a signed integer,
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  2973
     ignoring higher bits.
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  2974
     This may be useful for communication interfaces"
14043
045fd447ab4d added: #signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 13993
diff changeset
  2975
045fd447ab4d added: #signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 13993
diff changeset
  2976
    ^ (self bitAnd:16rFFFFFF) signExtended24BitValue
045fd447ab4d added: #signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 13993
diff changeset
  2977
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  2978
    "
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  2979
     16r800000 signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  2980
     16r7FFFFF signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  2981
     16rFFFFFF signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  2982
    "
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  2983
14043
045fd447ab4d added: #signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 13993
diff changeset
  2984
    "Modified: / 07-05-1996 / 09:31:57 / cg"
045fd447ab4d added: #signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 13993
diff changeset
  2985
    "Created: / 05-03-2012 / 14:37:55 / cg"
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  2986
    "Modified (comment): / 26-02-2016 / 19:39:52 / cg"
14043
045fd447ab4d added: #signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 13993
diff changeset
  2987
!
045fd447ab4d added: #signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 13993
diff changeset
  2988
1337
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  2989
signExtendedByteValue
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  2990
    "return an integer from sign-extending the 8'th bit.
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  2991
     i.e. interprets the lowest 8 bits as a signed integer,
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  2992
     ignoring higher bits.
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  2993
     This may be useful for communication interfaces"
1337
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  2994
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  2995
    ^ (self bitAnd:16rFF) signExtendedByteValue
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  2996
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  2997
    "
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  2998
     16r80 signExtendedByteValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  2999
     16r7F signExtendedByteValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3000
     16rFF signExtendedByteValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3001
    "
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3002
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3003
    "Created: / 07-05-1996 / 09:31:52 / cg"
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3004
    "Modified (comment): / 26-02-2016 / 19:39:46 / cg"
1337
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  3005
!
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  3006
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3007
signExtendedFromBit:bitNr
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3008
    "return an integer from sign-extending the n'th bit.
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3009
     i.e. interprets the lowest n bits as a signed integer,
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3010
     ignoring higher bits.
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3011
     The bit numbering is 1-based (i.e. the lowest bit has bitNr 1)    
22073
d4ac55497643 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22072
diff changeset
  3012
     This may be useful for communication interfaces.
d4ac55497643 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22072
diff changeset
  3013
     (kind of the reverse operation to asUnsigned:)."
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3014
22070
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3015
    ^ self signExtendedFromMaskBit:(1 bitShift:bitNr-1)
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3016
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3017
    "
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3018
     2r111000111 signExtendedFromBit:3 -> 2r11111....111 -> -1 
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3019
     2r111000110 signExtendedFromBit:3 -> 2r11111....110 -> -2 
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3020
     2r111000101 signExtendedFromBit:3 -> 2r11111....101 -> -3   
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3021
     2r111000100 signExtendedFromBit:3 -> 2r11111....100 -> -4 
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3022
     2r111000000 signExtendedFromBit:3 -> 2r00000....000 -> 0   
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3023
     2r111000011 signExtendedFromBit:3 -> 2r00000....011 -> 3  
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3024
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3025
     16r800008 signExtendedFromBit:4 -> -8 
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3026
     16r7FFF07 signExtendedFromBit:4 -> 7 
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3027
     16r7FFF0F signExtendedFromBit:4 -> -1
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3028
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3029
     16rFFFFFF signExtendedFromBit:8 -> -1
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3030
     16rFFFF7F signExtendedFromBit:8 -> 127
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3031
     16rFFFF80 signExtendedFromBit:8 -> -128
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3032
    "
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3033
22073
d4ac55497643 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22072
diff changeset
  3034
    "Modified (comment): / 21-07-2017 / 15:13:55 / cg"
22070
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3035
!
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3036
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3037
signExtendedFromMaskBit:highBitMask
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3038
    "return an integer from sign-extending the bit defined by highMaskBit,
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3039
     which MUST be a single bit (otherwise, you'll get garbage).
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3040
     i.e. interprets the lowest n bits as a signed integer,
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3041
     ignoring higher bits.
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3042
     This may be useful for communication interfaces and to expand bitfields into
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3043
     signed values"
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3044
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3045
    |masked|
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  3046
22070
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3047
    masked := self bitAnd:(highBitMask-1).
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3048
    (self bitTest:highBitMask) ifTrue:[
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3049
        ^ masked - highBitMask
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  3050
    ].
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3051
    ^ masked
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3052
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3053
    "
22070
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3054
     2r111000111 signExtendedFromMaskBit:2r100 -> 2r11111....111 -> -1 
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3055
     2r111000110 signExtendedFromMaskBit:2r100 -> 2r11111....110 -> -2 
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3056
     2r111000101 signExtendedFromMaskBit:2r100 -> 2r11111....101 -> -3   
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3057
     2r111000100 signExtendedFromMaskBit:2r100 -> 2r11111....100 -> -4 
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3058
     2r111000000 signExtendedFromMaskBit:2r100 -> 2r00000....000 -> 0   
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3059
     2r111000011 signExtendedFromMaskBit:2r100 -> 2r00000....011 -> 3  
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3060
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3061
     16r800008 signExtendedFromMaskBit:2r1000 -> -8 
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3062
     16r7FFF07 signExtendedFromMaskBit:2r1000 -> 7 
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3063
     16r7FFF0F signExtendedFromMaskBit:2r1000 -> -1
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3064
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3065
     16rFFFFFF signExtendedFromMaskBit:2r10000000 -> -1
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3066
     16rFFFF7F signExtendedFromMaskBit:2r10000000 -> 127
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3067
     16rFFFF80 signExtendedFromMaskBit:2r10000000 -> -128
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3068
    "
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3069
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3070
    "Created: / 21-07-2017 / 14:52:12 / cg"
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3071
!
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3072
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3073
signExtendedLongLongValue
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3074
    "return an integer from sign-extending the 64'th bit.
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3075
     i.e. interprets the lowest 64 bits as a signed integer,
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3076
     ignoring higher bits.
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3077
     This may be useful for communication interfaces"
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3078
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3079
    (self bitTest:16r8000000000000000) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3080
        ^ (self bitAnd:16rFFFFFFFFFFFFFFFF)-16r10000000000000000
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  3081
    ].
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3082
    ^ (self bitAnd:16r7FFFFFFFFFFFFFFF)
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3083
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3084
    "
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3085
     16r1238000000000000000 signExtendedLongLongValue
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3086
     16r1237FFFFFFFFFFFFFFF signExtendedLongLongValue
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3087
     16r123FFFFFFFFFFFFFFFF signExtendedLongLongValue
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3088
    "
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3089
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3090
    "Modified (comment): / 26-02-2016 / 19:38:55 / cg"
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3091
!
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3092
15084
910b4913067b class: Integer
Claus Gittinger <cg@exept.de>
parents: 14967
diff changeset
  3093
signExtendedLongValue
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3094
    "return an integer from sign-extending the 32'th bit.
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3095
     i.e. interprets the lowest 32 bits as a signed integer,
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3096
     ignoring higher bits.
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3097
     This may be useful for communication interfaces"
15084
910b4913067b class: Integer
Claus Gittinger <cg@exept.de>
parents: 14967
diff changeset
  3098
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3099
    (self bitTest:16r80000000) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3100
        ^ (self bitAnd:16rFFFFFFFF) - 16r100000000
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  3101
    ].
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3102
    ^ (self bitAnd:16r7FFFFFFF)
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3103
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3104
    "
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3105
     16r80000000 signExtendedLongValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3106
     16r7FFFFFFF signExtendedLongValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3107
     16rFFFFFFFF signExtendedLongValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3108
    "
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3109
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3110
    "Modified (comment): / 26-02-2016 / 19:39:09 / cg"
15084
910b4913067b class: Integer
Claus Gittinger <cg@exept.de>
parents: 14967
diff changeset
  3111
!
910b4913067b class: Integer
Claus Gittinger <cg@exept.de>
parents: 14967
diff changeset
  3112
1337
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  3113
signExtendedShortValue
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3114
    "return an integer from sign-extending the 16'th bit.
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3115
     i.e. interprets the lowest 16 bits as a signed integer,
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3116
     ignoring higher bits.
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3117
     This may be useful for communication interfaces"
1337
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  3118
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  3119
    ^ (self bitAnd:16rFFFF) signExtendedShortValue
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  3120
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3121
    "
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3122
     16r8000 signExtendedShortValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3123
     16r7FFF signExtendedShortValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3124
     16rFFFF signExtendedShortValue
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3125
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3126
     16r1238000 signExtendedShortValue
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3127
     16r1237FFF signExtendedShortValue
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3128
     16r123FFFF signExtendedShortValue
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3129
    "
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3130
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3131
    "Modified: / 07-05-1996 / 09:31:57 / cg"
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3132
    "Modified (comment): / 26-02-2016 / 19:39:37 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3133
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3134
1976
f6e7094cd3e4 Integer>>hash returns a value clamped to the SmallInteger range
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
  3135
!Integer methodsFor:'comparing'!
f6e7094cd3e4 Integer>>hash returns a value clamped to the SmallInteger range
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
  3136
f6e7094cd3e4 Integer>>hash returns a value clamped to the SmallInteger range
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
  3137
hash
f6e7094cd3e4 Integer>>hash returns a value clamped to the SmallInteger range
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
  3138
    "redefined to return smallInteger hashValues"
f6e7094cd3e4 Integer>>hash returns a value clamped to the SmallInteger range
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
  3139
19553
a1e1e8901461 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 19455
diff changeset
  3140
    ^ self bitAnd:SmallInteger maxVal.
1976
f6e7094cd3e4 Integer>>hash returns a value clamped to the SmallInteger range
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
  3141
3298
bf837fee7a15 Do not return negative hash values.
Stefan Vogel <sv@exept.de>
parents: 3188
diff changeset
  3142
    "
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3143
        -20000000000000 hash
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3144
         20000000000000 hash
3298
bf837fee7a15 Do not return negative hash values.
Stefan Vogel <sv@exept.de>
parents: 3188
diff changeset
  3145
    "
1976
f6e7094cd3e4 Integer>>hash returns a value clamped to the SmallInteger range
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
  3146
3298
bf837fee7a15 Do not return negative hash values.
Stefan Vogel <sv@exept.de>
parents: 3188
diff changeset
  3147
    "Created: / 14.11.1996 / 12:12:27 / cg"
bf837fee7a15 Do not return negative hash values.
Stefan Vogel <sv@exept.de>
parents: 3188
diff changeset
  3148
    "Modified: / 24.2.1998 / 10:07:29 / stefan"
1976
f6e7094cd3e4 Integer>>hash returns a value clamped to the SmallInteger range
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
  3149
! !
f6e7094cd3e4 Integer>>hash returns a value clamped to the SmallInteger range
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
  3150
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  3151
12978
6899c32d29a9 added: #addDependent:
Claus Gittinger <cg@exept.de>
parents: 12976
diff changeset
  3152
!Integer methodsFor:'dependents access'!
6899c32d29a9 added: #addDependent:
Claus Gittinger <cg@exept.de>
parents: 12976
diff changeset
  3153
6899c32d29a9 added: #addDependent:
Claus Gittinger <cg@exept.de>
parents: 12976
diff changeset
  3154
addDependent:anObject
23556
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3155
    "It doesn't make sense to add dependents to a shared instance.
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3156
     Silently ignore ..."
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3157
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3158
"/    Transcript show:'*** trying to make dependent on an integer: '.
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3159
"/    thisContext sender printOn:Transcript. Transcript cr.
12978
6899c32d29a9 added: #addDependent:
Claus Gittinger <cg@exept.de>
parents: 12976
diff changeset
  3160
6899c32d29a9 added: #addDependent:
Claus Gittinger <cg@exept.de>
parents: 12976
diff changeset
  3161
    "Created: / 28-07-2010 / 20:29:00 / cg"
23556
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3162
    "Modified: / 03-12-2018 / 17:48:53 / Stefan Vogel"
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3163
!
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3164
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3165
onChangeSend:selector to:someOne
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3166
    "It doesn't make sense to add dependents to a shared instance.
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3167
     Silently ignore ..."
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3168
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3169
"/    Transcript show:'*** trying to make dependent on an integer: '.
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3170
"/    thisContext sender printOn:Transcript. Transcript cr.
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3171
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3172
    "Created: / 30-11-2018 / 18:02:50 / Stefan Vogel"
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3173
    "Modified (comment): / 03-12-2018 / 17:49:05 / Stefan Vogel"
12978
6899c32d29a9 added: #addDependent:
Claus Gittinger <cg@exept.de>
parents: 12976
diff changeset
  3174
! !
6899c32d29a9 added: #addDependent:
Claus Gittinger <cg@exept.de>
parents: 12976
diff changeset
  3175
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3176
!Integer methodsFor:'double dispatching'!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3177
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3178
differenceFromFraction:aFraction
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3179
    "sent when a fraction does not know how to subtract the receiver, an integer"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3180
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3181
    |d|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3182
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3183
    d := aFraction denominator.
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3184
    ^ aFraction class
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3185
        numerator:(aFraction numerator - (self * d))
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3186
        denominator:d
2793
e40dedf51177 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2745
diff changeset
  3187
e40dedf51177 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2745
diff changeset
  3188
    "Modified: 28.7.1997 / 19:08:30 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3189
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3190
11517
e949ec17d9fc double dispatch for time-difference
sr
parents: 11510
diff changeset
  3191
differenceFromTimestamp:aTimestamp
e949ec17d9fc double dispatch for time-difference
sr
parents: 11510
diff changeset
  3192
    "I am to be interpreted as seconds, return the timestamp this number of seconds
e949ec17d9fc double dispatch for time-difference
sr
parents: 11510
diff changeset
  3193
     before aTimestamp"
e949ec17d9fc double dispatch for time-difference
sr
parents: 11510
diff changeset
  3194
e949ec17d9fc double dispatch for time-difference
sr
parents: 11510
diff changeset
  3195
    ^ aTimestamp subtractSeconds:self.
e949ec17d9fc double dispatch for time-difference
sr
parents: 11510
diff changeset
  3196
e949ec17d9fc double dispatch for time-difference
sr
parents: 11510
diff changeset
  3197
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3198
     Timestamp now subtractSeconds:100
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3199
     100 differenceFromTimestamp:Timestamp now
11517
e949ec17d9fc double dispatch for time-difference
sr
parents: 11510
diff changeset
  3200
    "
e949ec17d9fc double dispatch for time-difference
sr
parents: 11510
diff changeset
  3201
!
e949ec17d9fc double dispatch for time-difference
sr
parents: 11510
diff changeset
  3202
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3203
equalFromFraction:aFraction
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3204
    "that should never be invoked, as fractions are always normalized to integers
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3205
     if resulting from an arithmetic operation.
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3206
     However, this implementation is for subclasses (i.e. fixed point) and also
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3207
     allows comparing unnormalized fractions as might appear within the fraction class"
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3208
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3209
    |denominator numerator|
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3210
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3211
    denominator := aFraction denominator.
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3212
    numerator := aFraction numerator.
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3213
    (denominator == 1) ifFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3214
        ^ numerator = (self * denominator)
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3215
    ].
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3216
    ^ numerator = self
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3217
!
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3218
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3219
productFromFraction:aFraction
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3220
    "sent when a fraction does not know how to multiply the receiver, an integer"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3221
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3222
    ^ aFraction class
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3223
        numerator:(self * aFraction numerator)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3224
        denominator:aFraction denominator
2793
e40dedf51177 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2745
diff changeset
  3225
e40dedf51177 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2745
diff changeset
  3226
    "Modified: 28.7.1997 / 19:08:27 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3227
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3228
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3229
quotientFromFraction:aFraction
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  3230
    "Return the quotient of the argument, aFraction and the receiver.
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  3231
     Sent when aFraction does not know how to divide by the receiver."
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3232
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3233
    ^ aFraction class
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3234
        numerator:aFraction numerator
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3235
        denominator:(self * aFraction denominator)
2793
e40dedf51177 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2745
diff changeset
  3236
e40dedf51177 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2745
diff changeset
  3237
    "Modified: 28.7.1997 / 19:08:23 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3238
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3239
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3240
sumFromFraction:aFraction
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3241
    "sent when a fraction does not know how to add the receiver, an integer"
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3242
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3243
    |d|
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3244
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3245
    d := aFraction denominator.
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3246
    ^ aFraction class
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3247
        numerator:(aFraction numerator + (self * d))
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3248
        denominator:d
2793
e40dedf51177 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2745
diff changeset
  3249
e40dedf51177 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2745
diff changeset
  3250
    "Modified: 28.7.1997 / 19:08:11 / cg"
10681
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3251
!
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3252
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3253
sumFromTimestamp:aTimestamp
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3254
    "I am to be interpreted as seconds, return the timestamp this number of seconds
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3255
     after aTimestamp"
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3256
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3257
    ^ aTimestamp addSeconds:self.
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3258
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3259
    "
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3260
     Timestamp now addSeconds:100
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3261
     100 sumFromTimestamp:Timestamp now
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3262
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3263
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3264
2428
d54efc515824 better gcd for large integers
Claus Gittinger <cg@exept.de>
parents: 2408
diff changeset
  3265
!Integer methodsFor:'helpers'!
d54efc515824 better gcd for large integers
Claus Gittinger <cg@exept.de>
parents: 2408
diff changeset
  3266
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3267
gcd_helper:anInteger
2428
d54efc515824 better gcd for large integers
Claus Gittinger <cg@exept.de>
parents: 2408
diff changeset
  3268
    "a helper for the greatest common divisor of the receiver and anInteger.
d54efc515824 better gcd for large integers
Claus Gittinger <cg@exept.de>
parents: 2408
diff changeset
  3269
     Knuth's algorithm for large positive integers, with receiver being
d54efc515824 better gcd for large integers
Claus Gittinger <cg@exept.de>
parents: 2408
diff changeset
  3270
     larger than the arg."
d54efc515824 better gcd for large integers
Claus Gittinger <cg@exept.de>
parents: 2408
diff changeset
  3271
19251
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3272
    | a b aLowBit bLowBit shift t |
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3273
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3274
    a := self.
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3275
    b := anInteger.
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3276
19251
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3277
    aLowBit := a lowBit - 1.
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3278
    bLowBit := b lowBit - 1.
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3279
    shift := aLowBit min:bLowBit.
22213
8b482a0c44a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22166
diff changeset
  3280
    b := b rightShift:bLowBit.
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3281
    [a = 0] whileFalse:[
22213
8b482a0c44a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22166
diff changeset
  3282
        a := a rightShift:aLowBit.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3283
        a < b ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3284
            t := a. a := b. b := t
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3285
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3286
        a := a - b.
19251
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3287
        aLowBit := a lowBit - 1.
2428
d54efc515824 better gcd for large integers
Claus Gittinger <cg@exept.de>
parents: 2408
diff changeset
  3288
    ].
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3289
    ^ b bitShift:shift
2428
d54efc515824 better gcd for large integers
Claus Gittinger <cg@exept.de>
parents: 2408
diff changeset
  3290
22213
8b482a0c44a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22166
diff changeset
  3291
    "Created: / 01-03-1997 / 16:38:17 / cg"
8b482a0c44a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22166
diff changeset
  3292
    "Modified: / 25-08-2017 / 12:33:09 / cg"
2428
d54efc515824 better gcd for large integers
Claus Gittinger <cg@exept.de>
parents: 2408
diff changeset
  3293
! !
d54efc515824 better gcd for large integers
Claus Gittinger <cg@exept.de>
parents: 2408
diff changeset
  3294
10027
36281068b212 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9401
diff changeset
  3295
12565
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3296
!Integer methodsFor:'iteration'!
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3297
23594
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3298
timesCollect:aBlock
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3299
    "syntactic sugar; same as (1 to:self) collect:aBlock"
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3300
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3301
    ^ (1 to:self) collect:aBlock
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3302
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3303
    "
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3304
     10 timesCollect:[:i | i squared]
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3305
    "
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3306
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3307
    "Created: / 09-01-2019 / 17:35:14 / Claus Gittinger"
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3308
!
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3309
12565
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3310
to:stop collect:aBlock
16347
ac28cfa26ec2 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16293
diff changeset
  3311
    "syntactic sugar; same as (self to:stop) collect:aBlock"
12565
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3312
23594
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3313
    ^ (self to:stop) collect:aBlock as:Array
12565
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3314
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3315
    "
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3316
     1 to:10 collect:[:i | i squared]
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  3317
     10 to:20 collect:[:i | i squared]
12565
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3318
     (10 to:20) collect:[:i | i squared]
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3319
    "
23594
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3320
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3321
    "Modified (format): / 09-01-2019 / 17:51:04 / Claus Gittinger"
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3322
!
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3323
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3324
to:stop collect:aBlock as:collectionClass
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3325
    "syntactic sugar; same as (self to:stop) collect:aBlock"
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3326
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3327
    ^ (self to:stop) collect:aBlock as:collectionClass
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3328
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3329
    "
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3330
     1 to:10 collect:[:i | i squared] as:Set
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3331
    "
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3332
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3333
    "Created: / 09-01-2019 / 17:51:17 / Claus Gittinger"
12565
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3334
! !
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3335
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3336
!Integer methodsFor:'misc math'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3337
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3338
acker:n
1560
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3339
    "return the value of acker(self, n).
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  3340
     ;-) Do not try with receivers > 3"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3341
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3342
    (self == 0) ifTrue:[^ n + 1].
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3343
    (n == 0) ifTrue:[^ (self - 1) acker: 1].
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3344
    ^ (self - 1) acker:(self acker:(n - 1))
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3345
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3346
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3347
     3 acker:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3348
     3 acker:7
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3349
    "
1560
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3350
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3351
    "Modified: 18.7.1996 / 13:08:16 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3352
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3353
11491
4920830c3d9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11486
diff changeset
  3354
binco:kIn
13023
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  3355
    "an alternative name for the binomial coefficient for squeak compatibility"
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  3356
11491
4920830c3d9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11486
diff changeset
  3357
    ^ self binomialCoefficient:kIn
13023
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  3358
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  3359
    "Modified: / 17-08-2010 / 17:29:07 / cg"
11491
4920830c3d9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11486
diff changeset
  3360
!
4920830c3d9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11486
diff changeset
  3361
19040
80a45e8ef510 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19015
diff changeset
  3362
binomialCoefficient:k
80a45e8ef510 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19015
diff changeset
  3363
    "The binomial coefficient (n over k)
11486
6371ea09c6f0 comment
Claus Gittinger <cg@exept.de>
parents: 11485
diff changeset
  3364
11476
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3365
      / n \     with self being n, and 0 <= k <= n.
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3366
      \ k /
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3367
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3368
     is the number of ways of picking k unordered outcomes from n possibilities,
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3369
     also known as a combination or combinatorial number.
11486
6371ea09c6f0 comment
Claus Gittinger <cg@exept.de>
parents: 11485
diff changeset
  3370
     Sometimes also called C(n,k) (for choose k from n)
6371ea09c6f0 comment
Claus Gittinger <cg@exept.de>
parents: 11485
diff changeset
  3371
6371ea09c6f0 comment
Claus Gittinger <cg@exept.de>
parents: 11485
diff changeset
  3372
     binCo is defined as:
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3373
        n!!
11476
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3374
     ----------
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3375
     k!! (n-k)!!
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3376
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3377
     but there is a faster, recursive formula:
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3378
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3379
      / n \  = / n - 1 \  + / n - 1 \
11476
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3380
      \ k /    \ k - 1 /    \   k   /
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3381
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3382
     with:
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3383
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3384
      / n \  = / n \  =  1
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3385
      \ 0 /    \ n /
11476
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3386
    "
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3387
19040
80a45e8ef510 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19015
diff changeset
  3388
    |kRun acc|
80a45e8ef510 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19015
diff changeset
  3389
80a45e8ef510 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19015
diff changeset
  3390
    k > self ifTrue:[^ 0].
80a45e8ef510 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19015
diff changeset
  3391
80a45e8ef510 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19015
diff changeset
  3392
    kRun := k.
80a45e8ef510 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19015
diff changeset
  3393
    kRun > (self / 2) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3394
        "/ symmetry
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3395
        kRun := self - kRun.
11476
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3396
    ].
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3397
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3398
    acc := 1.
19040
80a45e8ef510 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19015
diff changeset
  3399
    1 to:kRun do:[:i |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3400
        acc := acc * (self - kRun + i) / i.
11476
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3401
    ].
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3402
    ^ acc
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3403
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3404
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3405
     (7 binomialCoefficient:3)
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3406
     (10 binomialCoefficient:5)
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3407
     (100 binomialCoefficient:5)
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3408
     (1000 binomialCoefficient:5)
11486
6371ea09c6f0 comment
Claus Gittinger <cg@exept.de>
parents: 11485
diff changeset
  3409
11476
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3410
     TestCase assert: (10 binomialCoefficient:5) = (10 factorial / (5 factorial * 5 factorial))
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3411
     TestCase assert: (100 binomialCoefficient:78) = (100 factorial / (78 factorial * (100-78) factorial))
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3412
     TestCase assert: (1000 binomialCoefficient:5) = (1000 factorial / (5 factorial * (1000-5) factorial))
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3413
     TestCase assert: (10000 binomialCoefficient:78) = (10000 factorial / (78 factorial * (10000-78) factorial))
11486
6371ea09c6f0 comment
Claus Gittinger <cg@exept.de>
parents: 11485
diff changeset
  3414
6371ea09c6f0 comment
Claus Gittinger <cg@exept.de>
parents: 11485
diff changeset
  3415
     Time millisecondsToRun:[ (10000 binomialCoefficient:78) ]                            -> 0
19252
7e0b6ccb0d81 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19251
diff changeset
  3416
     Time millisecondsToRun:[ (10000 factorial / (78 factorial * (10000-78) factorial)) ] -> 130
11486
6371ea09c6f0 comment
Claus Gittinger <cg@exept.de>
parents: 11485
diff changeset
  3417
11476
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3418
    "
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3419
!
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3420
1842
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3421
divMod:aNumber
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  3422
    "return an array filled with
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3423
        (self // aNumber) and (self \\ aNumber).
17037
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3424
     The returned remainder has the same sign as aNumber.
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3425
     The following is always true:
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3426
        (receiver // something) * something + (receiver \\ something) = receiver
17037
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3427
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3428
     Be careful with negative results: 9 // 4 -> 2, while -9 // 4 -> -3.
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  3429
     Especially surprising:
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3430
        -1 \\ 10 -> 9  (because -(1/10) is truncated towards next smaller integer, which is -1,
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3431
                        and -1 multiplied by 10 gives -10, so we have to add 9 to get the original -1).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3432
        -10 \\ 3 -> 2 (because -(10/3) is truncated towards next smaller integer, which is -4,
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3433
                        and -4 * 4 gives -12, so we need to add 2 to get the original -10.
17037
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3434
1842
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3435
     This may be redefined in some integer classes for
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3436
     more performance (where the remainder is generated as a side effect of division)"
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3437
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3438
    ^ Array
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3439
        with:(self // aNumber)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3440
        with:(self \\ aNumber)
1842
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3441
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3442
    "
17037
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3443
     10 divMod:3       -> #(3 1)   because 3*3 + 1 = 10
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3444
     10 divMod:-3      -> #(-4 -2) because -4*-3 + (-2) = 10
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  3445
     -10 divMod:3      -> #(-4 2) because -4*-3 + 2 = -10
17037
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3446
     -10 divMod:-3     -> #(3 -1)  because -3*3 + (-1) = -10
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3447
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3448
     1000000000000000000000 divMod:3   -> #(333333333333333333333 1)
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3449
     1000000000000000000000 divMod:-3  -> #(-333333333333333333334 -2)
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3450
     -1000000000000000000000 divMod:3  -> #(-333333333333333333334 2)
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3451
     -1000000000000000000000 divMod:-3 -> #(333333333333333333333 -1)
1842
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3452
     100 factorial divMod:103
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3453
    "
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3454
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3455
    "Modified: 29.10.1996 / 21:18:58 / cg"
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3456
!
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3457
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3458
extendedEuclid:tb
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3459
    "return the solution of 'ax + by = gcd(a,b)'.
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3460
     An array containing x, y and gcd(a,b) is returned."
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3461
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3462
    |a b gcd gcd1 u u1 v v1 tmp t swap shift "{SmallInteger}"|
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3463
5001
732ea614d36d Comments for #inverseMod: and #extendedEuclid:
Stefan Vogel <sv@exept.de>
parents: 4996
diff changeset
  3464
    self < tb ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3465
        a := self.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3466
        b := tb.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3467
        swap := false.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3468
    ] ifFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3469
        a := tb.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3470
        b := self.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3471
        swap := true.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3472
    ].
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3473
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3474
    shift := ((a lowBit) min:(b lowBit))-1.
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3475
    shift > 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3476
        tmp := shift negated.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3477
        a := a bitShift:tmp.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3478
        b := b bitShift:tmp.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3479
    ].
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3480
9057
13bd29f579c6 Bug 343: #clearBit: changed the receiver (shouldn't do that).
Stefan Vogel <sv@exept.de>
parents: 8937
diff changeset
  3481
    gcd  := a.
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3482
    gcd1 := b.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3483
    u := 1.
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3484
    u1 := 0.
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3485
    v := 0.
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3486
    v1 := 1.
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3487
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3488
    [
19251
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3489
        "/      The following condition is true:
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3490
        "/        (a * u1) + (b * v1) ~= gcd1 ifTrue:[self halt].
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3491
        t := gcd1 divMod:gcd.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3492
        gcd1 := gcd.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3493
        gcd := t at:2.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3494
        t := t at:1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3495
        tmp := v.
19251
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3496
        "/ v1 - (v * t) - v1 + (v * t) ~= 0 ifTrue:[self halt].
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3497
        v := v1 - (v * t).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3498
        v1 := tmp.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3499
        tmp := u.
19251
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3500
        "/ u1 - (u * t) - u1 + (u * t) ~= 0 ifTrue:[self halt].
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3501
        u := u1 - (u * t).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3502
        u1 := tmp.
9057
13bd29f579c6 Bug 343: #clearBit: changed the receiver (shouldn't do that).
Stefan Vogel <sv@exept.de>
parents: 8937
diff changeset
  3503
    gcd > 0] whileTrue.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3504
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3505
    shift > 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3506
        gcd1 := gcd1 bitShift:shift.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3507
    ].
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3508
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3509
    swap ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3510
        ^ Array with:v1 with:u1 with:gcd1.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3511
    ].
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3512
    ^ Array with:u1 with:v1 with:gcd1.
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3513
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3514
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3515
    "
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3516
     14 extendedEuclid:5
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3517
     14 extendedEuclid:2
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3518
     25 extendedEuclid:15
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3519
    "
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3520
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3521
    "Created: / 27.4.1999 / 15:19:22 / stefan"
5001
732ea614d36d Comments for #inverseMod: and #extendedEuclid:
Stefan Vogel <sv@exept.de>
parents: 4996
diff changeset
  3522
    "Modified: / 18.11.1999 / 16:19:24 / stefan"
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3523
!
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3524
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3525
factorial
19251
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3526
    "return fac(self) (i.e. 1*2*3...*self).
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3527
     This chooses a good algorithm, based on the receiver.
19337
548386843c2e #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19327
diff changeset
  3528
     Some heuristics here, which has to do with the speed of largeInteger arithmetic."
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3529
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3530
    (self <= 20) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3531
        self < 0 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3532
            "/
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3533
            "/ requested factorial of a negative number
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3534
            "/
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3535
            ^ self class
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3536
                raise:#domainErrorSignal
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3537
                receiver:self
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3538
                selector:#factorial
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3539
                arguments:#()
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3540
                errorString:'factorial of negative number'
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3541
        ].
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3542
        ^ #(1 1 2 6 24 120 720 5040 40320 362880 3628800 39916800
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3543
          479001600 6227020800 87178291200 1307674368000 20922789888000 
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3544
          355687428096000 6402373705728000 121645100408832000
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3545
          2432902008176640000) at:self+1
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3546
    ].
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3547
    
19163
b45df3976f74 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19161
diff changeset
  3548
"/    self < 80000 ifTrue:[
b45df3976f74 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19161
diff changeset
  3549
"/        ^ self factorialHalf
b45df3976f74 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19161
diff changeset
  3550
"/    ].    
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3551
    ^ self factorialEvenOdd
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3552
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3553
    "
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3554
     10 factorial
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3555
     100 factorial
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3556
     1000 factorial
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3557
     10000 factorial
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3558
     100000 factorial
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3559
     200000 factorial
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3560
     300000 factorial
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3561
     1000000 factorial
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3562
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3563
     Time millisecondsToRun:[10000 factorial]40
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3564
     Time millisecondsToRun:[100000 factorial]3220
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3565
     Time millisecondsToRun:[1000000 factorial]357120
19164
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3566
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3567
    #(factorialIter factorialHalf factorialEvenOdd factorial)
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3568
    do:[:sel |
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3569
      #( (10000 10) 
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3570
         (20000 10)
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3571
         (50000 10)
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3572
         (70000 10)
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3573
         (100000 5)
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3574
         (200000 3)
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3575
         (300000 3)
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3576
         (400000 3)) pairsDo:[:n :repeat |
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3577
         |times|
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3578
        times := (1 to:repeat) collect:[:i |
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3579
                Time millisecondsToRun:[ n perform:sel]
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3580
               ].
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3581
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3582
        Transcript printf:'%12s %6d: %5d\n' with:sel with:n with:times min 
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3583
      ]
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3584
    ].
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3585
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3586
    factorialIter  10000:    30
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3587
    factorialIter  20000:   130
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3588
    factorialIter  50000:   790
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3589
    factorialIter  70000:  1710
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3590
    factorialIter 100000:  4880
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3591
    factorialIter 200000: 24980
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3592
    factorialIter 300000: 60060
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3593
    factorialIter 400000: 112310
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3594
    factorialHalf  10000:    20
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3595
    factorialHalf  20000:   100
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3596
    factorialHalf  50000:   690
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3597
    factorialHalf  70000:  1430
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3598
    factorialHalf 100000:  3220
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3599
    factorialHalf 200000: 28340
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3600
    factorialHalf 300000: 68740
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3601
    factorialHalf 400000: 127490
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3602
    factorialEvenOdd  10000:    10
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3603
    factorialEvenOdd  20000:    60
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3604
    factorialEvenOdd  50000:   390
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3605
    factorialEvenOdd  70000:   810
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3606
    factorialEvenOdd 100000:  2020
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3607
    factorialEvenOdd 200000:  9960
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3608
    factorialEvenOdd 300000: 24480
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3609
    factorialEvenOdd 400000: 45340
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3610
    factorial  10000:    20
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3611
    factorial  20000:   100
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3612
    factorial  50000:   680
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3613
    factorial  70000:  1400
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3614
    factorial 100000:  2040
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3615
    factorial 200000: 10130
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3616
    factorial 300000: 24670
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3617
    "
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3618
!
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3619
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3620
factorialEvenOdd
22166
a12fdc37c2cf #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22118
diff changeset
  3621
    "a recursive odd-even algorithm, which processes smaller largeInts in the loop.
a12fdc37c2cf #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22118
diff changeset
  3622
     Because multiplication is an O(n^2) algorithm, there is a threshold from which
a12fdc37c2cf #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22118
diff changeset
  3623
     more but smaller multiplications makes a noticable difference"
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3624
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3625
    |pO i s2 t stop|
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3626
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3627
    (self <= 20) ifTrue:[
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3628
        ^ #(1 1 2 6 24 120 720 5040 40320 362880 3628800 39916800
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3629
          479001600 6227020800 87178291200 1307674368000 20922789888000 
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3630
          355687428096000 6402373705728000 121645100408832000
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3631
          2432902008176640000) at:self+1
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3632
    ].
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3633
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3634
    "/
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3635
    "/ 3 * 4 * 5 * 6 *7 * 8 .... * n
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3636
    "/ odd numbers:
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3637
    "/   3 5 7 9 ... n
19251
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3638
    "/ even numbers:
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3639
    "/   2 4 6 8 ... n
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3640
    "/   1 2 3 4 ... n//2
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3641
    "/ is (n/2)!! << n-1
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3642
                 
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3643
    pO := 1.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3644
    i := 3.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3645
 
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3646
    "/ odds only in pairs as
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3647
    "/      i * (i + 2)
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3648
    "/ to get to the next pair,
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3649
    "/      (i+4)(i+6)
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3650
    "/ we add: 8i + 24
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3651
    "/ (i+4)(i+6)-(i*(i+2))
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3652
    "/ i^2 + 10i + 24 - i^2 - 2i
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3653
    "/ 8i + 24
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3654
    stop := self-2.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3655
    t := i*(i+2).
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3656
    [i <= stop] whileTrue:[
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3657
        "/ odd*next odd
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3658
        pO := pO * t.
19163
b45df3976f74 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19161
diff changeset
  3659
        t := t + ((i*8) + 24).
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3660
        i := i + 4.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3661
    ].
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3662
    
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3663
    [i <= self] whileTrue:[
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3664
        "/ odd
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3665
        pO := pO * i.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3666
        i := i + 2.
1842
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3667
    ].
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3668
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3669
    "/ the factorial of the evens...
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3670
    s2 := (self//2).
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3671
    ^ (s2 factorialEvenOdd * pO) << s2.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3672
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3673
    "
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3674
     (6 to:2000) conform:[:i | i factorialIter = i factorialEvenOdd]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3675
     
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3676
     Time millisecondsToRun:[20000 factorialIter]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3677
     Time millisecondsToRun:[50000 factorialIter]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3678
     Time millisecondsToRun:[70000 factorialIter]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3679
     Time millisecondsToRun:[100000 factorialIter]
23646
efcbc4fd9032 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23594
diff changeset
  3680
     Time millisecondsToRun:[200000 factorialIter] 16190
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3681
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3682
     Time millisecondsToRun:[20000 factorialEvenOdd]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3683
     Time millisecondsToRun:[50000 factorialEvenOdd]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3684
     Time millisecondsToRun:[70000 factorialEvenOdd]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3685
     Time millisecondsToRun:[100000 factorialEvenOdd]
23646
efcbc4fd9032 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23594
diff changeset
  3686
     Time millisecondsToRun:[200000 factorialEvenOdd] 2910
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3687
    "
22166
a12fdc37c2cf #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22118
diff changeset
  3688
a12fdc37c2cf #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22118
diff changeset
  3689
    "Modified (comment): / 05-07-2017 / 16:41:41 / cg"
23646
efcbc4fd9032 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23594
diff changeset
  3690
    "Modified (comment): / 26-01-2019 / 08:48:12 / Claus Gittinger"
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3691
!
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3692
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3693
factorialHalf
19251
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3694
    "an algorithm, which does it with half the number of multiplications.
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3695
     this is faster than factorialPM to roughly 60000."
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3696
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3697
    |p i d|
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3698
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3699
    i := self.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3700
    self odd ifTrue:[
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3701
        i := i - 1.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3702
    ].
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  3703
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3704
    p := i.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3705
    d := i - 2.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3706
    [d >= 2] whileTrue:[
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3707
        i := i + d.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3708
        p := p * i.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3709
        d := d - 2.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3710
    ].
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3711
    self odd ifTrue:[
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3712
        p := p * self
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  3713
    ].
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3714
    ^ p
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3715
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3716
    "
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3717
     10 factorial 3628800
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3718
     10 factorialHalf 3628800
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  3719
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3720
     11 factorial 39916800
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3721
     11 factorialHalf 39916800
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3722
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3723
     12 factorial 479001600
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  3724
     12 factorialHalf 479001600
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3725
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3726
     10000 factorial = 10000 factorialHalf
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3727
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3728
     (6 to:2000) conform:[:i | i factorialIter = i factorialHalf]
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  3729
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3730
     Time microsecondsToRun:[30 factorialIter]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3731
     Time microsecondsToRun:[30 factorialHalf]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3732
     Time microsecondsToRun:[50 factorialIter]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3733
     Time microsecondsToRun:[50 factorialHalf]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3734
     Time microsecondsToRun:[75 factorialIter]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3735
     Time microsecondsToRun:[75 factorialHalf]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3736
     Time microsecondsToRun:[100 factorialIter]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3737
     Time microsecondsToRun:[100 factorialHalf]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3738
     Time microsecondsToRun:[500 factorialIter]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3739
     Time microsecondsToRun:[500 factorialHalf]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3740
     Time microsecondsToRun:[1000 factorialIter]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3741
     Time microsecondsToRun:[1000 factorialHalf]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3742
     Time microsecondsToRun:[2000 factorialIter]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3743
     Time microsecondsToRun:[2000 factorialHalf]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3744
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3745
     Time microsecondsToRun:[500 factorial]118 120 120
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3746
     Time microsecondsToRun:[1000 factorial]339 355 406
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3747
     Time microsecondsToRun:[5000 factorial]15703 13669 7715
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3748
     Time millisecondsToRun:[10000 factorial]40 30 50
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3749
     Time millisecondsToRun:[20000 factorial]140 150 150
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3750
     Time millisecondsToRun:[40000 factorial]600 570 560 570
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3751
     Time millisecondsToRun:[60000 factorial]1220 1240 1340
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3752
     Time millisecondsToRun:[80000 factorial]2600 2580 2540
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3753
     Time millisecondsToRun:[100000 factorial]4680 4810 5280
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3754
     Time millisecondsToRun:[120000 factorial]8100 8010 7920
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3755
     Time millisecondsToRun:[150000 factorial]13830 14040 13360
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  3756
     Time millisecondsToRun:[200000 factorial]23880 23740
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3757
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3758
     Time microsecondsToRun:[500 factorialHalf]150 142 192
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3759
     Time microsecondsToRun:[1000 factorialHalf]383 527 684
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3760
     Time microsecondsToRun:[5000 factorialHalf]6654 9221 4629
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3761
     Time millisecondsToRun:[10000 factorialHalf]20 30 20
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3762
     Time millisecondsToRun:[20000 factorialHalf]110 110 110
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3763
     Time millisecondsToRun:[40000 factorialHalf]490 490 490
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3764
     Time millisecondsToRun:[60000 factorialHalf]1100 1090 1070
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3765
     Time millisecondsToRun:[80000 factorialHalf]1920 1920 1880
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3766
     Time millisecondsToRun:[100000 factorialHalf]3030 3010 3000
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3767
     Time millisecondsToRun:[120000 factorialHalf]4830 4770 4760
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3768
     Time millisecondsToRun:[150000 factorialHalf]14510 13940 13900
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  3769
     Time millisecondsToRun:[200000 factorialHalf]28730 28160
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3770
    "
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3771
!
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3772
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3773
factorialIter
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3774
    "return fac(self) (i.e. 1*2*3...*self) using an iterative algorithm.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3775
     This is slightly faster than the recursive algorithm, and does not
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3776
     suffer from stack overflow problems (with big receivers)"
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3777
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3778
    |p i|
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3779
1560
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3780
    p := 2.
2745
bdf76e380d27 errorString to DomainError
Claus Gittinger <cg@exept.de>
parents: 2458
diff changeset
  3781
    i := 3.
bdf76e380d27 errorString to DomainError
Claus Gittinger <cg@exept.de>
parents: 2458
diff changeset
  3782
    [i <= self] whileTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3783
        p := p * i.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3784
        i := i + 1.
1560
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3785
    ].
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3786
    ^ p
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3787
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3788
    "
1560
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3789
     10 factorial
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3790
     1000 factorial
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3791
     10000 factorial
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3792
     10000 factorialR
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3793
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3794
     Time millisecondsToRun:[2000 factorial]
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3795
     Time millisecondsToRun:[2000 factorialR]
2745
bdf76e380d27 errorString to DomainError
Claus Gittinger <cg@exept.de>
parents: 2458
diff changeset
  3796
     -1 factorial
1560
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3797
    "
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3798
10027
36281068b212 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9401
diff changeset
  3799
    "Modified: / 04-10-2006 / 14:31:12 / cg"
1560
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3800
!
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3801
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3802
factorialR
3908
b893f399f517 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  3803
    "return fac(self) (i.e. 1*2*3...*self) using a recursive algorithm.
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3804
3908
b893f399f517 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  3805
     This is included to demonstration purposes - if you really need
19251
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3806
     factorial numbers, use the tuned #factorial, which is
3908
b893f399f517 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  3807
     faster and does not suffer from stack overflow problems (with big receivers)."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3808
356
claus
parents: 345
diff changeset
  3809
    (self >= 2) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3810
        ^ self * (self - 1) factorialR
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3811
    ].
356
claus
parents: 345
diff changeset
  3812
    ^ 1
212
3edd10edefaf *** empty log message ***
claus
parents: 202
diff changeset
  3813
3edd10edefaf *** empty log message ***
claus
parents: 202
diff changeset
  3814
    "
1560
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3815
     10 factorialR
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3816
     1000 factorialR
4158
e04b61500e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3817
     Time millisecondsToRun:[10000 factorial]
212
3edd10edefaf *** empty log message ***
claus
parents: 202
diff changeset
  3818
    "
1560
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3819
3908
b893f399f517 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  3820
    "Created: / 18.7.1996 / 12:48:36 / cg"
4158
e04b61500e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3821
    "Modified: / 8.5.1999 / 18:40:13 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3822
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3823
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3824
fib
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3825
    "compute the fibionacci number for the receiver.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3826
        fib(0) := 0
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3827
        fib(1) := 1
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3828
        fib(n) := fib(n-1) + fib(n-2)"
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3829
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3830
    self <= 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3831
        self == 0 ifTrue:[^ 0].
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3832
    ].
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3833
    ^ self fib_helper
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3834
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3835
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
  3836
     30 fib
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3837
     60 fib
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3838
     1000 fib
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3839
    "
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3840
!
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3841
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3842
fib_helper
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3843
    "compute the fibionacci number for the receiver.
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3844
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3845
        Fib(n) = Fib(n-1) + Fib(n-2)
13023
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  3846
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  3847
     Knuth:
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3848
        Fib(n+m) = Fib(m) * Fib(n+1) + Fib(m-1) * Fib(n)
13023
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  3849
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  3850
     This is about 3 times faster than fib_iterative.
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3851
    "
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3852
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3853
    |fibUsingDict dict|
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3854
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3855
    dict := Dictionary new:100.
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3856
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3857
    fibUsingDict := [:x |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3858
        |n fib fibN fibNp1 fibNm1 fibXm1 fibXm2 fibXp1|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3859
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3860
        x <= 30 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3861
                "/ 0 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
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3862
            fib := #(1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987 1597 2584 4181 6765 10946 17711 28657 46368 75025 121393 196418 317811 514229 832040
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3863
                     ) at:x
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3864
        ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3865
            fib := dict at:x ifAbsent:nil.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3866
            fib isNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3867
                fibXm1 := dict at:(x-1) ifAbsent:nil.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3868
                fibXm1 notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3869
                    fibXm2 := dict at:(x-2) ifAbsent:nil.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3870
                    fibXm2 notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3871
                        fib := fibXm1 + fibXm2.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3872
                    ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3873
                        fibXp1 := dict at:(x+1) ifAbsent:nil.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3874
                        fibXp1 notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3875
                            fib := fibXp1 - fibXm1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3876
                        ]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3877
                    ]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3878
                ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3879
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3880
                fib isNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3881
                    n := x // 2.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3882
                    x odd ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3883
                        "/ m is set to n+1; therefore:
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3884
                        "/ Fib(x) = Fib(n+n+1)      ; x odd; setting n = (x-1)/2
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3885
                        "/ using Knuth:
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3886
                        "/ Fib(n+n+1) = Fib(n+1) * Fib(n+1) + Fib(n+1-1) * Fib(n)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3887
                        "/            = (Fib(n+1) ^ 2) + (Fib(n) ^ 2)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3888
                        fibN   := fibUsingDict value:n.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3889
                        fibNp1 := fibUsingDict value:(n+1).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3890
                        fib := fibN squared + fibNp1 squared
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3891
                    ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3892
                        "/ as
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3893
                        "/    Fib(n+1) = Fib(n) + Fib(n-1)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3894
                        "/ therefore:
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3895
                        "/    Fib(n) = Fib(n+1) - Fib(n-1)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3896
                        "/ and, since n is even, n+1 and n-1 are odd, and can be computed as above.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3897
                        "/ This gives us:
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3898
                        "/    Fib(x) = Fib(x+1) - Fib(x-1)      ; x even; setting n = x/2
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3899
                        "/           = Fib(n+n+1) - Fib(n+n-1)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3900
                        "/           = Fib(n+n+1) - Fib((n-1)+(n-1)+1)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3901
                        "/           = ((Fib(n+1)^2) + (Fib(n)^2)) - ((Fib((n-1)+1)^2) + (Fib((n-1))^2))
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3902
                        "/           = (Fib(n+1)^2) + (Fib(n)^2) - (Fib(n)^2) - (Fib((n-1))^2)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3903
                        "/           = (Fib(n+1)^2) - (Fib((n-1))^2)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3904
                        fibNm1 := fibUsingDict value:(n-1).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3905
                        fibNp1 := fibUsingDict value:(n+1).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3906
                        fib := fibNp1 squared - fibNm1 squared
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3907
                    ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3908
                ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3909
                dict at:x put:fib.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3910
            ]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3911
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3912
        fib
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3913
    ].
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3914
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3915
    ^ fibUsingDict value:self
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3916
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3917
    "the running time is mostly dictated by the LargeInteger multiplication performance...
23930
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  3918
     (therefore, we get O(n²) execution times, even for a linear number of multiplications)
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3919
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3920
     Time millisecondsToRun:[50000 fib_iterative]  312    (DUO 1.7Ghz CPU)
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3921
     Time millisecondsToRun:[50000 fib_helper]     109
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3922
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
  3923
     Time millisecondsToRun:[100000 fib_iterative] 1248
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3924
     Time millisecondsToRun:[100000 fib_helper]    374
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3925
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
  3926
     Time millisecondsToRun:[200000 fib_iterative] 4758
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3927
     Time millisecondsToRun:[200000 fib_helper]    1544
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3928
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
  3929
     Time millisecondsToRun:[400000 fib_iterative] 18892
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3930
     Time millisecondsToRun:[400000 fib_helper]    6084
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3931
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3932
     1 to:100 do:[:i | self assert:(i fib_iterative = i fib_helper) ]
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3933
     1 to:100 do:[:i | self assert:(i fib_iterative = i fib) ]
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3934
    "
13023
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  3935
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  3936
    "Modified: / 17-08-2010 / 17:29:34 / cg"
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3937
!
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3938
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3939
gcd:anInteger
2428
d54efc515824 better gcd for large integers
Claus Gittinger <cg@exept.de>
parents: 2408
diff changeset
  3940
    "return the greatest common divisor of the receiver and anInteger.
d54efc515824 better gcd for large integers
Claus Gittinger <cg@exept.de>
parents: 2408
diff changeset
  3941
     Euclids & Knuths algorithm."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3942
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3943
    |a b t|
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3944
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3945
    a := self abs.
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3946
    b := anInteger abs.
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3947
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3948
    a < b ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3949
        t := a.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3950
        a := b.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3951
        b := t.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3952
    ].
52
cf23b8901602 *** empty log message ***
claus
parents: 49
diff changeset
  3953
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3954
    b = 0 ifTrue: [^ a].
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3955
    a := a \\ b.
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3956
    a = 0 ifTrue:[^ b].
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3957
    ^ b gcd_helper:a
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  3958
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3959
    "
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3960
     3141589999999999 gcd:1000000000000000
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3961
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3962
     Time millisecondsToRun:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3963
        10000 timesRepeat:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3964
           123456789012345678901234567890 gcd: 9876543210987654321
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3965
        ]
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3966
     ]
3060
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3967
    "
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3968
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3969
    "Modified: / 25.10.1997 / 16:08:45 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3970
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3971
21938
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3972
integerLog10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3973
    "return the floor of log10 of the receiver.
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3974
     This is the same as (self log:10) floor.
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3975
     Used to find out the number of digits needed
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3976
     to print a number/and for conversion to a LargeInteger."
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3977
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3978
    ^ self asFloat log10 floor
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3979
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3980
    "
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3981
      10 integerLog10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3982
      1000 integerLog10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3983
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3984
      10000000000000000.0 log:10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3985
      10000000000000000 integerLog10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3986
      100000000000000000 integerLog10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3987
      1000000000000000000 integerLog10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3988
      10000000000000000000 integerLog10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3989
      100000000000000000000 integerLog10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3990
      1000000000000000000000 integerLog10 -> 21
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3991
      1000000000000000000000000000000 integerLog10 -> 30
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3992
      10000000000000000000000000000000000000000 integerLog10 -> 40
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3993
      
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3994
      1 to:10000 by:10 do:[:i |
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3995
        self assert:(i factorial printString size == (i factorial integerLog10+1))
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3996
      ].
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3997
      21 factorial printString size
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3998
      21 factorial integerLog10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3999
      51 factorial printString size
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4000
      51 factorial integerLog10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4001
    "
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4002
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4003
    "Created: / 02-07-2017 / 01:20:49 / cg"
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4004
    "Modified: / 02-07-2017 / 10:16:40 / cg"
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4005
!
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4006
14097
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4007
integerLog2
14491
97b9228d2464 changed: #integerLog2
Claus Gittinger <cg@exept.de>
parents: 14448
diff changeset
  4008
    "return the floor of log2 of the receiver.
97b9228d2464 changed: #integerLog2
Claus Gittinger <cg@exept.de>
parents: 14448
diff changeset
  4009
     This is the same as (self log:2) floor."
14097
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4010
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4011
    self <= 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4012
        ^ self class
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4013
            raise:#domainErrorSignal
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4014
            receiver:self
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4015
            selector:#integerLog2
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4016
            arguments:#()
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4017
            errorString:'logarithm of negative integer'
14097
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4018
    ].
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4019
    ^ self highBit - 1.
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4020
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4021
    "
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4022
      2  log:2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4023
      2  integerLog2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4024
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4025
      3  log:2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4026
      3  integerLog2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4027
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4028
      4  log:2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4029
      4  integerLog2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4030
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4031
      64  integerLog2
14097
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4032
      100 integerLog2
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4033
      100 log:2
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4034
      999 integerLog2
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4035
      999 log:2
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4036
      120000 integerLog2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4037
      120000 log:2
14097
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4038
      -1 integerLog2
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4039
      50 factorial integerLog2
14767
157f37c1a7f9 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14680
diff changeset
  4040
      50 factorial log:2
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4041
      1000 factorial integerLog2
14767
157f37c1a7f9 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14680
diff changeset
  4042
      1000 factorial log:2       -- float error!!
14097
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4043
    "
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4044
!
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4045
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4046
integerReciprocal
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4047
    "return an integer representing 1/self * 2**n.
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4048
     Where an integer is one bit longer than self.
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4049
     This is a helper for modulu numbers"
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4050
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  4051
    |b "{Class: SmallInteger}" rem result digitBytes|
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4052
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4053
    b := self highBit.
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4054
    rem := 1 bitShift:b.
10488
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  4055
    result := LargeInteger basicNew numberOfDigits:(b // 8)+1.
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  4056
    digitBytes := result digitBytes.
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  4057
    b+1 to:1 by:-1 do:[:idx|
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4058
        rem >= self ifTrue:[
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  4059
            rem := rem - self.
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  4060
            digitBytes bitSetAt:idx.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4061
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4062
        rem := rem mul2.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4063
    ].
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4064
    ^ result compressed.
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4065
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4066
    "
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4067
     333 integerReciprocal                (2 raisedTo:18) // 333
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4068
     393 integerReciprocal
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
  4069
     8 integerReciprocal
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
  4070
     15 integerReciprocal
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4071
     15112233445566 integerReciprocal
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4072
     10239552311579 integerReciprocal
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4073
   "
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4074
13023
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  4075
    "Modified: / 03-05-1999 / 14:27:18 / stefan"
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  4076
    "Modified: / 17-08-2010 / 17:30:22 / cg"
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4077
!
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4078
12588
fa4fb7a41047 added: #integerSqrt
Claus Gittinger <cg@exept.de>
parents: 12586
diff changeset
  4079
integerSqrt
21931
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4080
    "return the largest integer which is less or equal to the receiver's square root.
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4081
     For large integers, this provides better results than the float sqrt method 
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4082
     (which actually fails for very large numbers)
12586
1b8a0ecda4f2 changed: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12585
diff changeset
  4083
     This might be needed for some number theoretic problems with large numbers
21931
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4084
     (and also in cryptography). 
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4085
     Uses Newton's method"
12586
1b8a0ecda4f2 changed: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12585
diff changeset
  4086
1b8a0ecda4f2 changed: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12585
diff changeset
  4087
    |guess prevGuess guessSquared|
12581
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4088
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  4089
    self negative ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4090
        ^ self class
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4091
            raise:#imaginaryResultSignal
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4092
            receiver:self
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4093
            selector:#integerSqrt
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4094
            arguments:#()
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4095
            errorString:'bad (negative) receiver in sqrt'
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  4096
    ].
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4097
    self == 0 ifTrue:[^ 0].
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  4098
12582
7afa0bb19bbe comment/format in: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12581
diff changeset
  4099
    guess := (1 bitShift:(self highBit // 2)).
12581
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4100
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4101
    [
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4102
        prevGuess ~= guess
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4103
        and:[ ((guessSquared := guess squared) - self) abs >= guess ]
12581
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4104
    ] whileTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4105
        prevGuess := guess.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4106
        guess := (guess + (self / guess)) // 2.
12581
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4107
    ].
12586
1b8a0ecda4f2 changed: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12585
diff changeset
  4108
    guessSquared > self ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4109
        guess := guess - 1.
12581
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4110
    ].
12585
e8ce2be6049a changed: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12582
diff changeset
  4111
    "/ self assert:(guess squared <= self).
e8ce2be6049a changed: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12582
diff changeset
  4112
    "/ self assert:((guess + 1) squared > self).
12581
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4113
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4114
    ^ guess.
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4115
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4116
    "
22107
7cb478fcbdfa #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22073
diff changeset
  4117
     333 sqrt -> 18.2482875908947
7cb478fcbdfa #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22073
diff changeset
  4118
     324 sqrt -> 18.0
7cb478fcbdfa #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22073
diff changeset
  4119
     323 sqrt -> 17.9722007556114
7cb478fcbdfa #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22073
diff changeset
  4120
7cb478fcbdfa #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22073
diff changeset
  4121
     333 integerSqrt -> 18
7cb478fcbdfa #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22073
diff changeset
  4122
     325 integerSqrt -> 18
7cb478fcbdfa #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22073
diff changeset
  4123
     324 integerSqrt -> 18
7cb478fcbdfa #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22073
diff changeset
  4124
     323 integerSqrt -> 17
21931
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4125
     
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4126
     10239552004900 integerSqrt
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4127
     10239552004900 sqrt
12588
fa4fb7a41047 added: #integerSqrt
Claus Gittinger <cg@exept.de>
parents: 12586
diff changeset
  4128
     10239552311579 integerSqrt
21931
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4129
     10239552311579 sqrt
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4130
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4131
     5397346292805549782720214077673687804022210808238353958670041357153884304 integerSqrt squared
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4132
     5397346292805549782720214077673687804022210808238353958670041357153884304 sqrt squared
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4133
12588
fa4fb7a41047 added: #integerSqrt
Claus Gittinger <cg@exept.de>
parents: 12586
diff changeset
  4134
     5397346292805549782720214077673687806275517530364350655459511599582614290 integerSqrt
21931
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4135
     5397346292805549782720214077673687806275517530364350655459511599582614290 sqrt
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  4136
     1000 factorial integerSqrt
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4137
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  4138
     1000 factorial - 1000 factorial integerSqrt squared
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  4139
     1000 factorial - (1000 factorial integerSqrt + 1) squared
21931
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4140
     1000 factorial between:(1000 factorial integerSqrt squared) and:((1000 factorial integerSqrt + 1) squared)
12581
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4141
   "
21931
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4142
22107
7cb478fcbdfa #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22073
diff changeset
  4143
    "Modified (comment): / 25-07-2017 / 17:52:14 / cg"
12581
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4144
!
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4145
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4146
inverseMod:n
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4147
    "find the modular inverse for myself to n.
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4148
     This is defined as the solution of: '1 = (self * x) mod n.
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4149
     This is a helper for modulu numbers"
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4150
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4151
    |e ret|
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4152
5001
732ea614d36d Comments for #inverseMod: and #extendedEuclid:
Stefan Vogel <sv@exept.de>
parents: 4996
diff changeset
  4153
    "the following expression returns #(x y (self gcd:n)), the solution of the equation
732ea614d36d Comments for #inverseMod: and #extendedEuclid:
Stefan Vogel <sv@exept.de>
parents: 4996
diff changeset
  4154
     (self * x) + (n * y) = self gcd:n"
732ea614d36d Comments for #inverseMod: and #extendedEuclid:
Stefan Vogel <sv@exept.de>
parents: 4996
diff changeset
  4155
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4156
    e := self extendedEuclid:n.
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4157
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4158
    (e at:3) == 1 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4159
        ret := e at:1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4160
        ret negative ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4161
            ^ ret + n
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4162
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4163
        ^ ret.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4164
    ].
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4165
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4166
    ^ 0
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4167
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4168
    "
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4169
     14 inverseMod:5      -> 4
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4170
     5 inverseMod:14      -> 3
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4171
     14 inverseMod:11     -> 4                (4 * 14) \\ 11
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4172
     11 inverseMod:14     -> 9                (9 * 11) \\ 14
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4173
     79 inverseMod:3220   -> 1019
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4174
     3220 inverseMod:79   -> 54               (54 * 3220) \\ 79
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4175
     1234567891 inverseMod:1111111111119
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4176
                          -> 148726663534     (148726663534*1234567891) \\ 1111111111119
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4177
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4178
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4179
     14 extendedEuclid:11
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4180
     5 extendedEuclid:14
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4181
     14 extendedEuclid:2
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4182
     3220 extendedEuclid:79
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4183
    "
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4184
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4185
    "Created: / 27.4.1999 / 15:19:22 / stefan"
5001
732ea614d36d Comments for #inverseMod: and #extendedEuclid:
Stefan Vogel <sv@exept.de>
parents: 4996
diff changeset
  4186
    "Modified: / 18.11.1999 / 16:21:37 / stefan"
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4187
!
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4188
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4189
lcm:anInteger
52
cf23b8901602 *** empty log message ***
claus
parents: 49
diff changeset
  4190
    "return the least common multiple (using gcd:)"
cf23b8901602 *** empty log message ***
claus
parents: 49
diff changeset
  4191
cf23b8901602 *** empty log message ***
claus
parents: 49
diff changeset
  4192
    ^ (self * anInteger) abs // (self gcd: anInteger)
cf23b8901602 *** empty log message ***
claus
parents: 49
diff changeset
  4193
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4194
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4195
     65 lcm:15
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4196
     3 lcm:15
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4197
    "
3188
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4198
!
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4199
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4200
primeFactors
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4201
    "return a collection of prime factors of the receiver.
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4202
     For prime numbers, an empty collection is returned.
13021
1cbf4cdfc288 comment/format
Claus Gittinger <cg@exept.de>
parents: 12978
diff changeset
  4203
     Can take a long time for big numbers"
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4204
11508
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4205
    ^ self primeFactorsUpTo:nil
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4206
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4207
    "
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4208
     2 to:10000 do:[:n |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4209
        self assert:((n isPrime and:[ n primeFactors isEmpty])
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4210
                    or:[ n isPrime not and:[n primeFactors product = n]])
11508
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4211
     ]
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4212
     3 to:10000 do:[:n |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4213
        self assert:(n factorial primeFactors product = n factorial)
11508
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4214
     ]
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4215
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4216
     13195 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4217
     12 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4218
     2 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4219
     3 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4220
     5 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4221
     14 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4222
     13423453625634765 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4223
     13423453625634765 isPrime
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4224
     13423453625634765 gcd:(3 * 5 * 19 * 29)
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4225
     13423453625634765 / 8265
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4226
     1624132320101 isPrime
11508
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4227
     1624132320101 gcd: 8265
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4228
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4229
     1000000 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4230
     100000000 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4231
     1000000000 primeFactors
11508
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4232
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4233
     Time millisecondsToRun:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4234
        1000 timesRepeat:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4235
            10000000000000000000000000000000000000 primeFactors
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4236
        ]
11508
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4237
     ]   421
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4238
    "
13021
1cbf4cdfc288 comment/format
Claus Gittinger <cg@exept.de>
parents: 12978
diff changeset
  4239
1cbf4cdfc288 comment/format
Claus Gittinger <cg@exept.de>
parents: 12978
diff changeset
  4240
    "Modified: / 17-08-2010 / 17:27:33 / cg"
11508
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4241
!
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4242
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4243
primeFactorsUpTo:limitArgOrNil
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4244
    "return a collection of prime factors of the receiver.
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4245
     For prime numbers, an empty collection is returned.
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4246
     Can take a long time for big numbers
13021
1cbf4cdfc288 comment/format
Claus Gittinger <cg@exept.de>
parents: 12978
diff changeset
  4247
     (win a nobel price, if you find something quick (*)
1cbf4cdfc288 comment/format
Claus Gittinger <cg@exept.de>
parents: 12978
diff changeset
  4248
1cbf4cdfc288 comment/format
Claus Gittinger <cg@exept.de>
parents: 12978
diff changeset
  4249
     (*):which does not mean that the code below is optimal - far from it !!"
11508
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4250
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  4251
    "See comment in initializePrimeCacheUpTo:limit"
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  4252
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  4253
    |rest n factors limit wellKnownPrimes lastPrime checkThisFactor nextTry|
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4254
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4255
    factors := Bag new.
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4256
    rest := self.
11508
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4257
    limit := (rest // 2).
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4258
    limitArgOrNil notNil ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4259
        limit := limit min:limitArgOrNil.
11508
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4260
    ].
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4261
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4262
    "/ try to get the number down fast:
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4263
    n := rest lowBit.
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4264
    n ~~ 1 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4265
        self == 2 ifTrue:[^ #() ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4266
        factors add:2 withOccurrences:(n-1).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4267
        rest := rest rightShift:(n-1).
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4268
    ].
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4269
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  4270
    checkThisFactor :=
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  4271
        [:prime |
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  4272
            (prime*prime) > rest ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4273
                (rest ~~ 1 and:[factors notEmpty]) ifTrue:[ factors add:rest ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4274
                ^ factors.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4275
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4276
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4277
            [rest \\ prime == 0] whileTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4278
                factors add:prime.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4279
                rest := rest // prime.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4280
                rest == 1 ifTrue:[^ factors].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4281
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4282
            lastPrime := prime.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4283
        ].
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4284
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  4285
    wellKnownPrimes := Integer primesUpTo5000.
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  4286
    limit <= (wellKnownPrimes last+1) ifTrue:[
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  4287
        wellKnownPrimes do:checkThisFactor.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4288
        ^ factors
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4289
    ].
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4290
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4291
    "/ actually, all of the code is duplicated; once for primes from a table,
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4292
    "/ and then primes as generated on the fly. The prime generation involves a prime-test,
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4293
    "/ which may slow things down quite a bit.
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4294
    "/ (the primesUpTo uses a faster sieve, but can only represent primes to upTo (say)
13022
43a439f72615 comment/format
Claus Gittinger <cg@exept.de>
parents: 13021
diff changeset
  4295
    "/ a few millions).
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4296
11938
79dcaf7ae7ad changed #primeFactorsUpTo:
Claus Gittinger <cg@exept.de>
parents: 11936
diff changeset
  4297
    Integer primesUpTo:(limit min:(1000000 max:Integer primeCacheSize)) do:checkThisFactor.
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4298
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4299
    nextTry := lastPrime + 2.
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4300
    [ nextTry <= limit ] whileTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4301
        "/ now, we are beyond the list of pre-generated primes.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4302
        "/ change our strategy to: see if it divides an odd number;
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4303
        "/ if so, add the divisor's prime factors.
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  4304
        (nextTry*nextTry) > rest ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4305
            (rest ~~ 1 and:[factors notEmpty]) ifTrue:[ factors add:rest ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4306
            ^ factors.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4307
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4308
        [(rest \\ nextTry) == 0] whileTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4309
            "/ can only happen relatively late after the last prime,
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4310
            "/ because otherwise, the primeFactors of nextTry would already have
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4311
            "/ been found as divisors.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4312
            "/ first chance is: (lastPrime + 2) squared
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4313
            nextTry < lastPrime squared ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4314
                "/ nextTry is a prime !!
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4315
                factors add:nextTry
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4316
            ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4317
                factors addAll:(nextTry primeFactors).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4318
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4319
            rest := rest // nextTry.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4320
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4321
        nextTry := nextTry + 2.
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4322
    ].
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4323
    ^ factors
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4324
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4325
    "
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4326
     2 to:10000 do:[:n |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4327
        self assert:((n isPrime and:[ n primeFactors isEmpty])
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4328
                    or:[ n isPrime not and:[n primeFactors product = n]])
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4329
     ]
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4330
     3 to:10000 do:[:n |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4331
        self assert:(n factorial primeFactors product = n factorial)
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4332
     ]
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4333
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4334
     13195 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4335
     12 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4336
     2 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4337
     3 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4338
     5 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4339
     14 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4340
     13423453625634765 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4341
     13423453625634765 isPrime
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4342
     13423453625634765 gcd:(3 * 5 * 19 * 29)
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4343
     13423453625634765 / 8265
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4344
     1624132320101 isPrime
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4345
     1624132320101 gcd: 8265
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4346
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4347
     1000000 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4348
     100000000 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4349
     1000000000 primeFactors
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4350
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4351
     Time millisecondsToRun:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4352
        1000 timesRepeat:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4353
            10000000000000000000000000000000000000 primeFactors
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4354
        ]
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4355
     ]   421
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4356
    "
13021
1cbf4cdfc288 comment/format
Claus Gittinger <cg@exept.de>
parents: 12978
diff changeset
  4357
13022
43a439f72615 comment/format
Claus Gittinger <cg@exept.de>
parents: 13021
diff changeset
  4358
    "Modified: / 17-08-2010 / 17:28:05 / cg"
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4359
!
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4360
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4361
raisedTo:exp mod:mod
12280
b2bbbfd2444e added: #raisedTo:modulo:
Stefan Vogel <sv@exept.de>
parents: 12255
diff changeset
  4362
    "return the modulo (remainder) of
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4363
     the receiver raised to exp (an Integer) and mod (another Integer)"
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4364
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4365
    |result m t
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4366
     eI   "{Class: SmallInteger}"
5816
ce15ce5294b4 Cleanup unused method vars
Stefan Vogel <sv@exept.de>
parents: 5799
diff changeset
  4367
     bits "{Class: SmallInteger}"|
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4368
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4369
    "use the addition chaining algorithm"
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4370
8335
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4371
    exp == 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4372
        ^ 1
8335
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4373
    ].
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4374
    exp == 1 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4375
        mod isNumber ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4376
            ^ self \\ mod.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4377
        ]
8335
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4378
    ].
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4379
    exp negative ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4380
        ^ self class
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4381
            raise:#domainErrorSignal
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4382
            receiver:self
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4383
            selector:#raisedTo:mod:
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4384
            arguments:(Array with:exp with:mod)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4385
            errorString:'modulo arithmethic with negative exponent'
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4386
    ].
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4387
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4388
    m := mod asModuloNumber.
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4389
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4390
    result := 1.
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4391
    t := m modulusOf:self.
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4392
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4393
    (exp class == SmallInteger) ifTrue:[
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4394
        eI := exp.
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4395
        [eI ~~ 0] whileTrue:[
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4396
            (eI bitAnd:1) == 1 ifTrue:[
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4397
                result := m modulusOf:(result * t).
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4398
            ].
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4399
            eI := eI bitShift:-1.
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4400
            eI ~~ 0 ifTrue:[
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4401
                t := m modulusOf:(t * t).
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4402
            ].
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4403
        ].
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4404
        ^ result.
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4405
    ].
8335
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4406
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4407
    bits := exp highBit.
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4408
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4409
    1 to:bits-1 do:[:i|
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4410
        (exp bitAt:i) == 1 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4411
            result := m modulusOf:(result * t).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4412
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4413
        t := m modulusOf:(t * t).
8335
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4414
    ].
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4415
    result := m modulusOf:(result * t).
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4416
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4417
    ^ result
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4418
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4419
    "
22561
bdaee5e2bf96 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22469
diff changeset
  4420
     Time millisecondsToRun: [100000 timesRepeat: [12345678907 raisedTo: 3 modulo: 12345678917]]
bdaee5e2bf96 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22469
diff changeset
  4421
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4422
     2 raisedTo:2 mod:3
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4423
      20000000000000 raisedTo:200 mod:190  ->  30
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4424
     (20000000000000 raisedTo:200) \\ 190
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4425
8335
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4426
      Time millisecondsToRun:[10000 timesRepeat:[
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4427
                                200000000000000000000000 raisedTo:65537 mod:1900000000000000000000000
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4428
                              ]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4429
                             ]
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4430
8335
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4431
     Time millisecondsToRun:[1000 timesRepeat:[
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4432
                                (200000000000000000000000 raisedTo:65537) \\ 1900000000000000000000000
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4433
                             ]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4434
                            ]
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4435
    "
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4436
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4437
    "Created: / 27.4.1999 / 15:19:22 / stefan"
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4438
    "Modified: / 5.5.1999 / 11:18:20 / stefan"
6195
9e60c38d1d61 #raise:receiver:selector...
Claus Gittinger <cg@exept.de>
parents: 6055
diff changeset
  4439
    "Modified: / 16.11.2001 / 14:15:21 / cg"
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4440
!
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4441
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4442
raisedToCrtModP:p q:q ep:ep eq:eq u:u
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4443
    "Application of the Chinese Remainder Theorem (CRT).
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4444
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4445
     This is a faster modexp for moduli with a known factorisation into two
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4446
     relatively prime factors p and q, and an input relatively prime to the
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4447
     modulus, the Chinese Remainder Theorem to do the computation mod p and
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4448
     mod q, and then combine the results.  This relies on a number of
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4449
     precomputed values, but does not actually require the modulus n or the
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4450
     exponent e.
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4451
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4452
     expout = expin ^ e mod (p*q).
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4453
     We form this by evaluating
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4454
     p2 = (expin ^ e) mod p and
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4455
     q2 = (expin ^ e) mod q
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4456
     and then combining the two by the CRT.
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4457
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4458
     Two optimisations of this are possible.  First, we can reduce expin
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4459
     modulo p and q before starting.
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4460
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4461
     Second, since we know the factorisation of p and q (trivially derived
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4462
     from the factorisation of n = p*q), and expin is relatively prime to
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4463
     both p and q, we can use Euler's theorem, expin^phi(m) = 1 (mod m),
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4464
     to throw away multiples of phi(p) or phi(q) in e.
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4465
     Letting ep = e mod phi(p) and
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4466
              eq = e mod phi(q)
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4467
     then combining these two speedups, we only need to evaluate
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4468
     p2 = ((expin mod p) ^ ep) mod p and
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4469
     q2 = ((expin mod q) ^ eq) mod q.
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4470
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4471
     Now we need to apply the CRT.  Starting with
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4472
     expout = p2 (mod p) and
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4473
     expout = q2 (mod q)
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4474
     we can say that expout = p2 + p * k, and if we assume that 0 <= p2 < p,
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4475
     then 0 <= expout < p*q for some 0 <= k < q.  Since we want expout = q2
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4476
     (mod q), then p*k = q2-p2 (mod q).  Since p and q are relatively prime,
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4477
     p has a multiplicative inverse u mod q.  In other words, u = 1/p (mod q).
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4478
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4479
     Multiplying by u on both sides gives k = u*(q2-p2) (mod q).
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4480
     Since we want 0 <= k < q, we can thus find k as
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4481
     k = (u * (q2-p2)) mod q.
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4482
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4483
     Once we have k, evaluating p2 + p * k is easy, and
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4484
     that gives us the result
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4485
    "
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4486
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4487
    |result t mp mq|
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4488
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4489
    mp := p asModuloNumber.
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4490
    result := self raisedTo:ep mod:mp.
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4491
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4492
    mq := q asModuloNumber.
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4493
    t := self raisedTo:eq mod:mq.
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4494
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4495
    "now p2 is in result, q2 in t"
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4496
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  4497
    t := t - result.
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  4498
    t negative ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4499
        t := t + q.
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4500
    ].
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  4501
    t := t * u.
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4502
    t := mq modulusOf:t.
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  4503
    t := t * p.
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  4504
    result := result + t.
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4505
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4506
    ^ result.
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4507
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4508
    "Created: / 30.4.1999 / 15:53:15 / stefan"
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4509
    "Modified: / 5.5.1999 / 11:01:15 / stefan"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4510
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4511
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4512
!Integer methodsFor:'printing & storing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4513
16038
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4514
asBCD
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4515
    "return an integer which represents the BCD encoded value of the receiver;
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4516
     that is: each digit of its decimal representation is placed into a nibble
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4517
     of the result. (aka 162 -> 0x162).
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4518
     This conversion is useful for some communication protocols,
16040
4708e4544528 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16038
diff changeset
  4519
     or control systems, which represent numbers this way...
4708e4544528 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16038
diff changeset
  4520
     This fallback code is not particularily tuned or optimized for speed."
16038
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4521
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4522
    |rest twoDigits hi lo shift out|
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4523
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4524
    out := 0. shift := 0.
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4525
    rest := self.
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4526
    [rest > 0] whileTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4527
        twoDigits := rest \\ 100.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4528
        rest := rest // 100.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4529
        hi := twoDigits // 10.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4530
        lo := twoDigits \\ 10.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4531
        out := out bitOr:(((hi bitShift:4)+lo) bitShift:shift).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4532
        shift := shift + 8.
16038
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4533
    ].
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4534
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4535
    ^ out
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4536
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4537
    "
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4538
     (100 factorial) asBCD
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4539
     999999999 asBCD
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4540
     100000000 asBCD
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4541
     123456789 asBCD
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4542
     99999999 asBCD
16038
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4543
     12345678 asBCD
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4544
     12345678 asBCD
16038
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4545
     12345678 asBCD hexPrintString
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4546
     12345678901234567890 asBCD
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4547
    "
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4548
!
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4549
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4550
asBCDBytes
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4551
    "return a byteArray containing the receiver in BCD encoding.
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4552
     The byteArray will contain the BCD encoded decimal string,
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4553
     starting with the most significant digits first.
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4554
     This conversion is useful for some communication protocols,
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4555
     or control systems, which represent big numbers this way...
16038
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4556
     This is not particularily tuned or optimized for speed."
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4557
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4558
    |s rest twoDigits hi lo|
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4559
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4560
    self == 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4561
        ^ #[ 16r00 ]
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4562
    ].
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4563
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4564
    "/ a very rough estimate on the final size ...
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4565
    s := (ByteArray new:(self digitLength * 2)) writeStream.
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4566
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4567
    rest := self.
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4568
    [rest > 0] whileTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4569
        twoDigits := rest \\ 100.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4570
        rest := rest // 100.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4571
        hi := twoDigits \\ 10.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4572
        lo := twoDigits // 10.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4573
        s nextPut:(lo bitShift:4)+hi
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4574
    ].
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4575
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4576
    ^ s contents reverse
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4577
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4578
    "
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4579
     12345678 asBCDBytes
16038
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4580
     12345678 asBCDBytes hexPrintString
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4581
     12345678901234567890 asBCDBytes
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4582
    "
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4583
!
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4584
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4585
errorPrintHex
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4586
    "print the receiver as a hex number on the standard error stream"
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4587
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4588
     (self printStringRadix:16) errorPrint
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4589
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4590
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4591
hexPrintString
23382
e11a8bed0f9e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23119
diff changeset
  4592
    "return a hex string representation of the receiver.
e11a8bed0f9e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23119
diff changeset
  4593
     Notice: this is not padded in any way"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4594
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4595
    ^ self printStringRadix:16
3874
a04715e25340 comment
Claus Gittinger <cg@exept.de>
parents: 3683
diff changeset
  4596
a04715e25340 comment
Claus Gittinger <cg@exept.de>
parents: 3683
diff changeset
  4597
    "
23382
e11a8bed0f9e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23119
diff changeset
  4598
     9 hexPrintString
3874
a04715e25340 comment
Claus Gittinger <cg@exept.de>
parents: 3683
diff changeset
  4599
     127 hexPrintString
a04715e25340 comment
Claus Gittinger <cg@exept.de>
parents: 3683
diff changeset
  4600
     -1 hexPrintString
a04715e25340 comment
Claus Gittinger <cg@exept.de>
parents: 3683
diff changeset
  4601
    "
a04715e25340 comment
Claus Gittinger <cg@exept.de>
parents: 3683
diff changeset
  4602
23382
e11a8bed0f9e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23119
diff changeset
  4603
    "Modified: / 11-10-1998 / 01:15:43 / cg"
e11a8bed0f9e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23119
diff changeset
  4604
    "Modified (comment): / 23-09-2018 / 03:48:57 / Claus Gittinger"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4605
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4606
2408
fd31506f31ef added #hexPrintString:
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
  4607
hexPrintString:size
fd31506f31ef added #hexPrintString:
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
  4608
    "return a hex string representation of the receiver,
fd31506f31ef added #hexPrintString:
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
  4609
     padded to size characters"
fd31506f31ef added #hexPrintString:
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
  4610
5799
547c417b23cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5782
diff changeset
  4611
"/    ^ (self printStringRadix:16) leftPaddedTo:size with:$0
547c417b23cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5782
diff changeset
  4612
    ^ self printStringRadix:16 size:size fill:$0
547c417b23cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5782
diff changeset
  4613
547c417b23cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5782
diff changeset
  4614
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4615
     12345 hexPrintString:4
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4616
     123 hexPrintString:4
5799
547c417b23cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5782
diff changeset
  4617
    "
2408
fd31506f31ef added #hexPrintString:
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
  4618
fd31506f31ef added #hexPrintString:
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
  4619
    "Created: 18.2.1997 / 13:32:33 / cg"
fd31506f31ef added #hexPrintString:
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
  4620
!
fd31506f31ef added #hexPrintString:
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
  4621
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4622
printHex
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4623
    "print the receiver as a hex number on the standard output stream"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4624
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4625
     (self printStringRadix:16) print
21938
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4626
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4627
    "
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4628
     16rAFFE printStringRadix:16
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4629
    "
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4630
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4631
    "Modified (comment): / 02-07-2017 / 10:20:59 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4632
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4633
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4634
printOn:aStream base:base showRadix:showRadix
5988
Claus Gittinger <cg@exept.de>
parents: 5882
diff changeset
  4635
    "append a string representation of the receiver in the specified numberBase to aStream
Claus Gittinger <cg@exept.de>
parents: 5882
diff changeset
  4636
     (if showRadix is true, with initial XXr)
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4637
     The base argument should be between 2 and 36.
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4638
     If it is negative, digits > 9 are printed as lowecase a-z."
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4639
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4640
    |absBase num s divMod mod r r2 r4 nD numN string|
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4641
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4642
    (base isInteger and:[absBase := base abs. absBase between:2 and:36]) ifFalse:[
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4643
        ConversionError raiseRequestWith:self errorString:' - invalid base: ', absBase printString.
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4644
        absBase := 10.
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 52
diff changeset
  4645
    ].
06dbdeeed4f9 *** empty log message ***
claus
parents: 52
diff changeset
  4646
5988
Claus Gittinger <cg@exept.de>
parents: 5882
diff changeset
  4647
    showRadix ifTrue:[
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4648
        absBase printOn:aStream.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4649
        aStream nextPut:$r.
5988
Claus Gittinger <cg@exept.de>
parents: 5882
diff changeset
  4650
    ].
Claus Gittinger <cg@exept.de>
parents: 5882
diff changeset
  4651
3188
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4652
    (self = 0) ifTrue:[aStream nextPut:$0. ^ self].
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4653
    self negative ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4654
        aStream nextPut:$- .
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4655
        num := self negated.
3188
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4656
    ] ifFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4657
        num := self.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4658
    ].
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4659
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4660
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4661
     claus: changed it from a recursive algorithm;
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  4662
     (it used to trigger stack-overflow exceptions when printing 3000 factorial ...)
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4663
    "
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  4664
    "/    leftPart := num // base.
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  4665
    "/    (leftPart ~= 0) ifTrue:[
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  4666
    "/        leftPart printOn:aStream base:base.
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  4667
    "/        aStream nextPut:(Character digitValue:(num \\ base).
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  4668
    "/        ^ self
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  4669
    "/    ].
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  4670
    "/    aStream nextPut:(Character digitValue:num).
2951
256e90eee7f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2816
diff changeset
  4671
3121
91de0211651c even faster largeInt printString, by doing it in bigger junks (8digits a time)
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  4672
    "/ instead of computing the quotient and remainder
3136
91dbf1ea13a6 print in junks of 6 digits (instead of 8 digits)
Claus Gittinger <cg@exept.de>
parents: 3135
diff changeset
  4673
    "/ against radix, do it in junks of 5 or 6 digits.
3121
91de0211651c even faster largeInt printString, by doing it in bigger junks (8digits a time)
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  4674
    "/ This reduces the number of LargeInt-divisions
91de0211651c even faster largeInt printString, by doing it in bigger junks (8digits a time)
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  4675
    "/ by that factor (turning them into smallInt divisions
91de0211651c even faster largeInt printString, by doing it in bigger junks (8digits a time)
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  4676
    "/ within that junk) and speeds up the conversions noticably.
1842
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  4677
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4678
    r2 := absBase*absBase.   "/ radix^2
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  4679
    r4 := r2*r2.        "/ radix^4
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4680
    absBase <= 10 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4681
        r := r4*r2.     "/ radix^6 (chunks of 6 digits)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4682
        nD := 6.
3121
91de0211651c even faster largeInt printString, by doing it in bigger junks (8digits a time)
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  4683
    ] ifFalse:[
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4684
        r := r4*absBase.    "/ radix^5 (chunks of 5 digits)
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4685
        nD := 5.
3121
91de0211651c even faster largeInt printString, by doing it in bigger junks (8digits a time)
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  4686
    ].
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  4687
    SmallInteger maxBits >= 63 ifTrue:[
19159
c92bc53e745e #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19131
diff changeset
  4688
        r := r*r2.    "/ radix^7 (chunks of 6 digits)
c92bc53e745e #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19131
diff changeset
  4689
        nD := nD + 2.
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  4690
    ].
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4691
3188
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4692
    "get a Stream with space for the digits we are going to print.
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4693
     We need ((num log:base) ceiling) digits, which is equivalent
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4694
     to ((num log:2)/(base log:2) ceiling)
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4695
    "
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  4696
    s := WriteStream on:(String new:10).
3188
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4697
3121
91de0211651c even faster largeInt printString, by doing it in bigger junks (8digits a time)
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  4698
    [num >= r] whileTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4699
        "/
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4700
        "/ chop off nD digits.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4701
        "/
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4702
        divMod := num divMod:r.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4703
        num := divMod at:1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4704
        numN := divMod at:2.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4705
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4706
        "/ process them
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4707
        nD timesRepeat:[
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4708
            divMod := numN divMod:absBase.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4709
            numN := divMod at:1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4710
            mod := divMod at:2.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4711
            s nextPut:(Character digitValue:mod).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4712
        ].
2951
256e90eee7f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2816
diff changeset
  4713
    ].
1842
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  4714
19089
82c431661f59 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19078
diff changeset
  4715
    [num ~~ 0] whileTrue:[
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4716
        divMod := num divMod:absBase.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4717
        num := divMod at:1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4718
        mod := divMod at:2.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4719
        s nextPut:(Character digitValue:mod).
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4720
    ].
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4721
    string := s contents reverse.
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4722
    base < 0 ifTrue:[
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4723
        string := string asLowercase.
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4724
    ].
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4725
    aStream nextPutAll:string.
3188
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4726
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4727
    "
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4728
        3000 factorial printOn:Transcript base:10
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4729
        10 printOn:Transcript base:3
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4730
        31 printOn:Transcript base:3
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4731
        10 printOn:Transcript base:2
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4732
        31 printOn:Transcript base:2
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4733
        -28  printOn:Transcript base:16
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4734
        -28  printOn:Transcript base:-16
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4735
        -20  printOn:Transcript base:10
19159
c92bc53e745e #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19131
diff changeset
  4736
        Time millisecondsToRun:[10000 factorial printString]
c92bc53e745e #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19131
diff changeset
  4737
        '%012d' printf:{  (2 raisedTo:20) }
12976
a12aab15ce5a changed: #printOn:base:showRadix:
Claus Gittinger <cg@exept.de>
parents: 12875
diff changeset
  4738
    "
a12aab15ce5a changed: #printOn:base:showRadix:
Claus Gittinger <cg@exept.de>
parents: 12875
diff changeset
  4739
a12aab15ce5a changed: #printOn:base:showRadix:
Claus Gittinger <cg@exept.de>
parents: 12875
diff changeset
  4740
    "Modified: / 20-01-1998 / 18:05:02 / stefan"
a12aab15ce5a changed: #printOn:base:showRadix:
Claus Gittinger <cg@exept.de>
parents: 12875
diff changeset
  4741
    "Created: / 07-09-2001 / 13:51:33 / cg"
a12aab15ce5a changed: #printOn:base:showRadix:
Claus Gittinger <cg@exept.de>
parents: 12875
diff changeset
  4742
    "Modified: / 02-08-2010 / 12:24:14 / cg"
3188
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4743
!
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4744
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4745
printOn:aStream base:baseInteger size:sz
15775
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4746
    "print a string representation of the receiver in the specified
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4747
     base. The string is padded on the left with fillCharacter to make
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4748
     its size as specified in sz."
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4749
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4750
    self printOn:aStream base:baseInteger size:sz fill:$0
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4751
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4752
    "
20268
e700943eea09 #DOCUMENTATION by mawalch
mawalch
parents: 20140
diff changeset
  4753
     1024 printOn:Transcript base:16 size:4.
15775
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4754
     1024 printOn:Transcript base:2 size:16.
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4755
     1024 printOn:Transcript base:16 size:8.
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4756
    "
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4757
!
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4758
7173
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4759
printOn:aStream base:baseInteger size:sz fill:fillCharacter
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4760
    "print a string representation of the receiver in the specified
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4761
     base. The string is padded on the left with fillCharacter to make
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4762
     its size as specified in sz."
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4763
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4764
    |string actualSize|
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4765
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4766
    string := self printStringRadix:baseInteger.
7173
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4767
    actualSize := string size.
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4768
    actualSize < sz ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4769
        aStream next:sz-actualSize put:fillCharacter.
7173
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4770
    ].
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4771
    aStream nextPutAll:string.
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4772
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4773
    "
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  4774
     1024 printOn:Transcript base:16 size:4 fill:$0.
7173
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4775
     1024 printOn:Transcript base:2 size:16 fill:$.
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4776
     1024 printOn:Transcript base:16 size:8 fill:Character space.
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4777
    "
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4778
!
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4779
3188
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4780
printOn:aStream radix:base
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4781
    "append a printed description of the receiver to aStream.
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4782
     The receiver is printed in radix base (instead of the default, 10).
5988
Claus Gittinger <cg@exept.de>
parents: 5882
diff changeset
  4783
     This method is obsoleted by #printOn:base:, which is ST-80 & ANSI compatible."
3188
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4784
8897
da8d205a93aa Mark obsolete method as obsolete
Stefan Vogel <sv@exept.de>
parents: 8892
diff changeset
  4785
    <resource: #obsolete>
da8d205a93aa Mark obsolete method as obsolete
Stefan Vogel <sv@exept.de>
parents: 8892
diff changeset
  4786
3188
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4787
    self printOn:aStream base:base
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4788
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4789
    "Modified: / 20.1.1998 / 14:10:45 / stefan"
5988
Claus Gittinger <cg@exept.de>
parents: 5882
diff changeset
  4790
    "Modified: / 7.9.2001 / 13:58:29 / cg"
3188
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4791
!
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4792
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4793
printRomanOn:aStream
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4794
    "print the receiver as roman number to the receiver, aStream.
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4795
     This converts correct (i.e. prefix notation for 4,9,40,90, etc.)."
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4796
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4797
    ^ self printRomanOn:aStream naive:false
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4798
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4799
    "
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4800
     1 to:10 do:[:i | i printRomanOn:Transcript. Transcript cr.].
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4801
     1999 printRomanOn:Transcript. Transcript cr.
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4802
     Date today year printRomanOn:Transcript. Transcript cr.
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4803
    "
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4804
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4805
    "test all between 1 and 9999:
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4806
      1 to:9999 do:[:n |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4807
        |romanString|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4808
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4809
        romanString := String streamContents:[:stream | n printRomanOn:stream].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4810
        (Integer readFromRomanString:romanString onError:nil) ~= n ifTrue:[self halt].
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4811
     ]
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4812
    "
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4813
!
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4814
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4815
printRomanOn:aStream naive:naive
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4816
    "print the receiver as roman number to the receiver, aStream.
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4817
     The naive argument controls if the conversion is
6682
9a97f4deb836 more on roman numbers
Claus Gittinger <cg@exept.de>
parents: 6673
diff changeset
  4818
     correct (i.e. subtracting prefix notation for 4,9,40,90, etc.),
9a97f4deb836 more on roman numbers
Claus Gittinger <cg@exept.de>
parents: 6673
diff changeset
  4819
     or naive (i.e. print 4 as IIII and 9 as VIIII); also called simple.
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4820
     The naive version is often used for page numbers in documents."
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4821
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4822
    |restValue spec|
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4823
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4824
    restValue := self.
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4825
    restValue > 0 ifFalse:[self error:'negative roman'].
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4826
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4827
    naive ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4828
        spec := #(
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4829
                " value string repeat "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4830
                   1000 'M'    true
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4831
                    500 'D'    false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4832
                    100 'C'    true
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4833
                     50 'L'    false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4834
                     10 'X'    true
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4835
                      5 'V'    false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4836
                      1 'I'    true
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4837
                 ).
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4838
    ] ifFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4839
        spec := #(
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4840
                " value string repeat "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4841
                   1000 'M'    true
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4842
                    900 'CM'   false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4843
                    500 'D'    false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4844
                    400 'CD'   false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4845
                    100 'C'    true
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4846
                     90 'XC'   false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4847
                     50 'L'    false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4848
                     40 'XL'   false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4849
                     10 'X'    true
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4850
                      9 'IX'   false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4851
                      5 'V'    false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4852
                      4 'IV'   false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4853
                      1 'I'    true
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4854
                 ).
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4855
    ].
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4856
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4857
    spec
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4858
        inGroupsOf:3
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4859
        do:[:rValue :rString :repeatFlag |
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4860
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4861
            [
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4862
                (restValue >= rValue) ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4863
                    aStream nextPutAll:rString.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4864
                    restValue := restValue - rValue.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4865
                ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4866
            ] doWhile:[ repeatFlag and:[ restValue >= rValue] ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4867
        ].
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4868
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4869
    "
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4870
     1 to:10 do:[:i | i printRomanOn:Transcript naive:false. Transcript cr.].
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4871
     1 to:10 do:[:i | i printRomanOn:Transcript naive:true. Transcript cr.].
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4872
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4873
     1999 printRomanOn:Transcript. Transcript cr.
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4874
     Date today year printRomanOn:Transcript. Transcript cr.
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4875
    "
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4876
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4877
    "test all between 1 and 9999:
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4878
      1 to:9999 do:[:n |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4879
        |romanString|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4880
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4881
        romanString := String streamContents:[:stream | n printRomanOn:stream naive:false].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4882
        (Integer readFromRomanString:romanString onError:nil) ~= n ifTrue:[self halt].
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4883
     ]
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4884
    "
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4885
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4886
    "test naive all between 1 and 9999:
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4887
      1 to:9999 do:[:n |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4888
        |romanString|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4889
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4890
        romanString := String streamContents:[:stream | n printRomanOn:stream naive:true].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4891
        (Integer readFromRomanString:romanString onError:nil) ~= n ifTrue:[self halt].
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4892
     ]
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4893
    "
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4894
!
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4895
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4896
printStringRadix:aRadix size:sz fill:fillCharacter
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4897
    "return a string representation of the receiver in the specified
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4898
     radix. The string is padded on the left with fillCharacter to make
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4899
     its size as specified in sz."
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4900
2951
256e90eee7f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2816
diff changeset
  4901
    |s actualSize|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4902
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4903
    s := self printStringRadix:aRadix.
2951
256e90eee7f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2816
diff changeset
  4904
    actualSize := s size.
256e90eee7f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2816
diff changeset
  4905
    actualSize < sz ifTrue:[
23980
6644ef2d4826 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23944
diff changeset
  4906
        ^ (String new:(sz - actualSize) withAll:fillCharacter) , s
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4907
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4908
    ^ s
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4909
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4910
    "
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  4911
     1024 printStringRadix:16 size:4 fill:$0.
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4912
     1024 printStringRadix:2 size:16 fill:$.
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4913
     1024 printStringRadix:16 size:8 fill:(Character space)
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4914
    "
23980
6644ef2d4826 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23944
diff changeset
  4915
6644ef2d4826 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23944
diff changeset
  4916
    "Modified: / 26-03-2019 / 11:54:52 / Claus Gittinger"
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4917
!
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4918
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4919
romanPrintString
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4920
    "return a roman number representation of the receiver as a string"
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4921
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4922
    ^ String streamContents:[:stream | self printRomanOn:stream].
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4923
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4924
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4925
     1999 romanPrintString.
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4926
     Date today year romanPrintString.
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4927
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4928
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4929
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4930
!Integer methodsFor:'private'!
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4931
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4932
numberOfDigits:n8BitDigits
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4933
    "initialize the instance to store n8BitDigits"
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4934
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4935
    ^ self subclassResponsibility.
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4936
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4937
    "Created: / 01-11-2018 / 11:28:56 / Stefan Vogel"
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4938
!
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4939
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4940
numberOfDigits:n8BitDigits sign:newSign
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4941
    "initialize the instance to store n8BitDigits and sign"
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4942
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4943
    ^ self subclassResponsibility.
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4944
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4945
    "Created: / 01-11-2018 / 12:12:56 / Stefan Vogel"
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4946
!
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4947
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4948
setSign:aNumber
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4949
    "private: for protocol completeness with LargeIntegers.
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4950
     Returns a smallInteger with my absValue and the sign of the argument.
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4951
     The method's name may be misleading: the receiver is not changed,
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4952
     but a new number is returned."
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4953
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4954
    |absVal|
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4955
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4956
    aNumber == 0 ifTrue:[
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4957
        ^ 0
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4958
    ].
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4959
    absVal := self abs.
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4960
    aNumber < 0 ifTrue:[
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4961
        ^ absVal negated
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4962
    ].
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4963
    ^ absVal
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4964
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4965
    "
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4966
     -4 sign:-1
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4967
     -4 sign:0
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4968
     -4 sign:1
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4969
     -4 sign:-1
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4970
     -4 sign:0
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4971
     -4 sign:1
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4972
    "
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4973
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4974
    "Modified (format): / 01-11-2018 / 12:22:48 / Stefan Vogel"
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4975
!
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4976
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4977
sign:aNumber
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4978
    <resource: #obsolete>
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4979
    "destructively change the sign of the receiver"
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4980
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4981
    ^ self setSign:aNumber
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4982
! !
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4983
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4984
!Integer methodsFor:'queries'!
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 159
diff changeset
  4985
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4986
digitAt:n
6055
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  4987
    "return the n-th byte of the binary representation."
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  4988
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  4989
    self subclassResponsibility
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  4990
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  4991
    "This is a very stupid implementation, and should be redefined in
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4992
     concrete subclasses."
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 159
diff changeset
  4993
6055
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  4994
"/    |num count|
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  4995
"/
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  4996
"/    num := self.
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  4997
"/    count := n.
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  4998
"/    [count > 1] whileTrue:[
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  4999
"/        num := num // 256.
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5000
"/        count := count - 1
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5001
"/    ].
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5002
"/    ^ num \\ 256
159
514c749165c3 *** empty log message ***
claus
parents: 132
diff changeset
  5003
514c749165c3 *** empty log message ***
claus
parents: 132
diff changeset
  5004
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5005
     16r44332211 digitAt:1
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5006
     16r44332211 digitAt:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5007
     16r44332211 digitAt:3
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5008
     16r44332211 digitAt:4
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5009
     16r44332211 digitAt:5
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5010
     16r00332211 digitAt:4
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5011
     16r00332211 digitAt:5
159
514c749165c3 *** empty log message ***
claus
parents: 132
diff changeset
  5012
    "
6055
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5013
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5014
    "Modified: / 26.9.2001 / 21:21:21 / cg"
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5015
!
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5016
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5017
digitByteAt:n
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5018
    "return 8 bits of my signed value, starting at byte index.
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5019
     For positive receivers, this is the same as #digitAt:;
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5020
     for negative ones, the actual bit representation is returned."
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5021
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5022
    self subclassResponsibility
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5023
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5024
    "Created: / 26.9.2001 / 21:18:43 / cg"
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5025
    "Modified: / 26.9.2001 / 21:20:19 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5026
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5027
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5028
digitLength
19319
88ea441f7071 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19316
diff changeset
  5029
    "return the number of bytes needed for the unsigned binary representation of the receiver.
88ea441f7071 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19316
diff changeset
  5030
     For negative receivers, the result is not defined by the language standard.
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  5031
     This method is redefined in concrete classes
19319
88ea441f7071 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19316
diff changeset
  5032
     - the fallback here is actually never used."
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5033
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5034
    ^ (self log:256) ceiling asInteger
2816
62edd11b5e66 commentary
Claus Gittinger <cg@exept.de>
parents: 2794
diff changeset
  5035
62edd11b5e66 commentary
Claus Gittinger <cg@exept.de>
parents: 2794
diff changeset
  5036
    "Modified: 31.7.1997 / 13:19:06 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5037
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5038
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5039
exponent
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5040
    "return what would be the normalized float's exponent if I were a float.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5041
     This is not for general use - it has been added for dolphin (soap) compatibility.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5042
     This assumes that the mantissa is normalized to
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5043
     0.5 .. 1.0 and the number's value is: mantissa * 2^exp"
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5044
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5045
    ^ self abs highBit
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5046
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5047
    "
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5048
     self assert:( 1.0 exponent = 1 exponent ).
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5049
     self assert:( 2.0 exponent = 2 exponent ).
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5050
     self assert:( 3.0 exponent = 3 exponent ).
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5051
     self assert:( 4.0 exponent = 4 exponent ).
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5052
     self assert:( 12345.0 exponent = 12345 exponent ).
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5053
     self assert:( 0.0 exponent = 0 exponent ).
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5054
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5055
     self assert:( -1.0 exponent = -1 exponent ).
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5056
     self assert:( -2.0 exponent = -2 exponent ).
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5057
     self assert:( -3.0 exponent = -3 exponent ).
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5058
     self assert:( -4.0 exponent = -4 exponent ).
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5059
     self assert:( -12345.0 exponent = -12345 exponent ).
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5060
    "
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5061
!
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5062
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5063
isInteger
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5064
    "return true, if the receiver is some kind of integer number"
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5065
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5066
    ^ true
3036
f2d332547db7 added #isPowerOf2
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5067
!
f2d332547db7 added #isPowerOf2
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5068
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5069
isLiteral
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5070
    "return true, if the receiver can be used as a literal constant in ST syntax
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5071
     (i.e. can be used in constant arrays)"
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5072
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5073
    ^ true
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5074
!
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5075
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5076
isPerfectSquare
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5077
    "return true if I am a perfect square.
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5078
     That is a number for which the square root is an integer."
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5079
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5080
    |intSqrt realSqrt|
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5081
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5082
    self strictlyPositive ifFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5083
        self == 0 ifTrue:[^ true].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5084
        "/ should we raise a domain error for negative receivers?
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5085
        ^ false
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5086
    ].
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5087
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5088
    "/ q&d check for common small squares
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5089
    self < 400 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5090
        ^ #(1 4 9 16 25 36 49 64 81 100 121 144 169 196 225 256 289 324 361 ) includes:self.
19058
Claus Gittinger <cg@exept.de>
parents: 19053
diff changeset
  5091
    ].
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5092
    self < 1024 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5093
        ^ #(400 441 484 529 576 625 676 729 784 841 900 961) includes:self.
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5094
    ].
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5095
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5096
    "/ try powers of 2
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5097
    self isPowerOfTwo ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5098
        ^ self lowBit odd
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5099
    ].
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5100
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5101
    "/ guess
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5102
    realSqrt := self sqrt.
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5103
    realSqrt isFinite ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5104
        realSqrt = realSqrt truncated ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5105
            "/ still have to check due to rounding errors.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5106
            intSqrt := realSqrt truncated asInteger.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5107
            ^ intSqrt squared = self
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5108
        ].
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5109
    ].
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5110
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5111
    "/ slow code
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5112
    intSqrt := self integerSqrt.
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5113
    ^ intSqrt squared = self
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5114
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5115
    "
19058
Claus Gittinger <cg@exept.de>
parents: 19053
diff changeset
  5116
     0 isPerfectSquare
Claus Gittinger <cg@exept.de>
parents: 19053
diff changeset
  5117
     3 isPerfectSquare
Claus Gittinger <cg@exept.de>
parents: 19053
diff changeset
  5118
     4 isPerfectSquare
Claus Gittinger <cg@exept.de>
parents: 19053
diff changeset
  5119
     9 isPerfectSquare
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5120
     (1 to:1000000) count:[:n | n isPerfectSquare] 1000
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5121
     12345678987654321234567 isPerfectSquare
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5122
     123123123432 squared isPerfectSquare
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5123
     (123123123432 raisedTo:7) isPerfectSquare
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5124
     ((123456789123456789 raisedTo:7)) isPerfectSquare
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5125
     ((123456789123456789 raisedTo:7)-1) isPerfectSquare
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5126
     Time microsecondsToRun:[12345678987654321234567 isPerfectSquare]
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5127
    "
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5128
!
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5129
9134
98d5bfd1cc51 +isPowerOf:
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  5130
isPowerOf:p
98d5bfd1cc51 +isPowerOf:
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  5131
    "return true, if the receiver is a power of p"
98d5bfd1cc51 +isPowerOf:
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  5132
98d5bfd1cc51 +isPowerOf:
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  5133
    p == 2 ifTrue:[ ^ self isPowerOfTwo].
98d5bfd1cc51 +isPowerOf:
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  5134
98d5bfd1cc51 +isPowerOf:
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  5135
    "/ the following is a q&d hack, using existing code.
98d5bfd1cc51 +isPowerOf:
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  5136
    ^ (Integer
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5137
        readFromString:(self printStringRadix:p)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5138
        radix:2
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5139
        onError:-1) isPowerOfTwo
9134
98d5bfd1cc51 +isPowerOf:
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  5140
98d5bfd1cc51 +isPowerOf:
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  5141
    "
19058
Claus Gittinger <cg@exept.de>
parents: 19053
diff changeset
  5142
     0 isPowerOf:2
Claus Gittinger <cg@exept.de>
parents: 19053
diff changeset
  5143
     1 isPowerOf:2
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5144
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5145
     16r0000000000000000 isPowerOf:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5146
     16r0000004000000000 isPowerOf:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5147
     16r0000004000000001 isPowerOf:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5148
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5149
     16r0000000000000001 isPowerOf:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5150
     16r0000000000000002 isPowerOf:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5151
     16r0000000000000004 isPowerOf:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5152
     16r0000000000000008 isPowerOf:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5153
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5154
     16r0000000000000001 isPowerOf:4
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5155
     16r0000000000000002 isPowerOf:4
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5156
     16r0000000000000004 isPowerOf:4
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5157
     16r0000000000000008 isPowerOf:4
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5158
     16r0000000000000010 isPowerOf:4
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5159
     16r0000000000000020 isPowerOf:4
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5160
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5161
     3r0000000000000001 isPowerOf:3
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5162
     3r0000000000000010 isPowerOf:3
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5163
     3r0000000000000100 isPowerOf:3
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5164
     3r0000000000001000 isPowerOf:3
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5165
     3r0000000000001001 isPowerOf:3
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5166
     3r0000000000002000 isPowerOf:3
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5167
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5168
     10 isPowerOf:10
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5169
     20 isPowerOf:10
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5170
     100 isPowerOf:10
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5171
     110 isPowerOf:10
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5172
     200 isPowerOf:10
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5173
     1000 isPowerOf:10
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5174
     10000 isPowerOf:10
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5175
     100000 isPowerOf:10
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5176
     100001 isPowerOf:10
9134
98d5bfd1cc51 +isPowerOf:
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  5177
 "
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5178
!
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5179
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5180
isPowerOfTwo
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5181
    "return true, if the receiver is a power of 2"
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5182
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5183
    "redefined, because the hacker's algorithm in smallInt is much slower for large numbers"
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5184
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5185
    |maxBytes "{ Class: SmallInteger }"|
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5186
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5187
    maxBytes := self digitLength.
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5188
    (self digitAt:maxBytes) isPowerOfTwo ifFalse:[^ false].
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5189
    1 to:maxBytes-1 do:[:byteIndex |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5190
        (self digitAt:byteIndex) ~~ 0 ifTrue:[^ false].
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5191
    ].
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5192
    ^ true
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5193
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5194
    "
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5195
     10000 factorial isPowerOfTwo
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5196
     |n| n := 10000 factorial. Time millisecondsToRun:[1000 timesRepeat:[ n isPowerOfTwo]]
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5197
    "
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5198
    "
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5199
     (2 raisedTo:10000) isPowerOfTwo
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5200
     |n| n := (2 raisedTo:10000). Time millisecondsToRun:[1000 timesRepeat:[ n isPowerOfTwo]]
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5201
    "
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5202
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5203
    "Modified: / 20-06-2011 / 12:43:05 / cg"
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5204
!
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5205
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5206
isPrime
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5207
    "return true if I am a prime Number.
22114
94a519213339 #BUGFIX by mawalch
mawalch
parents: 22107
diff changeset
  5208
     Pre-condition: I am positive.
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5209
     This is a q&d hack, which may need optimization if heavily used."
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5210
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5211
    |limit firstFewPrimes|
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5212
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5213
    self even ifTrue:[^ self == 2 ].
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5214
    self == 1 ifTrue:[^ false ].
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5215
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5216
    "/ See comment in initializePrimeCacheUpTo:limit
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5217
    "/      Integer initializePrimeCacheUpTo:(10 raisedTo:7)
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5218
    "/      Integer flushPrimeCache
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5219
    "/
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5220
    "/ by default, no primeCache is used.
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5221
    "/ if you do lots of number-stuff with primes, you may want to enable it with
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5222
    "/      Integer initializePrimeCacheUpTo:1000000
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5223
    "/ and when done, cleanup with flushPrimeCache
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5224
    PrimeCache notNil ifTrue:[
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5225
        self <= (PrimeCache size*2) ifTrue:[
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5226
            ^ PrimeCache at:self//2.
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5227
        ].
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5228
    ].
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  5229
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5230
    firstFewPrimes := self class primesUpTo5000.
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5231
    limit := firstFewPrimes last + 1.
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5232
    self < (limit*limit) ifTrue:[
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5233
        limit := self sqrt asInteger.
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  5234
    ].
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5235
    firstFewPrimes do:[:p |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5236
        p > limit ifTrue:[^ true].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5237
        (self \\ p) == 0 ifTrue:[ ^ false ].
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5238
    ].
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5239
19118
c49679d75a5d #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19094
diff changeset
  5240
    PrimeNumberGenerator notNil ifTrue:[    "from exept:libcrypt"
c49679d75a5d #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19094
diff changeset
  5241
        "speed up a lot for large primes"
c49679d75a5d #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19094
diff changeset
  5242
        ^ PrimeNumberGenerator isPrime:self.
c49679d75a5d #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19094
diff changeset
  5243
    ].
c49679d75a5d #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19094
diff changeset
  5244
22114
94a519213339 #BUGFIX by mawalch
mawalch
parents: 22107
diff changeset
  5245
    "/ Not absolutely correct, but was broken much worse before.
22118
bb1fee4735ae #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 22114
diff changeset
  5246
    limit := self integerSqrt.
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5247
    (firstFewPrimes last+2) to:limit by:2 do:[:i |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5248
        (self \\ i) == 0 ifTrue:[ ^ false ].
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5249
    ].
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5250
    ^ true
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5251
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5252
    "
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5253
     Integer primesUpTo:1000
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5254
     (1 to:1000000) count:[:n | n isPrime] 78498
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5255
     Time millisecondsToRun:[ (1 to:1000000) count:[:n | n isPrime]] 1295   w.o firstFewPrimes
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5256
     Time millisecondsToRun:[ (1 to:1000000) count:[:n | n isPrime]] 936    with firstFewPrimes (less tests)
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5257
     Time millisecondsToRun:[ (1 to:1000000) count:[:n | n isPrime]] 343    with primeCache
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5258
    "
22114
94a519213339 #BUGFIX by mawalch
mawalch
parents: 22107
diff changeset
  5259
94a519213339 #BUGFIX by mawalch
mawalch
parents: 22107
diff changeset
  5260
    "Modified (comment): / 26-07-2017 / 12:58:45 / mawalch"
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5261
!
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5262
23119
8ca65ffe917f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23118
diff changeset
  5263
nextMultipleOf:n
14680
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5264
    "return the multiple of n at or above the receiver.
23119
8ca65ffe917f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23118
diff changeset
  5265
     (?? The name of this method may be a bit misleading,
8ca65ffe917f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23118
diff changeset
  5266
      as it returns the receiver iff it is already a multiple)
16800
45ef192ee95f class: Integer
Claus Gittinger <cg@exept.de>
parents: 16723
diff changeset
  5267
     Useful for padding, aligning or rounding,
21774
c6fb8f0b4597 #OTHER by mawalch
mawalch
parents: 21637
diff changeset
  5268
     especially when reading aligned binary data."
14677
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5269
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5270
    |rest|
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5271
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5272
    rest := self \\ n.
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5273
    rest == 0 ifTrue:[ ^ self ].
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5274
    ^ self + (n - rest)
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5275
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5276
    "
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5277
     0 nextMultipleOf: 4 -> 0
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5278
     1 nextMultipleOf: 4 -> 4
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5279
     2 nextMultipleOf: 4 -> 4 
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  5280
     3 nextMultipleOf: 4 -> 4
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  5281
     4 nextMultipleOf: 4 -> 4
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  5282
     5 nextMultipleOf: 4 -> 8
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5283
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5284
     22 nextMultipleOf: 4
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5285
     100 factorial nextMultipleOf: 4
14677
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5286
    "
21774
c6fb8f0b4597 #OTHER by mawalch
mawalch
parents: 21637
diff changeset
  5287
c6fb8f0b4597 #OTHER by mawalch
mawalch
parents: 21637
diff changeset
  5288
    "Modified (comment): / 29-05-2017 / 15:40:45 / mawalch"
23119
8ca65ffe917f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23118
diff changeset
  5289
    "Modified (comment): / 20-06-2018 / 15:36:33 / Claus Gittinger"
14677
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5290
!
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5291
14680
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5292
nextPowerOf2
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5293
    "return the power of 2 at or above the receiver.
18769
Claus Gittinger <cg@exept.de>
parents: 18380
diff changeset
  5294
     Useful for padding.
19058
Claus Gittinger <cg@exept.de>
parents: 19053
diff changeset
  5295
     Notice, that for a powerOf2, the receiver is returned.
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5296
     Also notice, that (because it is used for padding),
19058
Claus Gittinger <cg@exept.de>
parents: 19053
diff changeset
  5297
     0 is returned for zero."
14680
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5298
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5299
    |x t sh|
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5300
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5301
    x := self - 1.
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5302
    x := x bitOr: (x bitShift: -1).
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5303
    x := x bitOr: (x bitShift: -2).
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5304
    x := x bitOr: (x bitShift: -4).
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5305
    x := x bitOr: (x bitShift: -8).
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5306
    x := x bitOr: (t := x bitShift: -16).
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5307
    t == 0 ifFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5308
        sh := -32.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5309
        [
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5310
            x := x bitOr: (t := x bitShift: sh).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5311
            sh := sh + sh.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5312
        ] doWhile: [t ~~ 0]
14680
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5313
    ].
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5314
    ^ x + 1
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5315
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5316
    "
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5317
     0 nextPowerOf2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5318
     1 nextPowerOf2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5319
     2 nextPowerOf2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5320
     3 nextPowerOf2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5321
     4 nextPowerOf2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5322
     5 nextPowerOf2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5323
     6 nextPowerOf2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5324
     7 nextPowerOf2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5325
     8 nextPowerOf2
14680
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5326
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5327
     22 nextPowerOf2
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5328
     12 factorial nextPowerOf2  isPowerOf:2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5329
     100 factorial nextPowerOf2  isPowerOf:2
18905
256565ff9803 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18865
diff changeset
  5330
     1000 factorial nextPowerOf2  isPowerOf:2
256565ff9803 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18865
diff changeset
  5331
     Time millisecondsToRun:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5332
         |v|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5333
         v := 1000 factorial.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5334
         1000 timesRepeat:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5335
            v nextPowerOf2
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5336
         ]
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5337
     ]
14680
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5338
    "
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5339
!
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5340
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5341
nextPrime
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5342
    "return the next prime after the receiver"
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5343
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5344
    |num|
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5345
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5346
    num := self + 1.
19015
8cce2933467a #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18981
diff changeset
  5347
    num <= 2 ifTrue:[^ 2].
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5348
    num even ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5349
        num := num + 1
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5350
    ].
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5351
    [num isPrime] whileFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5352
        num := num + 2
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5353
    ].
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5354
    ^ num
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5355
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5356
    "
19015
8cce2933467a #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18981
diff changeset
  5357
     0 nextPrime
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5358
     1 nextPrime
19015
8cce2933467a #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18981
diff changeset
  5359
     2 nextPrime
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5360
     22 nextPrime
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5361
     37 nextPrime
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5362
     36 nextPrime
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5363
     3456737 nextPrime
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5364
     1000 factorial nextPrime
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5365
    "
13905
7eb024efb58a added: #parity
Claus Gittinger <cg@exept.de>
parents: 13815
diff changeset
  5366
!
7eb024efb58a added: #parity
Claus Gittinger <cg@exept.de>
parents: 13815
diff changeset
  5367
13906
5543bafd72a9 added: #parityOdd
Claus Gittinger <cg@exept.de>
parents: 13905
diff changeset
  5368
parityOdd
13914
725916ddad3f comment/format
Claus Gittinger <cg@exept.de>
parents: 13907
diff changeset
  5369
    "return true, if an odd number of bits are set in the receiver, false otherwise.
13905
7eb024efb58a added: #parity
Claus Gittinger <cg@exept.de>
parents: 13815
diff changeset
  5370
     (i.e. true for odd parity)
7eb024efb58a added: #parity
Claus Gittinger <cg@exept.de>
parents: 13815
diff changeset
  5371
     Undefined for negative values (smalltalk does not require the machine to use 2's complement)"
7eb024efb58a added: #parity
Claus Gittinger <cg@exept.de>
parents: 13815
diff changeset
  5372
7eb024efb58a added: #parity
Claus Gittinger <cg@exept.de>
parents: 13815
diff changeset
  5373
    ^ self bitCount odd
7eb024efb58a added: #parity
Claus Gittinger <cg@exept.de>
parents: 13815
diff changeset
  5374
7eb024efb58a added: #parity
Claus Gittinger <cg@exept.de>
parents: 13815
diff changeset
  5375
    "
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5376
     0 parityOdd
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5377
     1 parityOdd
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5378
     2 parityOdd
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5379
     4 parityOdd
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5380
     5 parityOdd
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5381
     7 parityOdd
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5382
     33 parityOdd
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5383
     6 parityOdd
13905
7eb024efb58a added: #parity
Claus Gittinger <cg@exept.de>
parents: 13815
diff changeset
  5384
7eb024efb58a added: #parity
Claus Gittinger <cg@exept.de>
parents: 13815
diff changeset
  5385
     1 to:1000000 do:[:n |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5386
        self assert:(n parityOdd = ((n printStringRadix:2) occurrencesOf:$1) odd).
13905
7eb024efb58a added: #parity
Claus Gittinger <cg@exept.de>
parents: 13815
diff changeset
  5387
     ]
13906
5543bafd72a9 added: #parityOdd
Claus Gittinger <cg@exept.de>
parents: 13905
diff changeset
  5388
5543bafd72a9 added: #parityOdd
Claus Gittinger <cg@exept.de>
parents: 13905
diff changeset
  5389
     0 to:255 do:[:n |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5390
        |p|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5391
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5392
        p :=
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5393
            (((((((((n rightShift: 7)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5394
            bitXor: (n rightShift: 6))
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5395
                bitXor: (n rightShift: 5))
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5396
                    bitXor: (n rightShift: 4))
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5397
                        bitXor: (n rightShift: 3))
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5398
                            bitXor: (n rightShift: 2))
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5399
                                bitXor: (n rightShift: 1))
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5400
                                    bitXor: n) bitAnd:1) == 1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5401
        self assert:(n parityOdd = p).
13906
5543bafd72a9 added: #parityOdd
Claus Gittinger <cg@exept.de>
parents: 13905
diff changeset
  5402
     ]
5543bafd72a9 added: #parityOdd
Claus Gittinger <cg@exept.de>
parents: 13905
diff changeset
  5403
    "
5543bafd72a9 added: #parityOdd
Claus Gittinger <cg@exept.de>
parents: 13905
diff changeset
  5404
5543bafd72a9 added: #parityOdd
Claus Gittinger <cg@exept.de>
parents: 13905
diff changeset
  5405
    "Created: / 09-01-2012 / 17:18:06 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5406
! !
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 159
diff changeset
  5407
23944
1f8b8f9e755f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23930
diff changeset
  5408
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5409
!Integer methodsFor:'special modulo arithmetic'!
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5410
12605
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5411
add_32:anInteger
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5412
    "return a C-semantic 32bit sum of the receiver and the argument.
12605
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5413
     Both must be either Small- or LargeIntegers.
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5414
     Returns a signed 32bit number.
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5415
     This (nonstandard) specialized method is provided to allow simulation of
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5416
     modulu operations with C semantics."
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5417
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5418
%{  /* NOCONTEXT */
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5419
    int val1, val2, rslt;
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5420
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5421
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5422
        val1 = __intVal(self);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5423
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5424
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5425
        if (!val1) goto bad;
12605
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5426
    }
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5427
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5428
        val2 = __intVal(anInteger);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5429
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5430
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5431
        if (!val2) goto bad;
12605
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5432
    }
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5433
    rslt = val1 + val2;
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5434
    RETURN(__MKINT(rslt));
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5435
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5436
  bad: ;
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5437
%}.
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5438
    self primitiveFailed.
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5439
!
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5440
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5441
add_32u:anInteger
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5442
    "return a C-semantic 32bit unsigned sum of the receiver and the argument.
12605
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5443
     Both must be either Small- or LargeIntegers.
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5444
     Returns an unsigned 32bit number.
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5445
     This (nonstandard) specialized method is provided to allow simulation of
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5446
     modulu operations with C semantics."
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5447
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5448
%{  /* NOCONTEXT */
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5449
    int val1, val2, rslt;
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5450
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5451
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5452
        val1 = __intVal(self);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5453
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5454
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5455
        if (!val1) goto bad;
12605
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5456
    }
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5457
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5458
        val2 = __intVal(anInteger);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5459
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5460
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5461
        if (!val2) goto bad;
12605
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5462
    }
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5463
    rslt = val1 + val2;
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5464
    RETURN(__MKUINT((unsigned)rslt));
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5465
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5466
  bad: ;
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5467
%}.
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5468
    self primitiveFailed.
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5469
!
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5470
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5471
mul_32:anInteger
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5472
    "return a C-semantic 32bit product of the receiver and the argument.
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5473
     Both must be either Small- or LargeIntegers.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5474
     Returns a signed 32bit number.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5475
     This (nonstandard) specialized method is provided to allow simulation of
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5476
     modulu operations with C semantics."
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5477
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5478
%{  /* NOCONTEXT */
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5479
    int val1, val2, rslt;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5480
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5481
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5482
        val1 = __intVal(self);
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5483
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5484
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5485
        if (!val1) goto bad;
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5486
    }
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5487
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5488
        val2 = __intVal(anInteger);
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5489
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5490
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5491
        if (!val2) goto bad;
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5492
    }
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5493
    rslt = val1 * val2;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5494
    RETURN(__MKINT(rslt));
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5495
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5496
  bad: ;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5497
%}.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5498
    self primitiveFailed.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5499
!
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5500
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5501
mul_32u:anInteger
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5502
    "return a C-semantic 32bit unsigned product of the receiver and the argument.
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5503
     Both must be either Small- or LargeIntegers.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5504
     Returns an unsigned 32bit number.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5505
     This (nonstandard) specialized method is provided to allow simulation of
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5506
     modulu operations with C semantics."
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5507
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5508
%{  /* NOCONTEXT */
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5509
    int val1, val2, rslt;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5510
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5511
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5512
        val1 = __intVal(self);
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5513
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5514
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5515
        if (!val1) goto bad;
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5516
    }
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5517
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5518
        val2 = __intVal(anInteger);
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5519
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5520
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5521
        if (!val2) goto bad;
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5522
    }
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5523
    rslt = val1 * val2;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5524
    RETURN(__MKUINT((unsigned)rslt));
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5525
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5526
  bad: ;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5527
%}.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5528
    self primitiveFailed.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5529
!
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5530
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5531
sub_32:anInteger
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5532
    "return a C-semantic 32bit difference of the receiver and the argument.
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5533
     Both must be either Small- or LargeIntegers.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5534
     Returns a signed 32bit number.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5535
     This (nonstandard) specialized method is provided to allow simulation of
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5536
     modulu operations with C semantics."
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5537
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5538
%{  /* NOCONTEXT */
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5539
    int val1, val2, rslt;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5540
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5541
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5542
        val1 = __intVal(self);
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5543
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5544
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5545
        if (!val1) goto bad;
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5546
    }
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5547
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5548
        val2 = __intVal(anInteger);
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5549
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5550
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5551
        if (!val2) goto bad;
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5552
    }
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5553
    rslt = val1 - val2;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5554
    RETURN(__MKINT(rslt));
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5555
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5556
  bad: ;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5557
%}.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5558
    self primitiveFailed.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5559
!
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5560
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5561
sub_32u:anInteger
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5562
    "return a C-semantic 32bit unsigned difference of the receiver and the argument.
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5563
     Both must be either Small- or LargeIntegers.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5564
     Returns an unsigned 32bit number.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5565
     This (nonstandard) specialized method is provided to allow simulation of
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5566
     modulu operations with C semantics."
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5567
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5568
%{  /* NOCONTEXT */
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5569
    int val1, val2, rslt;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5570
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5571
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5572
        val1 = __intVal(self);
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5573
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5574
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5575
        if (!val1) goto bad;
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5576
    }
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5577
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5578
        val2 = __intVal(anInteger);
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5579
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5580
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5581
        if (!val2) goto bad;
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5582
    }
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5583
    rslt = val1 - val2;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5584
    RETURN(__MKUINT((unsigned)rslt));
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5585
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5586
  bad: ;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5587
%}.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5588
    self primitiveFailed.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5589
! !
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5590
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5591
!Integer methodsFor:'special modulo bit operators'!
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5592
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5593
asSigned32
23930
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5594
    "return a 32-bit integer with my bit-pattern. 
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5595
     For protocol completeness."
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5596
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5597
    ^ self
23930
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5598
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5599
    "Modified (comment): / 17-03-2019 / 12:08:09 / Claus Gittinger"
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5600
!
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5601
22069
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5602
asUnsigned128
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5603
    "return a 128-bit integer with my bit-pattern, but positive.
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5604
     May be required for bit operations on the sign-bit and/or to
23930
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5605
     convert C numbers.
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5606
     Does not check if the value is out of range, so callers
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5607
     may have to do a bitwise-and on the result"
22069
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5608
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5609
    self < 0 ifTrue:[
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5610
        ^ 16r1000000000000000000000000000000000 + self
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5611
    ].
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5612
    ^ self
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5613
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5614
    "
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5615
     (-1 asUnsigned128) hexPrintString
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5616
     1 asUnsigned128
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5617
     (SmallInteger minVal asUnsigned128) hexPrintString
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5618
     (SmallInteger maxVal asUnsigned128) hexPrintString
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5619
    "
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5620
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5621
    "Created: / 21-07-2017 / 14:44:19 / cg"
23930
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5622
    "Modified (comment): / 17-03-2019 / 12:20:59 / Claus Gittinger"
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5623
!
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5624
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5625
asUnsigned16
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5626
    "return a 16-bit integer with my bit-pattern, but positive.
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5627
     May be required for bit operations on the sign-bit and/or to
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5628
     convert C/Java numbers.
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5629
     Does not check if the value is out of range, so callers
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5630
     may have to do a bitwise-and on the result"
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5631
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5632
    self < 0 ifTrue:[
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5633
        ^ 16r10000 + self
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5634
    ].
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5635
    ^ self
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5636
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5637
    "
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5638
     (-1 asUnsigned16) hexPrintString
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5639
     1 asUnsigned16
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5640
     (SmallInteger minVal asUnsigned16) hexPrintString
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5641
     (SmallInteger maxVal asUnsigned16) hexPrintString
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5642
    "
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5643
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5644
    "Created: / 17-03-2019 / 12:07:23 / Claus Gittinger"
22069
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5645
!
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5646
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5647
asUnsigned32
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5648
    "return a 32-bit integer with my bit-pattern, but positive.
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5649
     May be required for bit operations on the sign-bit and/or to
23930
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5650
     convert C/Java numbers.
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5651
     Does not check if the value is out of range, so callers
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5652
     may have to do a bitwise-and on the result"
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5653
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5654
    self < 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5655
        ^ 16r100000000 + self
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5656
    ].
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5657
    ^ self
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5658
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5659
    "
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5660
     (-1 asUnsigned32) hexPrintString
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5661
     1 asUnsigned32
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5662
     (SmallInteger minVal asUnsigned32) hexPrintString
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5663
     (SmallInteger maxVal asUnsigned32) hexPrintString
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5664
    "
23930
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5665
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5666
    "Modified (comment): / 17-03-2019 / 12:20:48 / Claus Gittinger"
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5667
!
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5668
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5669
asUnsigned64
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5670
    "return a 64-bit integer with my bit-pattern, but positive.
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5671
     May be required for bit operations on the sign-bit and/or to
23930
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5672
     convert C/Java numbers.
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5673
     Does not check if the value is out of range, so callers
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5674
     may have to do a bitwise-and on the result"
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5675
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5676
    self < 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5677
        ^ 16r10000000000000000 + self
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5678
    ].
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5679
    ^ self
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5680
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5681
    "
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5682
     (-1 asUnsigned64) hexPrintString
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5683
     1 asUnsigned64
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5684
     (SmallInteger minVal asUnsigned64) hexPrintString
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5685
     (SmallInteger maxVal asUnsigned64) hexPrintString
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5686
    "
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5687
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5688
    "Created: / 26-07-2013 / 13:45:11 / cg"
23930
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5689
    "Modified (comment): / 17-03-2019 / 12:20:54 / Claus Gittinger"
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5690
!
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5691
22072
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5692
asUnsigned:numBits
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5693
    "return a numBits integer with my bit-pattern, but positive.
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5694
     May be required for bit operations on the sign-bit and/or to
23930
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5695
     convert C/Java numbers, or to generate bitfields from signed numbers
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5696
     (kind of the reverse operation to signExtenedFromBit:).
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5697
     Does not check if the value is out of range, so callers
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5698
     may have to do a bitwise-and on the result"
22072
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5699
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5700
    self < 0 ifTrue:[
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5701
        ^ (1 bitShift:numBits) + self
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5702
    ].
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5703
    ^ self
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5704
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5705
    "
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5706
     (-1 asUnsigned:64) hexPrintString
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5707
     1 asUnsigned:64
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5708
     (SmallInteger minVal asUnsigned:64) hexPrintString
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5709
     (SmallInteger maxVal asUnsigned:64) hexPrintString
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5710
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5711
     (-1 asUnsigned:4) hexPrintString
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5712
     (-7 asUnsigned:4) hexPrintString
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5713
     (-8 asUnsigned:4) hexPrintString
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5714
     1 asUnsigned:4
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5715
    "
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5716
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5717
    "Created: / 21-07-2017 / 15:11:40 / cg"
23930
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5718
    "Modified (comment): / 17-03-2019 / 12:21:15 / Claus Gittinger"
22072
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5719
!
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5720
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5721
bitAnd_32:anInteger
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5722
    "return a C-semantic 32bit locical-and of the receiver and
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5723
     the argument. Both must be either Small- or LargeIntegers.
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5724
     Returns a signed 32bit number.
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5725
     This (nonstandard) specialized method is provided to allow simulation of
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5726
     bit operations with C semantics."
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5727
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5728
%{  /* NOCONTEXT */
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5729
    int val1, val2, rslt;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5730
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5731
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5732
        val1 = __intVal(self);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5733
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5734
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5735
        if (!val1) goto bad;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5736
    }
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5737
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5738
        val2 = __intVal(anInteger);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5739
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5740
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5741
        if (!val2) goto bad;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5742
    }
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5743
    rslt = val1 & val2;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5744
    RETURN(__MKINT(rslt));
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5745
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5746
  bad: ;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5747
%}.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5748
    self primitiveFailed.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5749
!
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5750
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5751
bitAnd_32u:anInteger
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5752
    "return a C-semantic 32bit locical-and of the receiver and
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5753
     the argument. Both must be either Small- or LargeIntegers.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5754
     Returns an unsigned 32bit number.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5755
     This (nonstandard) specialized method is provided to allow simulation of
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5756
     bit operations with C semantics."
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5757
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5758
%{  /* NOCONTEXT */
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5759
    int val1, val2, rslt;
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5760
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5761
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5762
        val1 = __intVal(self);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5763
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5764
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5765
        if (!val1) goto bad;
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5766
    }
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5767
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5768
        val2 = __intVal(anInteger);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5769
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5770
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5771
        if (!val2) goto bad;
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5772
    }
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5773
    rslt = val1 & val2;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5774
    RETURN(__MKUINT(rslt));
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5775
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5776
  bad: ;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5777
%}.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5778
    self primitiveFailed.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5779
!
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5780
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5781
bitInvert_32
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5782
    "return a C-semantic 32bit complement of the receiver,
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5783
     which must be either Small- or LargeIntegers.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5784
     Returns a signed 32bit number.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5785
     This (nonstandard) specialized method is provided to allow simulation of
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5786
     bit operations with C semantics."
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5787
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5788
%{  /* NOCONTEXT */
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5789
    int val, rslt;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5790
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5791
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5792
        val = __intVal(self);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5793
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5794
        val = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5795
        if (!val) goto bad;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5796
    }
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5797
    rslt = ~val;
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5798
    RETURN(__MKINT(rslt));
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5799
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5800
  bad: ;
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5801
%}.
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5802
    self primitiveFailed.
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5803
!
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5804
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5805
bitInvert_32u
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5806
    "return a C-semantic 32bit complement of the receiver,
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5807
     which must be either Small- or LargeIntegers.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5808
     Returns an unsigned 32bit number.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5809
     This (nonstandard) specialized method is provided to allow simulation of
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5810
     bit operations with C semantics."
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5811
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5812
%{  /* NOCONTEXT */
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5813
    int val, rslt;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5814
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5815
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5816
        val = __intVal(self);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5817
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5818
        val = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5819
        if (!val) goto bad;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5820
    }
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5821
    rslt = ~val;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5822
    RETURN(__MKUINT(rslt));
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5823
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5824
  bad: ;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5825
%}.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5826
    self primitiveFailed.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5827
!
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5828
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5829
bitOr_32:anInteger
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5830
    "return a C-semantic 32bit locical-or of the receiver and
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5831
     the argument. Both must be either Small- or LargeIntegers.
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5832
     Returns a signed 32bit number.
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5833
     This (nonstandard) specialized method is provided to allow simulation of
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5834
     bit operations with C semantics."
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5835
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5836
%{  /* NOCONTEXT */
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5837
    int val1, val2, rslt;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5838
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5839
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5840
        val1 = __intVal(self);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5841
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5842
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5843
        if (!val1) goto bad;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5844
    }
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5845
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5846
        val2 = __intVal(anInteger);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5847
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5848
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5849
        if (!val2) goto bad;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5850
    }
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5851
    rslt = val1 | val2;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5852
    RETURN(__MKINT(rslt));
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5853
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5854
  bad: ;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5855
%}.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5856
    self primitiveFailed.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5857
!
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5858
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5859
bitOr_32u:anInteger
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5860
    "return a C-semantic 32bit locical-or of the receiver and
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5861
     the argument. Both must be either Small- or LargeIntegers.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5862
     Returns an unsigned 32bit number.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5863
     This (nonstandard) specialized method is provided to allow simulation of
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5864
     bit operations with C semantics."
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5865
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5866
%{  /* NOCONTEXT */
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5867
    int val1, val2, rslt;
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5868
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5869
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5870
        val1 = __intVal(self);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5871
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5872
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5873
        if (!val1) goto bad;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5874
    }
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5875
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5876
        val2 = __intVal(anInteger);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5877
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5878
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5879
        if (!val2) goto bad;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5880
    }
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5881
    rslt = val1 | val2;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5882
    RETURN(__MKUINT(rslt));
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5883
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5884
  bad: ;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5885
%}.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5886
    self primitiveFailed.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5887
!
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5888
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5889
bitXor_32:anInteger
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5890
    "return a C-semantic 32bit locical-xor of the receiver and
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5891
     the argument. Both must be either Small- or LargeIntegers.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5892
     Returns a signed 32bit number.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5893
     This (nonstandard) specialized method is provided to allow simulation of
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5894
     bit operations with C semantics."
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5895
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5896
%{  /* NOCONTEXT */
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5897
    int val1, val2, rslt;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5898
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5899
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5900
        val1 = __intVal(self);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5901
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5902
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5903
        if (!val1) goto bad;
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5904
    }
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5905
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5906
        val2 = __intVal(anInteger);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5907
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5908
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5909
        if (!val2) goto bad;
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5910
    }
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5911
    rslt = val1 ^ val2;
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5912
    RETURN(__MKINT(rslt));
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5913
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5914
  bad: ;
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5915
%}.
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5916
    self primitiveFailed.
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5917
!
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5918
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5919
bitXor_32u:anInteger
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5920
    "return a C-semantic 32bit locical-xor of the receiver and
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5921
     the argument. Both must be either Small- or LargeIntegers.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5922
     Returns an unsigned 32bit number.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5923
     This (nonstandard) specialized method is provided to allow simulation of
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5924
     bit operations with C semantics."
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5925
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5926
%{  /* NOCONTEXT */
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5927
    int val1, val2, rslt;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5928
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5929
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5930
        val1 = __intVal(self);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5931
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5932
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5933
        if (!val1) goto bad;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5934
    }
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5935
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5936
        val2 = __intVal(anInteger);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5937
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5938
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5939
        if (!val2) goto bad;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5940
    }
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5941
    rslt = val1 ^ val2;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5942
    RETURN(__MKUINT(rslt));
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5943
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5944
  bad: ;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5945
%}.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5946
    self primitiveFailed.
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5947
! !
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5948
4653
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  5949
!Integer methodsFor:'tracing'!
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  5950
4682
4158042a9c8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4653
diff changeset
  5951
traceInto:aRequestor level:level from:referrer
4653
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  5952
    "double dispatch into tracer, passing my type implicitely in the selector"
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  5953
4682
4158042a9c8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4653
diff changeset
  5954
    ^ aRequestor traceInteger:self level:level from:referrer
4653
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  5955
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  5956
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  5957
! !
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  5958
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5959
!Integer methodsFor:'truncation & rounding'!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5960
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5961
ceiling
1558
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  5962
    "return the smallest integer which is larger or equal to the receiver.
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  5963
     For integers, this is the receiver itself."
345
claus
parents: 328
diff changeset
  5964
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5965
    ^ self
1558
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  5966
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  5967
    "Modified: 18.7.1996 / 12:44:06 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5968
!
345
claus
parents: 328
diff changeset
  5969
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5970
compressed
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  5971
    "if the receiver can be represented as a SmallInteger, return
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  5972
     a SmallInteger with my value; otherwise return self with leading
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  5973
     zeros removed. This method is redefined in LargeInteger."
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5974
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  5975
    ^ self
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  5976
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  5977
    "Modified: 5.11.1996 / 14:07:41 / cg"
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 159
diff changeset
  5978
!
40ca7cc6fb9c *** empty log message ***
claus
parents: 159
diff changeset
  5979
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5980
floor
1558
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  5981
    "return the largest integer which is smaller or equal to the receiver.
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  5982
     For integers, this is the receiver itself."
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5983
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5984
    ^ self
1558
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  5985
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  5986
    "Modified: 18.7.1996 / 12:44:00 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5987
!
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 159
diff changeset
  5988
1866
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  5989
fractionPart
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  5990
    "return a number with value from digits after the decimal point.
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  5991
     (i.e. the receiver minus its truncated value)
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  5992
     Since integers have no fraction, return 0 here."
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  5993
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  5994
    ^ 0
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  5995
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  5996
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5997
     1234.56789 fractionPart
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5998
     1.2345e6 fractionPart
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5999
     1000 fractionPart
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  6000
     10000000000000000 fractionPart
1866
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6001
    "
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6002
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6003
    "Modified: 4.11.1996 / 20:27:44 / cg"
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6004
!
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6005
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6006
integerPart
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6007
    "return a number with value from digits before the decimal point.
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  6008
     (i.e. the receiver's truncated value)
1866
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6009
     Since integers have no fraction, return the receiver here."
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6010
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6011
    ^ self
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6012
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6013
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  6014
     1234.56789 integerPart
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  6015
     1.2345e6 integerPart
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  6016
     1000 integerPart
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  6017
     10000000000000000 integerPart
1866
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6018
    "
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6019
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6020
    "Modified: 4.11.1996 / 20:28:22 / cg"
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6021
!
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6022
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6023
normalize
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  6024
    "if the receiver can be represented as a SmallInteger, return
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  6025
     a SmallInteger with my value; otherwise return self with leading
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  6026
     zeros removed.
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  6027
     This method is left for backward compatibility - it has been
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  6028
     renamed to #compressed for ST-80 compatibility."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  6029
9261
275c3c6392ed mark obsolete method
Stefan Vogel <sv@exept.de>
parents: 9141
diff changeset
  6030
    <resource: #obsolete>
275c3c6392ed mark obsolete method
Stefan Vogel <sv@exept.de>
parents: 9141
diff changeset
  6031
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  6032
    ^ self compressed
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  6033
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  6034
    "Modified: 5.11.1996 / 14:08:24 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6035
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  6036
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6037
rounded
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6038
    "return the receiver rounded toward the next Integer -
1558
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  6039
     for integers this is the receiver itself."
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6040
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6041
    ^ self
1558
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  6042
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  6043
    "Modified: 18.7.1996 / 12:44:24 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6044
!
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  6045
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6046
truncated
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  6047
    "return the receiver truncated towards zero as Integer
1558
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  6048
     for integers this is the receiver itself."
159
514c749165c3 *** empty log message ***
claus
parents: 132
diff changeset
  6049
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6050
    ^ self
1558
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  6051
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  6052
    "Modified: 18.7.1996 / 12:44:33 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6053
! !
569
7134eb78cf48 readFrom:onError: can now also read from a string
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
  6054
8394
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8335
diff changeset
  6055
!Integer methodsFor:'visiting'!
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8335
diff changeset
  6056
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8335
diff changeset
  6057
acceptVisitor:aVisitor with:aParameter
16723
12737e7310ae comment/format only
Claus Gittinger <cg@exept.de>
parents: 16379
diff changeset
  6058
    "dispatch for visitor pattern; send #visitInteger:with: to aVisitor"
8394
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8335
diff changeset
  6059
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8335
diff changeset
  6060
    ^ aVisitor visitInteger:self with:aParameter
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8335
diff changeset
  6061
! !
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8335
diff changeset
  6062
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6063
!Integer::ModuloNumber class methodsFor:'documentation'!
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6064
4803
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6065
copyright
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6066
"
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6067
 COPYRIGHT (c) 1999 by eXept Software AG
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6068
              All Rights Reserved
4803
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6069
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6070
 This software is furnished under a license and may be used
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6071
 only in accordance with the terms of that license and with the
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6072
 inclusion of the above copyright notice.   This software may not
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6073
 be provided or otherwise made available to, or used by, any
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6074
 other person.  No title to or ownership of the software is
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6075
 hereby transferred.
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6076
"
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6077
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6078
!
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6079
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6080
documentation
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6081
"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6082
    This is a helper class to perform fast computation of the modulus.
4609
6a1819c7a743 comment
Claus Gittinger <cg@exept.de>
parents: 4522
diff changeset
  6083
    (with big numbers, this does make a difference)
4803
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6084
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6085
    WARNING: this does only work with numbers which have no common
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6086
             divisor (which is true for cryptographic applications).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6087
             So, use this only if you know what you are doing ...
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6088
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6089
    [author:]
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6090
        Stefan Vogel
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6091
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6092
    [see also:]
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6093
        Integer SmallInteger LargeInsteger
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6094
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6095
    [instance variables:]
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6096
        modulus       the modulus
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6097
        reciprocal    reciprocal of the modulus
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6098
        shift         shift count to cut off some bits
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6099
"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6100
!
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6101
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6102
examples
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6103
"
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6104
                                                                [exBegin]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6105
        17 asModuloNumber modulusOf:38
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6106
                                                                [exEnd]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6107
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6108
                                                                [exBegin]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6109
        38 \\ 17
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6110
                                                                [exEnd]
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6111
"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6112
! !
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6113
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6114
!Integer::ModuloNumber class methodsFor:'instance creation'!
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6115
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6116
modulus:anInteger
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6117
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6118
    ^ self new modulus:anInteger
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6119
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6120
    "Created: / 3.5.1999 / 11:13:15 / stefan"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6121
    "Modified: / 3.5.1999 / 11:18:37 / stefan"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6122
! !
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6123
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6124
!Integer::ModuloNumber methodsFor:'accessing'!
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6125
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6126
modulus
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6127
    "return the modulus"
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6128
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6129
    ^ modulus
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6130
!
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6131
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6132
modulus:n
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6133
    "set the modulus"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6134
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6135
    modulus := n.
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6136
    reciprocal := n integerReciprocal.
4971
aed19001173f Fix ModuloNumber for large numbers.
Stefan Vogel <sv@exept.de>
parents: 4952
diff changeset
  6137
    shift := n highBit negated.
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6138
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6139
    "Created: / 3.5.1999 / 10:02:39 / stefan"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6140
    "Modified: / 3.5.1999 / 14:30:49 / stefan"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6141
! !
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6142
5238
f7a816a660a3 categories
Claus Gittinger <cg@exept.de>
parents: 5210
diff changeset
  6143
!Integer::ModuloNumber methodsFor:'arithmetic'!
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6144
19125
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6145
modulusOf:dividend
4971
aed19001173f Fix ModuloNumber for large numbers.
Stefan Vogel <sv@exept.de>
parents: 4952
diff changeset
  6146
    "compute the aNumber modulo myself.
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6147
     The shortcut works only, if dividend is < modulo * modulo
4971
aed19001173f Fix ModuloNumber for large numbers.
Stefan Vogel <sv@exept.de>
parents: 4952
diff changeset
  6148
     (When doing arithmethic modulo something).
aed19001173f Fix ModuloNumber for large numbers.
Stefan Vogel <sv@exept.de>
parents: 4952
diff changeset
  6149
     Otherwise do it the long way"
aed19001173f Fix ModuloNumber for large numbers.
Stefan Vogel <sv@exept.de>
parents: 4952
diff changeset
  6150
19125
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6151
    |e t cnt abs isNegative|
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6152
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6153
    isNegative := dividend negative.
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6154
    isNegative ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6155
        abs := dividend negated.
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6156
    ] ifFalse:[
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6157
        abs := dividend.
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6158
    ].
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  6159
    abs < modulus ifTrue:[
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  6160
        ^ abs.
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  6161
    ].
19125
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6162
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6163
"/    self assert:dividend < (modulus * modulus)
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6164
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6165
    "throw off low nbits(modulus)"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6166
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6167
    e := (abs bitShift:shift) * reciprocal.
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6168
    e := (e bitShift:shift) * modulus.
19125
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6169
    e := abs - e.
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6170
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6171
    "this subtract is done max 2 times"
4971
aed19001173f Fix ModuloNumber for large numbers.
Stefan Vogel <sv@exept.de>
parents: 4952
diff changeset
  6172
    cnt := 2.
aed19001173f Fix ModuloNumber for large numbers.
Stefan Vogel <sv@exept.de>
parents: 4952
diff changeset
  6173
    [(t := e - modulus) >= 0] whileTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6174
        e := t.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6175
        cnt == 0 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6176
            "shortcut didn't work, do it the long way"
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6177
            ^ e \\ modulus.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6178
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6179
        cnt := cnt - 1.
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6180
    ].
19125
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6181
    isNegative ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6182
        ^ modulus - e.
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6183
    ].
4971
aed19001173f Fix ModuloNumber for large numbers.
Stefan Vogel <sv@exept.de>
parents: 4952
diff changeset
  6184
    ^ e.
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6185
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6186
    "
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6187
     |m|
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6188
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6189
     m := self new modulus:7.
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6190
     m modulusOf:55.
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6191
    "
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6192
4971
aed19001173f Fix ModuloNumber for large numbers.
Stefan Vogel <sv@exept.de>
parents: 4952
diff changeset
  6193
    "Shortcut does not work: (size of divisor vs. dividend):
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6194
     |m|
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6195
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6196
     m := self new modulus:7.
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6197
     m modulusOf:123456789901398721398721931729371293712943794254034548369328469438562948623498659238469234659823469823658423659823658.
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6198
    "
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6199
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6200
    "SLOW (using standard \\ operation):
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6201
     |m|
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6202
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6203
     m := 123456789901398721398721931729371293712943794254034548369328469438562948623498659238469234659823469823658423659823658.
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6204
     Time millisecondsToRun:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6205
        100000 timesRepeat:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6206
            874928459437598375937451931729371293712943794254034548369328469438562948623498659238469234659823469823658423659823658 \\ m
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6207
        ]
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6208
     ]
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  6209
    "
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6210
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6211
    "fast (using moduloNumber with almost same-sized dividend and divisor):
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6212
     |m|
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6213
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6214
     m := self new modulus:123456789901398721398721931729371293712943794254034548369328469438562948623498659238469234659823469823658423659823658.
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6215
     Time millisecondsToRun:[
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6216
        100000 timesRepeat:[
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6217
            m modulusOf:874928459437598375937451931729371293712943794254034548369328469438562948623498659238469234659823469823658423659823658.
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6218
        ]
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6219
    ].
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6220
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6221
10730930127807326146398409623772237722337234475792709784029183368622308259008044569184592041059181058049458041058052 
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  6222
    "
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6223
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6224
    "Modified: / 3.5.1999 / 14:30:32 / stefan"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6225
! !
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6226
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6227
!Integer::ModuloNumber methodsFor:'converting'!
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6228
19405
Stefan Vogel <sv@exept.de>
parents: 19337
diff changeset
  6229
asInteger
Stefan Vogel <sv@exept.de>
parents: 19337
diff changeset
  6230
    "return the modulus"
Stefan Vogel <sv@exept.de>
parents: 19337
diff changeset
  6231
Stefan Vogel <sv@exept.de>
parents: 19337
diff changeset
  6232
    ^ modulus
Stefan Vogel <sv@exept.de>
parents: 19337
diff changeset
  6233
!
Stefan Vogel <sv@exept.de>
parents: 19337
diff changeset
  6234
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6235
asModuloNumber
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6236
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6237
    ^ self
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6238
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6239
    "Created: / 3.5.1999 / 14:48:27 / stefan"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6240
! !
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6241
1842
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  6242
!Integer class methodsFor:'documentation'!
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6243
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6244
version
18769
Claus Gittinger <cg@exept.de>
parents: 18380
diff changeset
  6245
    ^ '$Header$'
12122
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  6246
!
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  6247
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  6248
version_CVS
18769
Claus Gittinger <cg@exept.de>
parents: 18380
diff changeset
  6249
    ^ '$Header$'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  6250
! !
6858
13919a7544b6 raisedToInteger pushed up
Claus Gittinger <cg@exept.de>
parents: 6682
diff changeset
  6251
14677
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  6252
4996
c3716cebe47b added a bcdConversionErrorSignal
Claus Gittinger <cg@exept.de>
parents: 4973
diff changeset
  6253
Integer initialize!