Integer.st
author Claus Gittinger <cg@exept.de>
Wed, 05 Jun 2019 20:08:48 +0200
changeset 24257 3d3652e1f81c
parent 24247 dc1e4c314065
child 24282 9744ecf2c867
permissions -rw-r--r--
#BUGFIX by cg class: LargeFloat NaN and Inf fixes comment/format in: #negative changed: #asFloat #asTrueFraction #positive
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
24099
b01e81fcd293 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24005
diff changeset
   805
b01e81fcd293 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24005
diff changeset
   806
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
   807
!Integer class methodsFor:'class initialization'!
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
   808
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
   809
initialize
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
   810
    BCDConversionErrorSignal isNil ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   811
        BCDConversionErrorSignal := ConversionError newSignal.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   812
        BCDConversionErrorSignal nameClass:self message:#bcdConversionErrorSignal.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   813
        BCDConversionErrorSignal notifierString:'bcd conversion error'.
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
   814
    ].
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
    "Modified: / 15.11.1999 / 20:36:04 / cg"
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
   817
! !
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
   818
21822
7f00cd69b534 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21774
diff changeset
   819
!Integer class methodsFor:'coercing & converting'!
7f00cd69b534 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21774
diff changeset
   820
7f00cd69b534 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21774
diff changeset
   821
coerce:aNumber
7f00cd69b534 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21774
diff changeset
   822
    "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
   823
7f00cd69b534 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21774
diff changeset
   824
    ^ aNumber asInteger
7f00cd69b534 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21774
diff changeset
   825
! !
7f00cd69b534 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21774
diff changeset
   826
1842
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
   827
!Integer class methodsFor:'constants'!
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   828
7727
bda9f88c6847 Define #epsilon
Stefan Vogel <sv@exept.de>
parents: 7685
diff changeset
   829
epsilon
21903
af41d081505d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21822
diff changeset
   830
    "return the maximum relative spacing of instances of mySelf
af41d081505d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21822
diff changeset
   831
     (i.e. the value-delta of the least significant bit)"
7727
bda9f88c6847 Define #epsilon
Stefan Vogel <sv@exept.de>
parents: 7685
diff changeset
   832
bda9f88c6847 Define #epsilon
Stefan Vogel <sv@exept.de>
parents: 7685
diff changeset
   833
    "don't know, what to really return here.
8635
38674ba49a14 comment
Claus Gittinger <cg@exept.de>
parents: 8573
diff changeset
   834
     Returning 1 gives stupid values when doing some taylor series approximations
38674ba49a14 comment
Claus Gittinger <cg@exept.de>
parents: 8573
diff changeset
   835
     (although it is correct)"
7727
bda9f88c6847 Define #epsilon
Stefan Vogel <sv@exept.de>
parents: 7685
diff changeset
   836
bda9f88c6847 Define #epsilon
Stefan Vogel <sv@exept.de>
parents: 7685
diff changeset
   837
    ^ Float epsilon.
8635
38674ba49a14 comment
Claus Gittinger <cg@exept.de>
parents: 8573
diff changeset
   838
38674ba49a14 comment
Claus Gittinger <cg@exept.de>
parents: 8573
diff changeset
   839
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   840
     2 sqrt_withAccuracy:(Integer epsilon)
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
   841
     2 sqrt_withAccuracy:1
8635
38674ba49a14 comment
Claus Gittinger <cg@exept.de>
parents: 8573
diff changeset
   842
    "
21903
af41d081505d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21822
diff changeset
   843
af41d081505d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21822
diff changeset
   844
    "Modified (comment): / 22-06-2017 / 13:44:17 / cg"
7727
bda9f88c6847 Define #epsilon
Stefan Vogel <sv@exept.de>
parents: 7685
diff changeset
   845
!
bda9f88c6847 Define #epsilon
Stefan Vogel <sv@exept.de>
parents: 7685
diff changeset
   846
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   847
unity
1555
316491c1b216 commentary
Claus Gittinger <cg@exept.de>
parents: 1431
diff changeset
   848
    "return the neutral element for multiplication (1)"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   849
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   850
    ^ 1
1555
316491c1b216 commentary
Claus Gittinger <cg@exept.de>
parents: 1431
diff changeset
   851
316491c1b216 commentary
Claus Gittinger <cg@exept.de>
parents: 1431
diff changeset
   852
    "Modified: 18.7.1996 / 12:26:43 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   853
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   854
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   855
zero
1555
316491c1b216 commentary
Claus Gittinger <cg@exept.de>
parents: 1431
diff changeset
   856
    "return the neutral element for addition (0)"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   857
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
   858
    ^ 0
1555
316491c1b216 commentary
Claus Gittinger <cg@exept.de>
parents: 1431
diff changeset
   859
316491c1b216 commentary
Claus Gittinger <cg@exept.de>
parents: 1431
diff changeset
   860
    "Modified: 18.7.1996 / 12:26:38 / cg"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
   861
! !
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
   862
23944
1f8b8f9e755f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23930
diff changeset
   863
9125
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   864
!Integer class methodsFor:'prime numbers'!
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   865
11520
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   866
flushPrimeCache
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
   867
    "cleanup after using a primeCache.
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
   868
     See comment in initializePrimeCacheUpTo:limit"
11520
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   869
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   870
    PrimeCache := nil.
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   871
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   872
    "
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   873
     Integer initializePrimeCacheUpTo:1000000
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   874
     Integer flushPrimeCache.
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   875
    "
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   876
!
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   877
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   878
initializePrimeCacheUpTo:limit
11582
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
   879
    "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
   880
     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
   881
     (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
   882
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   883
    |bits|
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   884
11563
a91c8d348760 could have returned an uncompressed largeint after bitShift
Claus Gittinger <cg@exept.de>
parents: 11521
diff changeset
   885
    PrimeCache := nil.
11582
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
   886
    bits := BooleanArray new:limit//2.
11520
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   887
    self primesUpTo:limit do:[:p |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   888
        bits at:p//2 put:true
11520
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   889
    ].
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   890
    PrimeCache := bits.
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   891
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   892
    "
11521
1f5b947c7fc8 primeCache
Claus Gittinger <cg@exept.de>
parents: 11520
diff changeset
   893
     Integer initializePrimeCacheUpTo:1000000.
11654
9dd403ddfb91 tuned largeInteger reading
Claus Gittinger <cg@exept.de>
parents: 11587
diff changeset
   894
     Integer initializePrimeCacheUpTo:10000000.
9dd403ddfb91 tuned largeInteger reading
Claus Gittinger <cg@exept.de>
parents: 11587
diff changeset
   895
     Integer initializePrimeCacheUpTo:100000000.
11563
a91c8d348760 could have returned an uncompressed largeint after bitShift
Claus Gittinger <cg@exept.de>
parents: 11521
diff changeset
   896
     Integer initializePrimeCacheUpTo:1000000000.
11521
1f5b947c7fc8 primeCache
Claus Gittinger <cg@exept.de>
parents: 11520
diff changeset
   897
     Integer flushPrimeCache.
1f5b947c7fc8 primeCache
Claus Gittinger <cg@exept.de>
parents: 11520
diff changeset
   898
    "
1f5b947c7fc8 primeCache
Claus Gittinger <cg@exept.de>
parents: 11520
diff changeset
   899
1f5b947c7fc8 primeCache
Claus Gittinger <cg@exept.de>
parents: 11520
diff changeset
   900
    "
1f5b947c7fc8 primeCache
Claus Gittinger <cg@exept.de>
parents: 11520
diff changeset
   901
     Integer flushPrimeCache.
1f5b947c7fc8 primeCache
Claus Gittinger <cg@exept.de>
parents: 11520
diff changeset
   902
     Transcript showCR:(
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   903
        Time millisecondsToRun:[ 1 to:100000 do:[:n | n isPrime] ]
11521
1f5b947c7fc8 primeCache
Claus Gittinger <cg@exept.de>
parents: 11520
diff changeset
   904
     ).
1f5b947c7fc8 primeCache
Claus Gittinger <cg@exept.de>
parents: 11520
diff changeset
   905
     Integer initializePrimeCacheUpTo:100000.
1f5b947c7fc8 primeCache
Claus Gittinger <cg@exept.de>
parents: 11520
diff changeset
   906
     Transcript showCR:(
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   907
        Time millisecondsToRun:[ 1 to:100000 do:[:n | n isPrime] ]
11521
1f5b947c7fc8 primeCache
Claus Gittinger <cg@exept.de>
parents: 11520
diff changeset
   908
     ).
11520
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   909
     Integer flushPrimeCache.
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   910
    "
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   911
!
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
   912
9125
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   913
largePrimesUpTo: max do: aBlock
11495
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
   914
    "Evaluate aBlock with all primes up and including maxValue.
9125
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   915
     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
   916
     It encodes prime numbers much more compactly than #primesUpTo:
9125
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   917
     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
   918
     (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
   919
     the regular #primesUpTo: would require 4 *GIGA*bytes).
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   920
     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
   921
     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
   922
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   923
    | limit flags maskBitIndex bitIndex maskBit byteIndex index primesUpTo2310 indexLimit |
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   924
11495
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
   925
    limit := max asInteger.
9125
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   926
    indexLimit := max sqrt truncated + 1.
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   927
    "Create the array of flags."
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   928
    flags := ByteArray new: (limit + 2309) // 2310 * 60 + 60.
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   929
    flags atAllPut: 16rFF. "set all to true"
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   930
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   931
    "Compute the primes up to 2310"
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   932
    primesUpTo2310 := self primesUpTo: 2310.
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   933
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   934
    "Create a mapping from 2310 integers to 480 bits (60 byte)"
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   935
    maskBitIndex := Array new: 2310.
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   936
    bitIndex := -1. "for pre-increment"
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   937
    maskBitIndex at: 1 put: (bitIndex := bitIndex + 1).
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   938
    maskBitIndex at: 2 put: (bitIndex := bitIndex + 1).
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
    1 to: 5 do:[:i| aBlock value: (primesUpTo2310 at: i)].
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   941
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   942
    index := 6.
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   943
    2 to: 2309 do:[:n|
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   944
        [(primesUpTo2310 at: index) < n]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   945
            whileTrue:[index := index + 1].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   946
        n = (primesUpTo2310 at: index) ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   947
            maskBitIndex at: n+1 put: (bitIndex := bitIndex + 1).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   948
        ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   949
            "if modulo any of the prime factors of 2310, then could not be prime"
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   950
            (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
   951
                    ifTrue:[maskBitIndex at: n+1 put: 0]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   952
                    ifFalse:[maskBitIndex at: n+1 put: (bitIndex := bitIndex + 1)].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   953
        ].
9125
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   954
    ].
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   955
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   956
    "Now the real work begins...
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   957
    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
   958
    increment by 2 for odd numbers only."
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   959
    13 to: limit by: 2 do:[:n|
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   960
        (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
   961
            byteIndex := n // 2310 * 60 + (maskBit-1 bitShift: -3) + 1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   962
            bitIndex := 1 bitShift: (maskBit bitAnd: 7).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   963
            ((flags at: byteIndex) bitAnd: bitIndex) = 0 ifFalse:["not marked -- n is prime"
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   964
                aBlock value: n.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   965
                "Start with n*n since any integer < n has already been sieved
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   966
                (e.g., any multiple of n with a number k < n has been cleared
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   967
                when k was sieved); add 2 * i to avoid even numbers and
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   968
                mark all multiples of this prime. Note: n < indexLimit below
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   969
                limits running into LargeInts -- nothing more."
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   970
                n < indexLimit ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   971
                    index := n * n.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   972
                    (index bitAnd: 1) = 0 ifTrue:[index := index + n].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   973
                    [index <= limit] whileTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   974
                        (maskBit := maskBitIndex at: (index \\ 2310 + 1)) = 0 ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   975
                            byteIndex := (index // 2310 * 60) + (maskBit-1 bitShift: -3) + 1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   976
                            maskBit := 255 - (1 bitShift: (maskBit bitAnd: 7)).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   977
                            flags at: byteIndex put: ((flags at: byteIndex) bitAnd: maskBit).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   978
                        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   979
                        index := index + (2 * n)].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   980
                ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   981
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
   982
        ].
9125
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
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   985
    "
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   986
     Integer largePrimesUpTo:1000000 do:[:i | i > 900000 ifTrue:[self halt] ]
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   987
     (Integer primesUpTo:1000000) inspect
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   988
    "
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   989
!
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
   990
11582
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
   991
primeCacheSize
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
   992
    "see comment in initializePrimeCacheUpTo:limit"
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
   993
11582
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
   994
    ^ PrimeCache size * 2
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
   995
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
   996
    "
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
   997
     Integer initializePrimeCacheUpTo:1000.
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
   998
     Integer initializePrimeCacheUpTo:1000000.
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
   999
     Integer initializePrimeCacheUpTo:1000000000.
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
  1000
     Integer flushPrimeCache.
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
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
  1003
    "
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
  1004
     Integer flushPrimeCache.
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
  1005
     Transcript showCR:(
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1006
        Time millisecondsToRun:[ 1 to:100000 do:[:n | n isPrime] ]
11582
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
  1007
     ).
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
  1008
     Integer initializePrimeCacheUpTo:100000.
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
  1009
     Transcript showCR:(
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1010
        Time millisecondsToRun:[ 1 to:100000 do:[:n | n isPrime] ]
11582
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
     Integer flushPrimeCache.
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
  1013
    "
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
  1014
!
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
  1015
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1016
primesUpTo5000
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1017
    "return a table of primes up to 5000.
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1018
     Primes are heavily used to compute good container sizes in Set and Dictionary,
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1019
     and in some cryprographic algorithms."
11520
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
  1020
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
  1021
    ^ #(
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1022
            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
  1023
             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
  1024
            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
  1025
            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
  1026
            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
  1027
            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
  1028
            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
  1029
            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
  1030
            887 907 911 919 929 937 941 947 953 967 971 977 983 991 997
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1031
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1032
            1009 1013 1019 1021 1031 1033 1039 1049 1051 1061 1063 1069 1087 1091 1093
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1033
            1097 1103 1109 1117 1123 1129 1151 1153 1163 1171 1181 1187 1193 1201 1213
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1034
            1217 1223 1229 1231 1237 1249 1259 1277 1279 1283 1289 1291 1297 1301 1303
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1035
            1307 1319 1321 1327 1361 1367 1373 1381 1399 1409 1423 1427 1429 1433 1439
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1036
            1447 1451 1453 1459 1471 1481 1483 1487 1489 1493 1499 1511 1523 1531 1543
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1037
            1549 1553 1559 1567 1571 1579 1583 1597 1601 1607 1609 1613 1619 1621 1627
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1038
            1637 1657 1663 1667 1669 1693 1697 1699 1709 1721 1723 1733 1741 1747 1753
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1039
            1759 1777 1783 1787 1789 1801 1811 1823 1831 1847 1861 1867 1871 1873 1877
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1040
            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
  1041
            
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1042
            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
  1043
            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
  1044
            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
  1045
            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
  1046
            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
  1047
            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
  1048
            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
  1049
            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
  1050
            2939 2953 2957 2963 2969 2971 2999 
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1051
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1052
            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
  1053
            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
  1054
            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
  1055
            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
  1056
            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
  1057
            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
  1058
            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
  1059
            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
  1060
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1061
            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
  1062
            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
  1063
            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
  1064
            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
  1065
            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
  1066
            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
  1067
            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
  1068
            4909 4919 4931 4933 4937 4943 4951 4957 4967 4969 4973 4987 4993 4999
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1069
        ).
11520
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
  1070
!
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
  1071
9125
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1072
primesUpTo: max
15578
88cefb6e5d94 class: Integer
Stefan Vogel <sv@exept.de>
parents: 15567
diff changeset
  1073
    "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
  1074
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  1075
    |cls|
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  1076
20646
16ddbfd2e22a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20622
diff changeset
  1077
    "/ sigh: IntegerArray is in libbasic2...
16ddbfd2e22a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20622
diff changeset
  1078
    (IntegerArray notNil 
16ddbfd2e22a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 20622
diff changeset
  1079
    and:[ max < IntegerArray maxVal]) ifTrue:[
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  1080
        cls := IntegerArray.
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  1081
    ] ifFalse:[
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  1082
        cls := Array.
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  1083
    ].
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  1084
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  1085
    ^ 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
  1086
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1087
    "
11495
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1088
     Integer primesUpTo: 100
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1089
     Integer primesUpTo: 13
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1090
     (Integer primesUpTo: 100) select:[:p | p between:10 and:99]
9125
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1091
    "
11495
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1092
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
     |p N a b|
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1095
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1096
     N := 1000.
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1097
     p := 1.
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1098
     a := (1 to:1000)
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1099
         collect:[:i | p := p nextPrime. p ]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1100
         thenSelect:[:p | p <= N].
11495
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1101
     b := Integer primesUpTo:N.
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1102
     self assert:(a = b)
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1103
    "
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
     |p N a b|
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1106
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1107
     N := 1000 nextPrime.
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1108
     p := 1.
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1109
     a := (1 to:1000)
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1110
         collect:[:i | p := p nextPrime. p ]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1111
         thenSelect:[:p | p <= N].
11495
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1112
     b := Integer primesUpTo:N.
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1113
     self assert:(a = b)
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1114
    "
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
     |p N a b|
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1117
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1118
     N := 1000 nextPrime-1.
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1119
     p := 1.
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1120
     a := (1 to:1000)
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1121
         collect:[:i | p := p nextPrime. p ]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1122
         thenSelect:[:p | p <= N].
11495
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1123
     b := Integer primesUpTo:N.
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1124
     self assert:(a = b)
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1125
    "
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
     |p N a b|
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1128
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1129
     N := 100000.
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1130
     p := 1.
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1131
     a := (1 to:N)
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1132
         collect:[:i | p := p nextPrime. p ]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1133
         thenSelect:[:p | p <= N].
11495
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1134
     b := Integer primesUpTo:N.
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1135
     self assert:(a = b)
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1136
    "
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
     |p N a b|
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1139
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1140
     N := 100000 nextPrime.
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1141
     p := 1.
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1142
     a := (1 to:N)
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1143
         collect:[:i | p := p nextPrime. p ]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1144
         thenSelect:[:p | p <= N].
11495
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1145
     b := Integer primesUpTo:N.
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1146
     self assert:(a = b)
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1147
    "
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
     |p N a b|
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1150
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1151
     N := 100000 nextPrime-1.
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1152
     p := 1.
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1153
     a := (1 to:N)
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1154
         collect:[:i | p := p nextPrime. p ]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1155
         thenSelect:[:p | p <= N].
11495
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1156
     b := Integer primesUpTo:N.
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1157
     self assert:(a = b)
833b96ce156d subtile bug in primesUpTo: - did not include the limit,
Claus Gittinger <cg@exept.de>
parents: 11494
diff changeset
  1158
    "
9125
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1159
!
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1160
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1161
primesUpTo: max do: aBlock
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  1162
    "Compute aBlock with all prime integers up to and including the given integer.
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  1163
     See comment in initializePrimeCacheUpTo:limit"
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  1164
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1165
    | limit 
19131
Claus Gittinger <cg@exept.de>
parents: 19130
diff changeset
  1166
      iLimit "{ Class: SmallInteger }"
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1167
      flags 
19131
Claus Gittinger <cg@exept.de>
parents: 19130
diff changeset
  1168
      prime "{ Class: SmallInteger }"
Claus Gittinger <cg@exept.de>
parents: 19130
diff changeset
  1169
      k "{ Class: SmallInteger }"
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1170
      wellKnownPrimes|
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1171
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1172
    wellKnownPrimes := self primesUpTo5000.  
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1173
    max <= (wellKnownPrimes last+1) ifTrue:[
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1174
        wellKnownPrimes do:[:p |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1175
            p > max ifTrue:[^ self].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1176
            aBlock value:p.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1177
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1178
        ^ self.
11521
1f5b947c7fc8 primeCache
Claus Gittinger <cg@exept.de>
parents: 11520
diff changeset
  1179
    ].
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1180
    
11582
56088c49011e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11563
diff changeset
  1181
    max <= self primeCacheSize ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1182
        aBlock value:2.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1183
        3 to:max by:2 do:[:p |
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1184
            (PrimeCache at:p//2) ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1185
                aBlock value:p
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1186
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1187
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1188
        ^ self.
11520
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
  1189
    ].
79ae7618543f primeCache
Claus Gittinger <cg@exept.de>
parents: 11517
diff changeset
  1190
9125
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1191
    limit := max asInteger - 1.
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1192
    "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
  1193
    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
  1194
    limit > 25000 ifTrue:[^ self largePrimesUpTo: max do: aBlock].
11492
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1195
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1196
    iLimit := limit.
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1197
    
11492
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1198
    "/ sieve, on the fly
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1199
    flags := ByteArray new: iLimit.
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1200
    aBlock value: 2.
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1201
    
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1202
    2 to: iLimit by:2 do: [:i |
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1203
        (flags at: i) == 0 ifTrue: [
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1204
            prime := i + 1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1205
            k := i + prime.
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1206
            [k <= iLimit] whileTrue: [
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1207
                flags at: k put: 1.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1208
                k := k + prime
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1209
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1210
            aBlock value: prime
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1211
        ]
9125
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
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1214
    "
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1215
     Integer primesUpTo: 100
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  1216
     Integer primesUpTo:20000 do:[:p | ]
9125
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1217
    "
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1218
! !
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1219
4653
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  1220
!Integer class methodsFor:'queries'!
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  1221
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  1222
hasSharedInstances
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  1223
    "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
  1224
     with the same value are identical.
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  1225
     Although not always shared (LargeIntegers), these should be treated
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  1226
     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
  1227
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  1228
    ^ true
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  1229
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  1230
8892
5d05a7f150a5 +isAbstract
Claus Gittinger <cg@exept.de>
parents: 8635
diff changeset
  1231
!
5d05a7f150a5 +isAbstract
Claus Gittinger <cg@exept.de>
parents: 8635
diff changeset
  1232
5d05a7f150a5 +isAbstract
Claus Gittinger <cg@exept.de>
parents: 8635
diff changeset
  1233
isAbstract
11223
7536833995bb comment
Claus Gittinger <cg@exept.de>
parents: 11125
diff changeset
  1234
    "Return if this class is an abstract class.
7536833995bb comment
Claus Gittinger <cg@exept.de>
parents: 11125
diff changeset
  1235
     True is returned for Integer here; false for subclasses.
19455
848d2ecde887 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19433
diff changeset
  1236
     Abstract subclasses must redefine this again."
11223
7536833995bb comment
Claus Gittinger <cg@exept.de>
parents: 11125
diff changeset
  1237
8892
5d05a7f150a5 +isAbstract
Claus Gittinger <cg@exept.de>
parents: 8635
diff changeset
  1238
    ^ self == Integer
4653
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  1239
! !
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  1240
23944
1f8b8f9e755f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23930
diff changeset
  1241
24153
88feac51cfbb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24099
diff changeset
  1242
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7173
diff changeset
  1243
!Integer methodsFor:'Compatibility-Dolphin'!
6249
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1244
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1245
highWord
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1246
    "return the high 16 bits of a 32 bit value"
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1247
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1248
    ^ self bitShift:-16
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1249
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1250
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1251
     (16r12345678 highWord) hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1252
     (16r12345678 lowWord) hexPrintString
6249
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1253
    "
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1254
!
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1255
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1256
lowWord
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1257
    "return the low 16 bits of a 32 bit value"
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1258
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1259
    ^ self bitAnd:16rFFFF
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1260
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1261
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1262
     (16r12345678 lowWord) hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1263
     (16r12345678 highWord) hexPrintString
6249
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1264
    "
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1265
!
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1266
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1267
mask:integerMask set:aBoolean
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1268
    "Answer the result of setting/resetting the specified mask in the receiver."
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1269
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1270
    ^ aBoolean
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1271
            ifTrue:  [self bitOr:integerMask]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1272
            ifFalse: [self bitClear:integerMask]
6249
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1273
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1274
    "turn on the 1-bit:
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1275
         |v|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1276
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1277
         v := 2r0100.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1278
         v mask:1 set:true
6249
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1279
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1280
     turn off the 1-bit:
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1281
         |v|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1282
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1283
         v := 2r0101.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1284
         v mask:1 set:false
6249
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1285
    "
6875
d064224376bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6858
diff changeset
  1286
!
d064224376bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6858
diff changeset
  1287
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1288
maskClear:aMaskInteger
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1289
    "return an integer with all bits cleared which are set in aMaskInteger.
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1290
     An alias for bitClear: for compatibility."
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
    ^ self bitClear:aMaskInteger
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
     3 maskClear:1
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1296
    "
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1297
!
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1298
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1299
maskSet:aMaskInteger
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1300
    "return an integer with all bits set which are set in aMaskInteger.
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1301
     An alias for bitSet: for compatibility."
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1302
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1303
    ^ self bitOr:aMaskInteger
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1304
!
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1305
6875
d064224376bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6858
diff changeset
  1306
printStringRadix:aRadix padTo:sz
11936
94784c846e12 comments
Claus Gittinger <cg@exept.de>
parents: 11896
diff changeset
  1307
    "return a printed representation of the receiver in a given radix,
15765
6edf4f55277d class: Integer
Claus Gittinger <cg@exept.de>
parents: 15578
diff changeset
  1308
     padded with zeros (at the left) up to size.
11936
94784c846e12 comments
Claus Gittinger <cg@exept.de>
parents: 11896
diff changeset
  1309
     If the printString is longer than size,
94784c846e12 comments
Claus Gittinger <cg@exept.de>
parents: 11896
diff changeset
  1310
     it is returned unchanged (i.e. not truncated).
94784c846e12 comments
Claus Gittinger <cg@exept.de>
parents: 11896
diff changeset
  1311
     See also printStringRadix:size:fill:"
94784c846e12 comments
Claus Gittinger <cg@exept.de>
parents: 11896
diff changeset
  1312
6875
d064224376bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6858
diff changeset
  1313
    ^ self printStringRadix:aRadix size:sz fill:$0
d064224376bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6858
diff changeset
  1314
d064224376bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6858
diff changeset
  1315
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
  1316
     1024 printStringRadix:16 padTo:4
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
  1317
     16rABCD printStringRadix:16 padTo:3
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
  1318
     1024 printStringRadix:2 padTo:16
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
  1319
     1024 printStringRadix:16 padTo:8
6875
d064224376bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6858
diff changeset
  1320
    "
6907
a77451f0c14c dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6875
diff changeset
  1321
!
a77451f0c14c dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6875
diff changeset
  1322
a77451f0c14c dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6875
diff changeset
  1323
| aNumber
11936
94784c846e12 comments
Claus Gittinger <cg@exept.de>
parents: 11896
diff changeset
  1324
    "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
  1325
     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
  1326
     Notice:
19093
c07a1b2d0e11 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 19089
diff changeset
  1327
        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
  1328
        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
  1329
        For integers, use bitOr: to make the intention explicit.
19094
784b51cf4213 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19093
diff changeset
  1330
        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
  1331
6907
a77451f0c14c dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6875
diff changeset
  1332
    ^ self bitOr:aNumber
a77451f0c14c dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6875
diff changeset
  1333
a77451f0c14c dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6875
diff changeset
  1334
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1335
     14 | 1
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1336
     9 & 8
6907
a77451f0c14c dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6875
diff changeset
  1337
    "
6249
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1338
! !
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1339
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7173
diff changeset
  1340
!Integer methodsFor:'Compatibility-Squeak'!
4867
3bb80fe9bb8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4830
diff changeset
  1341
12122
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  1342
asByteArray
15937
ff395b64b43a class: Integer
Claus Gittinger <cg@exept.de>
parents: 15911
diff changeset
  1343
    "return my hexBytes in MSB.
ff395b64b43a class: Integer
Claus Gittinger <cg@exept.de>
parents: 15911
diff changeset
  1344
     Do not use:
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1345
        This is a very stupid squeak-compatibility method,
21993
73aa16ebc889 #DOCUMENTATION by mawalch
mawalch
parents: 21938
diff changeset
  1346
        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
  1347
15567
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  1348
    ^ self digitBytesMSB
21993
73aa16ebc889 #DOCUMENTATION by mawalch
mawalch
parents: 21938
diff changeset
  1349
73aa16ebc889 #DOCUMENTATION by mawalch
mawalch
parents: 21938
diff changeset
  1350
    "Modified (comment): / 11-07-2017 / 16:13:03 / mawalch"
12122
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  1351
!
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  1352
12147
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1353
asByteArrayOfSize:size
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1354
    "return my hexBytes in MSB, optionally padded at the left with zeros"
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1355
12122
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  1356
    "(((
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1357
        | repeats number |
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1358
        repeats := 1000000.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1359
        number := 123456789123456789123456789123456789123456789123456789.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1360
         [repeats timesRepeat: (number asByteArrayOfSize: 1024) ] timeToRun.
12122
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  1361
     )))"
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  1362
15567
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  1363
    | bytes bytesSize|
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  1364
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  1365
    bytes := self digitBytesMSB.
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  1366
    bytesSize := bytes size.
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  1367
    size < bytesSize ifTrue: [
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1368
        ^ ConversionError raiseRequestWith:self errorString:'number too big for ', size asString
14796
242490a39283 class: Integer
Stefan Vogel <sv@exept.de>
parents: 14767
diff changeset
  1369
    ].
15567
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  1370
    ^ (ByteArray new:size)
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1371
            replaceFrom:size-bytesSize+1 to:size with:bytes startingAt:1.
12147
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1372
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1373
    "
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1374
     123 asByteArrayOfSize:1 #[123]
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1375
     123 asByteArrayOfSize:2 #[0 123]
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1376
     123 asByteArrayOfSize:4 #[0 0 0 123]
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1377
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1378
     255 asByteArrayOfSize:1 #[255]
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1379
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  1380
     256 asByteArrayOfSize:1
12147
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1381
     256 asByteArrayOfSize:2
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1382
     256 asByteArrayOfSize:4
22567
8c44c87bd949 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22561
diff changeset
  1383
     256 asByteArrayOfSize:8
12147
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1384
    "
12122
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  1385
!
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  1386
4867
3bb80fe9bb8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4830
diff changeset
  1387
atRandom
3bb80fe9bb8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4830
diff changeset
  1388
    "return a random number between 1 amd myself"
3bb80fe9bb8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4830
diff changeset
  1389
8573
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1390
    ^ self atRandom:Random.
8572
3e649d2e3167 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8461
diff changeset
  1391
3e649d2e3167 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8461
diff changeset
  1392
    "
3e649d2e3167 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8461
diff changeset
  1393
     100 atRandom
3e649d2e3167 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8461
diff changeset
  1394
     1000 atRandom
3e649d2e3167 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8461
diff changeset
  1395
    "
4867
3bb80fe9bb8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4830
diff changeset
  1396
!
4376
8df0935ac5b1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4278
diff changeset
  1397
8573
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1398
atRandom:aRandomGenerator
15456
9535b5c74e85 class: Integer
Stefan Vogel <sv@exept.de>
parents: 15273
diff changeset
  1399
    "return a random number between 1 and myself"
8573
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1400
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1401
    self < 1 ifTrue:[^ self].
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1402
    ^ aRandomGenerator nextIntegerBetween:1 and:self
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1403
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1404
    "
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1405
     100 atRandom:(Random new)
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1406
     1000 atRandom:(Random new)
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1407
    "
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1408
!
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1409
22600
ca4fea0b5b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22567
diff changeset
  1410
bitShiftMagnitude:shift
ca4fea0b5b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22567
diff changeset
  1411
    ^ self bitShift:shift.
ca4fea0b5b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22567
diff changeset
  1412
ca4fea0b5b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22567
diff changeset
  1413
    "
ca4fea0b5b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22567
diff changeset
  1414
     -1 bitShiftMagnitude:1
ca4fea0b5b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22567
diff changeset
  1415
     -2 bitShift:-1
ca4fea0b5b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22567
diff changeset
  1416
     -2 bitShift:-1
ca4fea0b5b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22567
diff changeset
  1417
    "
ca4fea0b5b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22567
diff changeset
  1418
!
ca4fea0b5b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22567
diff changeset
  1419
14385
1bb6b27c59f9 added: #printLeftPaddedWith:to:base:
Claus Gittinger <cg@exept.de>
parents: 14294
diff changeset
  1420
printLeftPaddedWith:padChar to:size base:base
1bb6b27c59f9 added: #printLeftPaddedWith:to:base:
Claus Gittinger <cg@exept.de>
parents: 14294
diff changeset
  1421
    "prints left-padded"
1bb6b27c59f9 added: #printLeftPaddedWith:to:base:
Claus Gittinger <cg@exept.de>
parents: 14294
diff changeset
  1422
1bb6b27c59f9 added: #printLeftPaddedWith:to:base:
Claus Gittinger <cg@exept.de>
parents: 14294
diff changeset
  1423
    ^ (self printStringRadix:base) leftPaddedTo:size with:padChar
1bb6b27c59f9 added: #printLeftPaddedWith:to:base:
Claus Gittinger <cg@exept.de>
parents: 14294
diff changeset
  1424
1bb6b27c59f9 added: #printLeftPaddedWith:to:base:
Claus Gittinger <cg@exept.de>
parents: 14294
diff changeset
  1425
    "
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  1426
     1234 printPaddedWith:$0 to:4 base:16
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  1427
     1234 printLeftPaddedWith:$0 to:4 base:16
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  1428
     128 printLeftPaddedWith:$0 to:2 base:16
14385
1bb6b27c59f9 added: #printLeftPaddedWith:to:base:
Claus Gittinger <cg@exept.de>
parents: 14294
diff changeset
  1429
    "
1bb6b27c59f9 added: #printLeftPaddedWith:to:base:
Claus Gittinger <cg@exept.de>
parents: 14294
diff changeset
  1430
!
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
printPaddedWith:padChar to:size base:base
14385
1bb6b27c59f9 added: #printLeftPaddedWith:to:base:
Claus Gittinger <cg@exept.de>
parents: 14294
diff changeset
  1433
    "attention: prints right-padded; see printLeftPadded."
1bb6b27c59f9 added: #printLeftPaddedWith:to:base:
Claus Gittinger <cg@exept.de>
parents: 14294
diff changeset
  1434
11858
8baf5d75506e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11793
diff changeset
  1435
    ^ (self printStringRadix:base) paddedTo:size with:padChar
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
     1234 printPaddedWith:$0 to:4 base:16
8baf5d75506e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11793
diff changeset
  1439
    "
8baf5d75506e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11793
diff changeset
  1440
!
8baf5d75506e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11793
diff changeset
  1441
4376
8df0935ac5b1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4278
diff changeset
  1442
printStringBase:base
4867
3bb80fe9bb8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4830
diff changeset
  1443
    "return my printString in a base;
3bb80fe9bb8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4830
diff changeset
  1444
     same as printStringRadix:"
3bb80fe9bb8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4830
diff changeset
  1445
4376
8df0935ac5b1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4278
diff changeset
  1446
    ^ self printStringRadix:base
12284
a6e7b47c08c4 comment/format in: #printStringBase:
Claus Gittinger <cg@exept.de>
parents: 12280
diff changeset
  1447
a6e7b47c08c4 comment/format in: #printStringBase:
Claus Gittinger <cg@exept.de>
parents: 12280
diff changeset
  1448
    "
a6e7b47c08c4 comment/format in: #printStringBase:
Claus Gittinger <cg@exept.de>
parents: 12280
diff changeset
  1449
     1234 printStringBase:16
a6e7b47c08c4 comment/format in: #printStringBase:
Claus Gittinger <cg@exept.de>
parents: 12280
diff changeset
  1450
    "
9068
ad6967cff1b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9057
diff changeset
  1451
!
ad6967cff1b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9057
diff changeset
  1452
9125
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1453
printStringHex
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1454
    "return my printString in base 16;
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1455
     same as printStringRadix:"
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
    ^ self printStringRadix:16
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
     4096 printStringHex
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1461
    "
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1462
!
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1463
9068
ad6967cff1b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9057
diff changeset
  1464
printStringRoman
9069
e5ba0dc84a53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9068
diff changeset
  1465
    "return my roman printString;
e5ba0dc84a53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9068
diff changeset
  1466
     almost the same as romanPrintString:"
e5ba0dc84a53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9068
diff changeset
  1467
9068
ad6967cff1b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9057
diff changeset
  1468
    "funny - although the romans did not have negative numbers - squeak has"
ad6967cff1b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9057
diff changeset
  1469
    self negative ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1470
        ^ '-' , self negated romanPrintString
9068
ad6967cff1b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9057
diff changeset
  1471
    ].
ad6967cff1b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9057
diff changeset
  1472
    ^ self romanPrintString
12280
b2bbbfd2444e added: #raisedTo:modulo:
Stefan Vogel <sv@exept.de>
parents: 12255
diff changeset
  1473
!
b2bbbfd2444e added: #raisedTo:modulo:
Stefan Vogel <sv@exept.de>
parents: 12255
diff changeset
  1474
b2bbbfd2444e added: #raisedTo:modulo:
Stefan Vogel <sv@exept.de>
parents: 12255
diff changeset
  1475
raisedTo:exp modulo:mod
b2bbbfd2444e added: #raisedTo:modulo:
Stefan Vogel <sv@exept.de>
parents: 12255
diff changeset
  1476
    ^ self raisedTo:exp mod:mod
4376
8df0935ac5b1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4278
diff changeset
  1477
! !
8df0935ac5b1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4278
diff changeset
  1478
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7173
diff changeset
  1479
!Integer methodsFor:'Compatibility-V''Age'!
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
<< aNumber
7155
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  1482
    "V'Age compatibility: left shift"
927
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1483
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1484
    ^ self bitShift:aNumber
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1485
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1486
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1487
     1 << 5
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1488
     64 << -5
927
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1489
    "
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1490
!
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1491
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1492
>> aNumber
7155
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  1493
    "V'Age compatibility: right shift"
927
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1494
22213
8b482a0c44a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22166
diff changeset
  1495
    ^ self rightShift:aNumber
927
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1496
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1497
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1498
     1 >> -5
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1499
     64 >> 5
927
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1500
    "
22213
8b482a0c44a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22166
diff changeset
  1501
8b482a0c44a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22166
diff changeset
  1502
    "Modified: / 25-08-2017 / 12:32:47 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1503
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1504
22600
ca4fea0b5b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22567
diff changeset
  1505
4423
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1506
!Integer methodsFor:'bcd conversion'!
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1507
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1508
decodeFromBCD
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1509
    "return a number representing the value of the BCD encoded receiver."
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1510
4424
f0f658ed8995 bcd support
Claus Gittinger <cg@exept.de>
parents: 4423
diff changeset
  1511
    |v rslt multiplier nibble|
4423
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1512
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1513
    v := self.
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1514
    rslt := 0.
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1515
    multiplier := 1.
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1516
    [v > 0] whileTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1517
        nibble := v bitAnd:16r0F.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1518
        nibble > 9 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1519
            ^ BCDConversionErrorSignal
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1520
                    raiseRequestWith:self
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1521
                    errorString:'bad BCD coded value'
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1522
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1523
        rslt := rslt + (nibble * multiplier).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1524
        multiplier := multiplier * 10.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1525
        v := v bitShift:-4.
4423
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1526
    ].
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1527
    ^ rslt
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1528
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1529
    "
4949
4c0462bd4d6a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  1530
     16r1234567890123 decodeFromBCD
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1531
     16r1073741823 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1532
     16r1073741824 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1533
     16r1073741825 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1534
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1535
     16r55 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1536
     16r127 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1537
     16r800000 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1538
     16r8000000 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1539
     16r80000000 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1540
     16r800000000 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1541
     16r127567890 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1542
     16r1234567890 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1543
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1544
     16r5A decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1545
     16rFF decodeFromBCD
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
4996
c3716cebe47b added a bcdConversionErrorSignal
Claus Gittinger <cg@exept.de>
parents: 4973
diff changeset
  1548
    "Modified: / 15.11.1999 / 20:37:20 / cg"
4423
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1549
!
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1550
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1551
encodeAsBCD
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1552
    "return a BCD encoded number representing the same value as the
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1553
     receiver."
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1554
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1555
    |v rslt shift|
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1556
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1557
    v := self.
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1558
    rslt := shift := 0.
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1559
    [v > 0] whileTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1560
        rslt := rslt + ((v \\ 10) bitShift:shift).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1561
        shift := shift + 4.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1562
        v := v // 10.
4423
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1563
    ].
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1564
    ^ rslt
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1565
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1566
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1567
     55 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1568
     127 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1569
     127 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1570
     8912345 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1571
     89123456 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1572
     891234567 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1573
     900000000 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1574
     1073741823 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1575
     1073741824 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1576
     1073741825 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1577
     1891234567 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1578
     8912345678 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1579
     1234567890 encodeAsBCD hexPrintString
4423
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1580
    "
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1581
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1582
! !
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1583
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1584
!Integer methodsFor:'bit operators'!
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1585
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1586
allMask:aMaskInteger
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1587
    "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
  1588
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1589
    ^ (self bitAnd:aMaskInteger) == aMaskInteger
4643
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1590
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1591
    "2r00001111 allMask:2r00000001"
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1592
    "2r00001111 allMask:2r00011110"
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1593
    "2r00001111 allMask:2r00000000"
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1594
!
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1595
24192
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1596
anyBitOfMagnitudeFrom:startBitIndex to:stopBitIndexArg 
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1597
    "Tests for any magnitude bits in the interval from start to stopArg."
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1598
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1599
    | magnitude firstDigitIx lastDigitIx rightShift leftShift stopBitIndex |
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1600
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1601
    "/ <primitive: 'primAnyBitFromTo' module:'LargeIntegers'>
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1602
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1603
    startBitIndex < 1 | (stopBitIndexArg < 1) ifTrue: [^ self error: 'out of range'].
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1604
    magnitude := self abs.
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1605
    stopBitIndex := stopBitIndexArg min: magnitude highBit.
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1606
    startBitIndex > stopBitIndex ifTrue: [^ false].
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1607
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1608
    firstDigitIx := (startBitIndex - 1) // 8 + 1.
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1609
    lastDigitIx := (stopBitIndex - 1) // 8 + 1.
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1610
    rightShift := ((startBitIndex - 1) \\ 8) negated.
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1611
    leftShift := 7 - ((stopBitIndex - 1) \\ 8).
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1612
    firstDigitIx = lastDigitIx ifTrue: [
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1613
        | digit mask | 
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1614
        mask := (255 bitShift: rightShift negated)
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1615
                                bitAnd: (255 bitShift: leftShift negated).
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1616
        digit := magnitude digitAt: firstDigitIx.
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1617
        ^ (digit bitAnd: mask) ~= 0
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1618
    ].
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1619
    ((magnitude digitAt: firstDigitIx) bitShift: rightShift) ~= 0 ifTrue: [^ true].
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1620
    firstDigitIx + 1 to: lastDigitIx - 1 do: [:ix | 
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1621
        (magnitude digitAt: ix) ~= 0 ifTrue: [^ true]
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1622
    ].
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1623
    (((magnitude digitAt: lastDigitIx) bitShift: leftShift) bitAnd: 255) ~= 0 ifTrue: [^ true].
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1624
    ^ false
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1625
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1626
    "Created: / 27-05-2019 / 08:37:08 / Claus Gittinger"
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1627
!
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  1628
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1629
anyMask:aMaskInteger
4643
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1630
    "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
  1631
     (somewhat incorrect, if the mask is zero)"
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1632
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1633
    ^ (self bitAnd:aMaskInteger) ~~ 0
4643
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1634
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1635
    "2r00001111 anyMask:2r00000001"
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1636
    "2r00001111 anyMask:2r11110000"
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1637
!
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1638
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1639
bitAnd:aMaskInteger
357
claus
parents: 356
diff changeset
  1640
    "return the bitwise-and of the receiver and the argument, anInteger.
claus
parents: 356
diff changeset
  1641
     This is a general and slow implementation, walking over the bytes of
claus
parents: 356
diff changeset
  1642
     the receiver and the argument."
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1643
927
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1644
    |n "{ Class: SmallInteger }"
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1645
     result byte|
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1646
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1647
    aMaskInteger isInteger ifFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1648
        ^ aMaskInteger bitAndFromInteger:self.
6358
706234560a0b allow double dispatch for bit* operations
Claus Gittinger <cg@exept.de>
parents: 6249
diff changeset
  1649
    ].
706234560a0b allow double dispatch for bit* operations
Claus Gittinger <cg@exept.de>
parents: 6249
diff changeset
  1650
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1651
    n := (aMaskInteger digitLength) min:(self digitLength).
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1652
    result := self class basicNew numberOfDigits:n.
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1653
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1654
    1 to:n do:[:index |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1655
        byte := (aMaskInteger digitAt:index) bitAnd:(self digitAt:index).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1656
        result digitAt:index put:byte.
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1657
    ].
3162
c7c8af356ff2 dont hardcode the numberof bytes (use maxBytes for alpha);
Claus Gittinger <cg@exept.de>
parents: 3138
diff changeset
  1658
    (byte == 0 or:[n <= SmallInteger maxBytes]) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1659
        ^ result compressed
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1660
    ].
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1661
    ^ result
357
claus
parents: 356
diff changeset
  1662
claus
parents: 356
diff changeset
  1663
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1664
     (16r112233445566778899 bitAnd:16rFF                ) printStringRadix:16
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1665
     (16r112233445566778899 bitAnd:16rFFFFFFFFFFFFFFFF00) printStringRadix:16
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1666
     (16r112233445566778899 bitAnd:16rFF0000000000000000) printStringRadix:16
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1667
     (16r112233445566778899 bitAnd:16r00000000000000FFFF) printStringRadix:16
357
claus
parents: 356
diff changeset
  1668
    "
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  1669
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  1670
    "Modified: 5.11.1996 / 14:06:26 / cg"
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1671
!
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1672
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1673
bitClear:aMaskInteger
19071
2941ec17cf5d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19068
diff changeset
  1674
    "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
  1675
     returning the receiver with bits of the argument cleared.
19071
2941ec17cf5d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19068
diff changeset
  1676
     (i.e. the same as self bitAnd:aMaskInteger bitInvert).
3884
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1677
     This is a general and slow implementation, walking over the bytes of
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1678
     the receiver and the argument."
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1679
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1680
    |n "{ Class: SmallInteger }"
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1681
     result byte|
3188
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  1682
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1683
    n := (aMaskInteger digitLength) max:(self digitLength).
3884
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1684
    result := self class basicNew numberOfDigits:n.
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1685
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1686
    1 to:n do:[:index |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1687
        byte :=  (self digitAt:index) bitClear:(aMaskInteger digitAt:index).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1688
        result digitAt:index put:byte.
3884
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1689
    ].
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1690
    (byte == 0 or:[n <= SmallInteger maxBytes]) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1691
        ^ result compressed
3884
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1692
    ].
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1693
    ^ result
3188
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  1694
!
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  1695
11492
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1696
bitCount
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1697
    "return the number of 1-bits in the receiver"
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1698
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1699
    |n "{ Class: SmallInteger }"
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1700
     cnt byte|
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1701
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1702
    n := self digitLength.
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1703
    cnt := 0.
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1704
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1705
    1 to:n do:[:index |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1706
        byte := self digitAt:index.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1707
        cnt := cnt + (byte bitCount)
11492
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1708
    ].
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1709
    ^ cnt
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1710
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1711
     "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1712
      2r100000000000000000000000000000000000000000000000000000000001 bitCount
11492
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1713
      2r111111111111111111111111111111111111111111111111111111111111111111 bitCount
13914
725916ddad3f comment/format
Claus Gittinger <cg@exept.de>
parents: 13907
diff changeset
  1714
      100 factorial bitCount -> 207
725916ddad3f comment/format
Claus Gittinger <cg@exept.de>
parents: 13907
diff changeset
  1715
      1000 factorial bitCount -> 3788
11492
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1716
     "
13914
725916ddad3f comment/format
Claus Gittinger <cg@exept.de>
parents: 13907
diff changeset
  1717
725916ddad3f comment/format
Claus Gittinger <cg@exept.de>
parents: 13907
diff changeset
  1718
    "Modified (comment): / 09-01-2012 / 19:51:00 / cg"
11492
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1719
!
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1720
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1721
bitDeinterleave:n
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1722
    "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
  1723
     This is the inverse operation from bitInterleave: - see comment there.
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1724
     i.e. if count is 3,
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1725
     and the receiver's bits are
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1726
        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
  1727
     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
  1728
        aN ... a2 a1 a0
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1729
        bN ... b2 b1 b0 
22222
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1730
        cN ... c2 c1 c0."
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1731
     
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1732
    |v shift tuple|
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1733
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1734
    tuple := Array new:n withAll:0.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1735
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1736
    shift := 0.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1737
    v := self.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1738
    [ v > 0 ] whileTrue:[
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1739
        1 to:n do:[:i |
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1740
            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
  1741
            v := v rightShift:1.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1742
        ].
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1743
        shift := shift + 1.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1744
    ].
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1745
    ^ tuple
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1746
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1747
    "
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1748
     (2r1100 bitInterleaveWith:2r1001) -> 2r11100001
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1749
     (2r11000110 bitInterleaveWith:2r10011100 and:2r10100101) -> 2r111100001010010111100001.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1750
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1751
     2r11100001 bitDeinterleave:2
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1752
     
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1753
     (2r11000110 bitInterleaveWith:2r10011100 and:2r10100101) 
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1754
     (198 bitInterleaveWith:156 and:165) bitDeinterleave:3
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1755
    "
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1756
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1757
    "Created: / 28-08-2017 / 15:02:31 / cg"
22222
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1758
    "Modified (comment): / 28-08-2017 / 18:45:21 / cg"
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1759
!
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1760
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1761
bitInterleaveWith:anInteger
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1762
    "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
  1763
     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
  1764
     with bits of the argument (at even bit positions).
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
     Thus, if the bits of the receiver are
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1767
        aN ... a2 a1 a0
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1768
     and those of the argument are:
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1769
        bN ... b2 b1 b0
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1770
     the result is
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1771
        bN aN ... b2 a2 b1 a1 b0 a0.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1772
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1773
     Morton numbers are great to linearize 2D coordinates
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1774
     eg. to sort 2D points by distances"    
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1775
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1776
    "/ 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
  1777
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1778
    |a b shift ma mb val|
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1779
22222
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1780
    self assert:(self >= 0).
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1781
    self assert:(a >= 0).
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1782
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1783
    a := self.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1784
    b := anInteger.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1785
    val := 0.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1786
    shift := 0.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1787
    [ (a == 0) and:[b == 0]] whileFalse:[
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1788
        "/ strip off 4 bits from each...
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1789
        "/ 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
  1790
        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
  1791
                at:((b bitAnd:2r1111)+1).
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1792
        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
  1793
                at:((a bitAnd:2r1111)+1).
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1794
        val := val bitOr:((ma bitOr:mb) bitShift:shift).
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1795
        shift := shift + 8.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1796
        a := a rightShift:4.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1797
        b := b rightShift:4.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1798
    ].
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1799
    ^ val.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1800
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1801
    "
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1802
     (2r11000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1803
     bitInterleaveWith:2r10010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) 
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1804
        -> 2r1101001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1805
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1806
     (2r11000101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1807
     bitInterleaveWith:2r10010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) 
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1808
        -> 2r1101001000010001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1809
    "
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1810
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1811
    "Created: / 28-08-2017 / 14:33:08 / cg"
22222
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1812
    "Modified: / 28-08-2017 / 19:19:31 / cg"
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1813
!
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1814
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1815
bitInterleaveWith:integer1 and:integer2
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1816
    "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
  1817
     by interleaving bits of the receiver with bits of the arguments.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1818
     Thus, if the bits of the receiver are
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1819
        aN ... a2 a1 a0
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1820
     and those of the integer1 are:
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1821
        bN ... b2 b1 b0
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1822
     and those of the integer2 are:
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1823
        cN ... c2 c1 c0
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1824
     the result is
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1825
        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
  1826
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1827
     Morton3 numbers are great to linearize 3D coordinates
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1828
     eg. to sort 3D points by distances"    
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1829
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1830
    |a b c shift ma mb mc val|
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
    a := self.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1833
    b := integer1.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1834
    c := integer2.
22469
6058c02151eb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22460
diff changeset
  1835
    self assert:(a >= 0).
6058c02151eb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22460
diff changeset
  1836
    self assert:(b >= 0).
6058c02151eb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22460
diff changeset
  1837
    self assert:(c >= 0).
6058c02151eb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22460
diff changeset
  1838
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1839
    val := 0.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1840
    shift := 0.
22469
6058c02151eb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22460
diff changeset
  1841
    [ a ~~ 0 or:[b ~~ 0 or:[c ~~ 0]] ] whileTrue:[
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1842
        "/ strip off 4 bits from each...
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1843
        "/ 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
  1844
        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
  1845
                at:((c bitAnd:2r1111)+1).
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1846
        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
  1847
                at:((b bitAnd:2r1111)+1).
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1848
        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
  1849
                at:((a bitAnd:2r1111)+1).
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1850
        val := val bitOr:(((ma bitOr:mb) bitOr:mc) bitShift:shift).
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1851
        shift := shift + 12.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1852
        a := a rightShift:4.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1853
        b := b rightShift:4.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1854
        c := c rightShift:4.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1855
    ].
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1856
    ^ val.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1857
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1858
    "
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1859
     (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
  1860
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1861
     (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
  1862
     (1 bitInterleaveWith:1 and:16)
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1863
     
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1864
     ((1<<31) bitInterleaveWith:(1<<31) and:(1<<31)) bitDeinterleave:3
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1865
     ((1<<31) bitInterleaveWith:(1<<63) and:(1<<95)) bitDeinterleave:3
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1866
    "
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1867
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1868
    "Created: / 28-08-2017 / 14:33:04 / cg"
22222
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1869
    "Modified: / 28-08-2017 / 19:19:25 / cg"
22469
6058c02151eb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22460
diff changeset
  1870
    "Modified: / 19-01-2018 / 11:29:04 / stefan"
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1871
!
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1872
3455
2b19e1e70adc added bitInvert for LargeIntegers (positive only)
Claus Gittinger <cg@exept.de>
parents: 3395
diff changeset
  1873
bitInvert
2b19e1e70adc added bitInvert for LargeIntegers (positive only)
Claus Gittinger <cg@exept.de>
parents: 3395
diff changeset
  1874
    "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
  1875
     This does not really make sense for negative largeIntegers,
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  1876
     since the digits are stored as absolute value.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  1877
     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
  1878
4614
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1879
"/    ^ -1 - self
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1880
15841
7c222b07168f class: Integer
Stefan Vogel <sv@exept.de>
parents: 15775
diff changeset
  1881
    |n      "{ Class: SmallInteger }"
7c222b07168f class: Integer
Stefan Vogel <sv@exept.de>
parents: 15775
diff changeset
  1882
     byte   "{ Class: SmallInteger }"
7c222b07168f class: Integer
Stefan Vogel <sv@exept.de>
parents: 15775
diff changeset
  1883
     result|
4614
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1884
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1885
    n := self digitLength.
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1886
    result := self class basicNew numberOfDigits:n.
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1887
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1888
    1 to:n do:[:index |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1889
        byte := self digitAt:index.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1890
        byte := byte bitInvert bitAnd:16rFF.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1891
        result digitAt:index put:byte.
4614
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1892
    ].
15841
7c222b07168f class: Integer
Stefan Vogel <sv@exept.de>
parents: 15775
diff changeset
  1893
    (byte == 0 or:[n <= SmallInteger maxBytes]) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1894
        "if last byte is zero we can normalize"
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1895
        ^ result compressed
4614
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1896
    ].
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1897
    ^ result
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1898
19068
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1899
    "
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1900
     16rff bitInvert bitAnd:16rff
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1901
     16rffffffff bitInvert
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1902
     16rff00ff00 bitInvert hexPrintString
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1903
    "
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1904
!
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1905
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1906
bitInvertByte
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1907
    "return a new integer, where the low 8 bits are masked and complemented.
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1908
     This returns an unsigned version of what bitInvert would return.
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1909
     (i.e. same as self bitInvert bitAnd:16rFF)"
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1910
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1911
    ^ (self digitAt:1) bitInvert bitAnd:16rFF
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1912
    
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1913
    "
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1914
     16rff bitInvert
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1915
     16rff bitInvertByte
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1916
    "
3455
2b19e1e70adc added bitInvert for LargeIntegers (positive only)
Claus Gittinger <cg@exept.de>
parents: 3395
diff changeset
  1917
!
2b19e1e70adc added bitInvert for LargeIntegers (positive only)
Claus Gittinger <cg@exept.de>
parents: 3395
diff changeset
  1918
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1919
bitOr:aMaskInteger
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1920
    "return the bitwise-or of the receiver and the argument, anInteger.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1921
     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
  1922
     the receiver and the argument.
0c79d2fbcf16 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23055
diff changeset
  1923
     It is redefined in concrete subclasses (especially SmallInteger) for performance."
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1924
927
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1925
    |n "{ Class: SmallInteger }"
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1926
     result byte|
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1927
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1928
    aMaskInteger isInteger ifFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1929
        ^ aMaskInteger bitOrFromInteger:self.
6358
706234560a0b allow double dispatch for bit* operations
Claus Gittinger <cg@exept.de>
parents: 6249
diff changeset
  1930
    ].
706234560a0b allow double dispatch for bit* operations
Claus Gittinger <cg@exept.de>
parents: 6249
diff changeset
  1931
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1932
    n := (aMaskInteger digitLength) max:(self digitLength).
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1933
    result := self class basicNew numberOfDigits:n.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1934
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1935
    1 to:n do:[:index |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1936
        byte := (aMaskInteger digitAt:index) bitOr:(self digitAt:index).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1937
        result digitAt:index put:byte.
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1938
    ].
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1939
"/ no need to normalize - if the operands were correct
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1940
"/    byte == 0 ifTrue:[
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1941
"/        ^ result compressed
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1942
"/    ].
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1943
    ^ result
23118
0c79d2fbcf16 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23055
diff changeset
  1944
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1945
    "
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1946
        16rFFFFFFFFFFFFFFFFFFFF0 bitOr:1.0
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1947
        16rFFFFFFFFFFFFFFFFFFFF0 bitOr:1.0s1
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1948
        16rFFFFFFFFFFFFFFFFFFFF0 bitOr:1.1
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1949
    "
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1950
23118
0c79d2fbcf16 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23055
diff changeset
  1951
    "Modified (comment): / 20-06-2018 / 14:47:43 / Claus Gittinger"
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1952
    "Modified (comment): / 01-11-2018 / 12:10:27 / Stefan Vogel"
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1953
!
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
bitReversed
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1956
    "swap (i.e. reverse) bits in an integer
23994
e4e3b75162ad #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23992
diff changeset
  1957
     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
  1958
     Warning: 
e4e3b75162ad #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23992
diff changeset
  1959
        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
  1960
        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
  1961
        Better use one of the bitReversedXX methods.
e4e3b75162ad #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23992
diff changeset
  1962
        This my vanish or be replaced by something better"
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1963
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1964
    |n "{ Class: SmallInteger }"
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1965
     result byte|
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1966
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1967
    n := self digitLength.
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1968
    result := self class basicNew numberOfDigits:n.
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1969
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1970
    1 to:n do:[:index |
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1971
        byte := (self digitAt:index) bitReversed8.
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1972
        result digitAt:n+1-index put:byte.
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1973
    ].
23992
3dc2d660853d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23980
diff changeset
  1974
    (byte == 0 or:[n <= SmallInteger maxBytes]) ifTrue:[
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1975
        ^ result compressed
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
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1978
    ^ result
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1979
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1980
    "
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1981
     2r1001 asLargeInteger bitReversed printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1982
     2r10011101 asLargeInteger bitReversed printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1983
     2r111110011101 asLargeInteger bitReversed printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1984
     2r11111001110100000000000000000000000000000000000000000001  bitReversed printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1985
     -1 asLargeInteger bitReversed printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1986
    "
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1987
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1988
    "Created: / 01-11-2018 / 11:22:42 / Stefan Vogel"
23994
e4e3b75162ad #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23992
diff changeset
  1989
    "Modified (comment): / 27-03-2019 / 18:28:42 / Claus Gittinger"
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1990
!
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1991
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1992
bitReversed16
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1993
    "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
  1994
     the high bits are ignored and cleared in the result
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1995
     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
  1996
23999
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1997
    |rslt|
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1998
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1999
    rslt := (self digitAt:2) bitReversed8.
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2000
    rslt := rslt bitOr:((self digitAt:1) bitReversed8 bitShift:8).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2001
    ^ rslt.
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2002
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2003
    "
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2004
     16r8000 bitReversed16  
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2005
     16r87654321 bitReversed16 printStringRadix:2
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2006
     16rFEDCBA987654321 bitReversed16 printStringRadix:2
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2007
    "
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2008
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2009
    "Created: / 01-11-2018 / 11:34:51 / Stefan Vogel"
24005
813a3a6e3af4 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23999
diff changeset
  2010
    "Modified (comment): / 27-03-2019 / 15:14:45 / stefan"
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2011
!
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2012
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2013
bitReversed32
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2014
    "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
  2015
     the high bits are ignored and cleared in the result
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2016
     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
  2017
23999
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2018
    |rslt|
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2019
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2020
    rslt := (self digitAt:4) bitReversed8.
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2021
    rslt := rslt bitOr:((self digitAt:3) bitReversed8 bitShift:8).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2022
    rslt := rslt bitOr:((self digitAt:2) bitReversed8 bitShift:16).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2023
    rslt := rslt bitOr:((self digitAt:1) bitReversed8 bitShift:24).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2024
    ^ rslt.
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2025
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2026
    "
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2027
     16r80000000 bitReversed32
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2028
     2r11111001110100000000000000000000000000000000000000000001  bitReversed32 printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2029
     -1 asLargeInteger bitReversed32 printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2030
    "
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2031
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2032
    "Created: / 01-11-2018 / 11:35:54 / Stefan Vogel"
24005
813a3a6e3af4 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23999
diff changeset
  2033
    "Modified (comment): / 27-03-2019 / 15:14:39 / stefan"
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2034
!
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2035
23992
3dc2d660853d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23980
diff changeset
  2036
bitReversed64
24005
813a3a6e3af4 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23999
diff changeset
  2037
    "swap (i.e. reverse) the low 64 bits in an integer
813a3a6e3af4 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23999
diff changeset
  2038
     the high bits are ignored and cleared in the result
23992
3dc2d660853d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23980
diff changeset
  2039
     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
  2040
23999
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2041
    |rslt|
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2042
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2043
    rslt := (self digitAt:8) bitReversed8.
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2044
    rslt := rslt bitOr:((self digitAt:7) bitReversed8 bitShift:8).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2045
    rslt := rslt bitOr:((self digitAt:6) bitReversed8 bitShift:16).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2046
    rslt := rslt bitOr:((self digitAt:5) bitReversed8 bitShift:24).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2047
    rslt := rslt bitOr:((self digitAt:4) bitReversed8 bitShift:32).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2048
    rslt := rslt bitOr:((self digitAt:3) bitReversed8 bitShift:40).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2049
    rslt := rslt bitOr:((self digitAt:2) bitReversed8 bitShift:48).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2050
    rslt := rslt bitOr:((self digitAt:1) bitReversed8 bitShift:56).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2051
    ^ rslt.
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2052
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2053
    "
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2054
     16r80000000 bitReversed32
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2055
     16r80000000 bitReversed64
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2056
     16r8000000000000000 bitReversed64
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2057
     2r11111001110100000000000000000000000000000000000000000001  bitReversed32 printStringRadix:2
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2058
     -1 asLargeInteger bitReversed32 printStringRadix:2
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2059
    "
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2060
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2061
    "Created: / 01-11-2018 / 11:35:54 / Stefan Vogel"
24005
813a3a6e3af4 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23999
diff changeset
  2062
    "Modified (comment): / 27-03-2019 / 15:14:33 / stefan"
23992
3dc2d660853d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23980
diff changeset
  2063
!
3dc2d660853d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23980
diff changeset
  2064
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2065
bitReversed8
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2066
    "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
  2067
     the high bits are ignored and cleared in the result
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2068
     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
  2069
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2070
    ^ (self digitAt:1) bitReversed8.
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2071
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2072
    "
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2073
     2r1001 asLargeInteger bitReversed8 printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2074
     2r10011101 asLargeInteger bitReversed8 printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2075
     2r111110011101 asLargeInteger bitReversed8 printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2076
     2r11111001110100000000000000000000000000000000000000000001  bitReversed8 printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2077
     -1 asLargeInteger bitReversed8 printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2078
    "
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2079
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2080
    "Created: / 01-11-2018 / 11:32:58 / Stefan Vogel"
24005
813a3a6e3af4 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23999
diff changeset
  2081
    "Modified (comment): / 27-03-2019 / 15:14:54 / stefan"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2082
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2083
85
claus
parents: 77
diff changeset
  2084
bitShift:shiftCount
claus
parents: 77
diff changeset
  2085
    "return the value of the receiver shifted by shiftCount bits;
claus
parents: 77
diff changeset
  2086
     leftShift if shiftCount > 0; rightShift otherwise.
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2087
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2088
     Notice: the result of bitShift: on negative receivers is not
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2089
             defined in the language standard (since the implementation
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2090
             is free to choose any internal representation for integers)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2091
             However, ST/X preserves the sign."
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2092
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2093
    |result
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2094
     prev       "{ Class: SmallInteger }"
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2095
     next       "{ Class: SmallInteger }"
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2096
     byte       "{ Class: SmallInteger }"
359
claus
parents: 357
diff changeset
  2097
     byte2      "{ Class: SmallInteger }"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2098
     bitShift   "{ Class: SmallInteger }"
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2099
     revShift   "{ Class: SmallInteger }"
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2100
     digitShift "{ Class: SmallInteger }"
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3036
diff changeset
  2101
     nn         "{ Class: SmallInteger }"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3036
diff changeset
  2102
     nDigits    "{ Class: SmallInteger }" |
85
claus
parents: 77
diff changeset
  2103
6358
706234560a0b allow double dispatch for bit* operations
Claus Gittinger <cg@exept.de>
parents: 6249
diff changeset
  2104
    shiftCount isInteger ifFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2105
        ^ shiftCount bitShiftFromInteger:self.
6358
706234560a0b allow double dispatch for bit* operations
Claus Gittinger <cg@exept.de>
parents: 6249
diff changeset
  2106
    ].
706234560a0b allow double dispatch for bit* operations
Claus Gittinger <cg@exept.de>
parents: 6249
diff changeset
  2107
85
claus
parents: 77
diff changeset
  2108
    shiftCount > 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2109
        "left shift"
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2110
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2111
        nDigits := self digitLength.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2112
        digitShift := shiftCount // 8.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2113
        bitShift := shiftCount \\ 8.
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
         modulo 8 shifts can be done faster ...
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2117
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2118
        bitShift == 0 ifTrue:[
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2119
            nn := nDigits + digitShift.
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2120
            result := self class basicNew numberOfDigits:nn sign:self sign.
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2121
            result digitBytes replaceFrom:(digitShift + 1) to:nn with:self digitBytes.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2122
            "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2123
             no normalize needed, since receiver was already normalized
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2124
            "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2125
            ^ result
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2126
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2127
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2128
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2129
         less-than-8 shifts can be done faster ...
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2130
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2131
        digitShift == 0 ifTrue:[
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2132
            nn := nDigits+1.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2133
            result := self class basicNew numberOfDigits:nn sign:self sign.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2134
            prev := 0.
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2135
            1 to:nDigits do:[:index |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2136
                byte := self digitAt:index.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2137
                byte := (byte bitShift:bitShift) bitOr:prev.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2138
                result digitAt:index put:(byte bitAnd:16rFF).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2139
                prev := byte bitShift:-8.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2140
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2141
            result digitAt:nn put:prev.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2142
            "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2143
             might have stored a 0-byte ...
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2144
            "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2145
            prev == 0 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2146
                ^ result compressed
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2147
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2148
            ^ result.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2149
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2150
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2151
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2152
         slow case ...
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2153
        "
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2154
        nn := nDigits + digitShift + 1.
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2155
        result := self class basicNew numberOfDigits:nn sign:self sign.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2156
        byte := self digitAt:1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2157
        byte := (byte bitShift:bitShift) bitAnd:16rFF.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2158
        result digitAt:(digitShift + 1) put:byte.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2159
        revShift := -8 + bitShift.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2160
        2 to:nDigits do:[:index |
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2161
            byte := self digitAt:index.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2162
            byte2 := self digitAt:index-1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2163
            byte := byte bitShift:bitShift.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2164
            byte2 := byte2 bitShift:revShift.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2165
            byte := (byte bitOr:byte2) bitAnd:16rFF.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2166
            result digitAt:(index + digitShift) put:byte.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2167
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2168
        byte2 := self digitAt:nDigits.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2169
        byte2 := (byte2 bitShift:revShift) bitAnd:16rFF.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2170
        result digitAt:(nDigits + digitShift + 1) put:byte2.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2171
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2172
         might have stored a 0-byte ...
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2173
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2174
        byte2 == 0 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2175
            ^ result compressed
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2176
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2177
        ^ result
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2178
    ].
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2179
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2180
    shiftCount < 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2181
        "right shift"
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2182
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2183
        nDigits := self digitLength.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2184
        digitShift := shiftCount negated // 8.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2185
        bitShift := shiftCount negated \\ 8.
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2186
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2187
        digitShift >= nDigits ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2188
            ^ 0
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2189
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2190
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2191
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2192
         modulo 8 shifts can be done faster ...
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2193
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2194
        bitShift == 0 ifTrue:[
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2195
            nn := nDigits-digitShift.
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2196
            result := self class basicNew numberOfDigits:nn sign:self sign.
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2197
            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
  2198
            nn <= SmallInteger maxBytes ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2199
                ^ result compressed
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2200
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2201
            ^ result
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2202
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2203
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2204
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2205
         less-than-8 shifts can be done faster ...
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2206
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2207
        digitShift == 0 ifTrue:[
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2208
            result := self class basicNew numberOfDigits:nDigits sign:self sign.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2209
            prev := 0.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2210
            bitShift := bitShift negated.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2211
            revShift := 8 + bitShift.
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2212
            nDigits to:1 by:-1 do:[:index |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2213
                byte := self digitAt:index.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2214
                next := (byte bitShift:revShift) bitAnd:16rFF.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2215
                byte := (byte bitShift:bitShift) bitOr:prev.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2216
                result digitAt:index put:(byte bitAnd:16rFF).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2217
                prev := next.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2218
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2219
            ^ result compressed
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2220
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2221
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2222
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2223
         slow case ...
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2224
        "
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2225
        nn := nDigits-digitShift.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2226
        result := self class basicNew numberOfDigits:nn sign:self sign.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2227
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2228
        prev := 0.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2229
        bitShift := bitShift negated.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2230
        revShift := 8 + bitShift.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2231
        nn := digitShift + 1.
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2232
        nDigits to:nn by:-1 do:[:index |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2233
            byte := self digitAt:index.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2234
            next := (byte bitShift:revShift) bitAnd:16rFF.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2235
            byte := (byte bitShift:bitShift) bitOr:prev.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2236
            result digitAt:(index - digitShift) put:byte.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2237
            prev := next.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2238
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2239
        "the last stored byte ..."
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2240
        ^ result compressed
85
claus
parents: 77
diff changeset
  2241
    ].
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2242
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2243
    ^ self "no shift"
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  2244
3638
edf314b220d2 fixed #bitShift: (right)
Claus Gittinger <cg@exept.de>
parents: 3455
diff changeset
  2245
    "Modified: / 8.7.1998 / 12:45:24 / cg"
4151
6d6971c27567 Some speedups.
Stefan Vogel <sv@exept.de>
parents: 4142
diff changeset
  2246
    "Modified: / 5.5.1999 / 16:05:05 / stefan"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2247
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2248
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  2249
bitTest:aMaskInteger
5782
dcc037e5bdbf comment change
Claus Gittinger <cg@exept.de>
parents: 5496
diff changeset
  2250
    "return true, if any bit from aMask is set in the receiver.
dcc037e5bdbf comment change
Claus Gittinger <cg@exept.de>
parents: 5496
diff changeset
  2251
     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
  2252
     is non-0, false otherwise.
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2253
     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
  2254
     the receiver and the argument. 
0c79d2fbcf16 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23055
diff changeset
  2255
     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
  2256
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2257
    |n "{ Class: SmallInteger }"
4278
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2258
     byte|
1407
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2259
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  2260
    n := (aMaskInteger digitLength) min:(self digitLength).
1407
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2261
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2262
    1 to:n do:[:index |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2263
        byte := (aMaskInteger digitAt:index) bitAnd:(self digitAt:index).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2264
        byte ~~ 0 ifTrue:[^ true].
1407
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2265
    ].
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2266
    ^ false
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2267
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2268
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2269
     16r112233445566778899 bitTest:16rFF
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2270
     16r112233445566778800 bitTest:16rFF
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2271
     16r112233445566778899 bitTest:16rFFFFFFFFFFFFFFFF00
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2272
     16r112233445566778899 bitTest:16rFF0000000000000000
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2273
     16r112233445566778899 bitTest:16r00000000000000FFFF
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2274
     16r1234567800000000 bitTest:16r8000000000000000
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2275
     16r8765432100000000 bitTest:16r8000000000000000
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2276
     16r12345678 bitTest:16r80000000
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2277
     16r87654321 bitTest:16r80000000
1407
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2278
    "
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2279
23118
0c79d2fbcf16 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23055
diff changeset
  2280
    "Modified: / 06-06-1999 / 15:10:33 / cg"
0c79d2fbcf16 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23055
diff changeset
  2281
    "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
  2282
!
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2283
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2284
bitXor:anInteger
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2285
    "return the bitwise-or of the receiver and the argument, anInteger.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2286
     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
  2287
     the receiver and the argument.
0c79d2fbcf16 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23055
diff changeset
  2288
     It is redefined in concrete subclasses (especially SmallInteger) for performance."
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2289
927
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  2290
    |n "{ Class: SmallInteger }"
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  2291
     result byte|
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2292
6358
706234560a0b allow double dispatch for bit* operations
Claus Gittinger <cg@exept.de>
parents: 6249
diff changeset
  2293
    anInteger isInteger ifFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2294
        ^ anInteger bitXorFromInteger:self.
6358
706234560a0b allow double dispatch for bit* operations
Claus Gittinger <cg@exept.de>
parents: 6249
diff changeset
  2295
    ].
706234560a0b allow double dispatch for bit* operations
Claus Gittinger <cg@exept.de>
parents: 6249
diff changeset
  2296
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2297
    n := (anInteger digitLength) max:(self digitLength).
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2298
    result := self class basicNew numberOfDigits:n.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2299
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2300
    1 to:n do:[:index |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2301
        byte := (anInteger digitAt:index) bitXor:(self digitAt:index).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2302
        result digitAt:index put:byte.
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2303
    ].
3993
a5a09b2d36cd oops - bitXor: did not always compress the result.
Claus Gittinger <cg@exept.de>
parents: 3908
diff changeset
  2304
    (byte == 0 or:[n <= SmallInteger maxBytes]) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2305
        ^ result compressed
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2306
    ].
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2307
    ^ result
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2308
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2309
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2310
     (16r112233445566778899 bitXor:16rFF                ) printStringRadix:16 '112233445566778866'
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2311
     (16r112233445566778899 bitXor:16rFFFFFFFFFFFFFFFF00) printStringRadix:16 'EEDDCCBBAA99887799'
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2312
     (16r112233445566778899 bitXor:16rFF0000000000000000) printStringRadix:16 'EE2233445566778899'
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2313
     (16r112233445566778899 bitXor:16r112233445566778800) printStringRadix:16
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2314
    "
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  2315
23118
0c79d2fbcf16 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23055
diff changeset
  2316
    "Modified: / 05-11-1996 / 14:06:40 / cg"
0c79d2fbcf16 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23055
diff changeset
  2317
    "Modified (comment): / 20-06-2018 / 14:47:55 / Claus Gittinger"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2318
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2319
12670
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2320
changeMask:mask to:aBooleanOrNumber
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2321
    "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
  2322
     depending on aBooleanOrNumber.
14404
49a54ea47bf8 comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 14403
diff changeset
  2323
     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
  2324
     but a new number is returned. Should be named #withMask:changedTo:"
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2325
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2326
    (aBooleanOrNumber == 0 or:[aBooleanOrNumber == false]) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2327
        ^ self bitClear:mask
12670
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2328
    ].
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2329
    ^ self bitOr:mask
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2330
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2331
    "
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  2332
     (16r3fffffff changeMask:16r80 to:0) hexPrintString
12670
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2333
     (16r3fff0000 changeMask:16r80 to:1) hexPrintString
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2334
    "
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2335
!
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2336
4278
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2337
even
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2338
    "return true if the receiver is even"
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2339
9401
65f884297c68 speed up #even and #odd
Stefan Vogel <sv@exept.de>
parents: 9316
diff changeset
  2340
    ^ (self bitAt:1) == 0
4278
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2341
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2342
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2343
     16r112233445566778899 even
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2344
     16r112233445566778800 even
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2345
     1 even
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2346
     2 even
4278
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2347
    "
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2348
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2349
    "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
  2350
!
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2351
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2352
highBit
19600
aca6c5fb9d70 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19553
diff changeset
  2353
    "return the bitIndex of the highest bit set. 
aca6c5fb9d70 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19553
diff changeset
  2354
     The returned bitIndex starts at 1 for the least significant bit.
24167
0dc1e390b3e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24166
diff changeset
  2355
     Returns 0 if no bit is set.
0dc1e390b3e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24166
diff changeset
  2356
     Notice for negative numbers, the returned value is undefined (actually: nonsense),
0dc1e390b3e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24166
diff changeset
  2357
     because for 2's complement representation, conceptionally all high bits are 1"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2358
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2359
    |byteNr highByte|
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2360
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2361
    byteNr := self digitLength.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  2362
    byteNr == 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2363
        ^ 0
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  2364
    ].
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2365
    highByte := self digitAt:byteNr.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2366
    ^ (byteNr - 1) * 8 + highByte highBit
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2367
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2368
    "
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  2369
     0 highBit
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  2370
     -1 highBit
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2371
     (1 bitShift:1) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2372
     (1 bitShift:30) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2373
     (1 bitShift:31) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2374
     (1 bitShift:32) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2375
     (1 bitShift:33) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2376
     (1 bitShift:64) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2377
     (1 bitShift:1000) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2378
     (1 bitShift:1000) negated highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2379
     ((1 bitShift:64)-1) highBit
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2380
    "
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  2381
24167
0dc1e390b3e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24166
diff changeset
  2382
    "Modified: / 03-05-1999 / 09:20:57 / stefan"
0dc1e390b3e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24166
diff changeset
  2383
    "Modified (comment): / 27-05-2019 / 08:48:45 / Claus Gittinger"
2429
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2384
!
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2385
24192
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  2386
highBitOfMagnitude 
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  2387
    "return the high bit index of my magnitude bits"
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  2388
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  2389
    | magnitude |
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  2390
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  2391
    magnitude := self abs.
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  2392
    ^ magnitude highBit
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  2393
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  2394
    "
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  2395
     17 highBit    -> 5
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  2396
     -17 highBit   -> 63 (actually undefined)
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  2397
     -17 highBitOfMagnitude -> 5
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  2398
    "
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  2399
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  2400
    "Created: / 27-05-2019 / 08:46:49 / Claus Gittinger"
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  2401
!
18512bf68422 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24167
diff changeset
  2402
16071
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2403
leftShift:shiftCount
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2404
    "return the value of the receiver shifted left by shiftCount bits;
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2405
     leftShift if shiftCount > 0; rightShift otherwise.
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2406
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2407
     Notice: the result of bitShift: on negative receivers is not
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2408
             defined in the language standard (since the implementation
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2409
             is free to choose any internal representation for integers)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2410
             However, ST/X preserves the sign."
16071
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2411
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2412
    ^ self bitShift:shiftCount
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2413
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2414
    "
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2415
     16r100000000 leftShift:1
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2416
     16r100000000 negated leftShift:1
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2417
    "
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2418
!
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2419
2429
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2420
lowBit
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2421
    "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
  2422
     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
  2423
     Returns 0 if no bit is set."
2429
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2424
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2425
    |maxBytes "{ Class: SmallInteger }"
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2426
     byte|
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2427
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2428
    maxBytes := self digitLength.
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2429
    1 to:maxBytes do:[:byteIndex |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2430
        byte := self digitAt:byteIndex.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2431
        byte ~~ 0 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2432
            ^ (byteIndex-1)*8 + (byte lowBit)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2433
        ].
2429
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2434
    ].
6480
4ff7f2af25fc lowBit now returns 0 if no bit is set.
Claus Gittinger <cg@exept.de>
parents: 6358
diff changeset
  2435
    ^ 0 "/ should not happen
2429
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2436
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2437
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2438
     0 lowBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2439
     1 lowBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2440
     (1 bitShift:1) lowBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2441
     (1 bitShift:1) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2442
     (1 bitShift:30) lowBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2443
     (1 bitShift:30) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2444
     (1 bitShift:31) lowBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2445
     (1 bitShift:31) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2446
     (1 bitShift:32) lowBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2447
     (1 bitShift:32) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2448
     (1 bitShift:33) lowBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2449
     (1 bitShift:33) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2450
     (1 bitShift:64) lowBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2451
     (1 bitShift:64) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2452
     (1 bitShift:1000) lowBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2453
     (1 bitShift:1000) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2454
     ((1 bitShift:64)-1) lowBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2455
     ((1 bitShift:64)-1) highBit
2429
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2456
    "
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2457
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2458
    "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
  2459
!
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2460
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  2461
noMask:aMaskInteger
4643
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  2462
    "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
  2463
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  2464
    ^ (self bitAnd:aMaskInteger) == 0
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  2465
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  2466
    "
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  2467
     2r00001111 noMask:2r00000001
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  2468
     2r00001111 noMask:2r11110000
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  2469
    "
4643
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  2470
!
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  2471
4278
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2472
odd
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2473
    "return true if the receiver is odd"
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2474
9401
65f884297c68 speed up #even and #odd
Stefan Vogel <sv@exept.de>
parents: 9316
diff changeset
  2475
    ^ (self bitAt:1) == 1
4278
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2476
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2477
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2478
     16r112233445566778899 odd
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2479
     16r112233445566778800 odd
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2480
     1 odd
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2481
     2 odd
4278
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2482
    "
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2483
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2484
    "Created: / 6.6.1999 / 15:00:55 / cg"
5209
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2485
!
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2486
7155
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2487
rightShift:shiftCount
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2488
    "return the value of the receiver shifted right by shiftCount bits;
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2489
     rightShift if shiftCount > 0; leftShift otherwise.
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2490
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2491
     Notice: the result of bitShift: on negative receivers is not
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2492
             defined in the language standard (since the implementation
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2493
             is free to choose any internal representation for integers)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2494
             However, ST/X preserves the sign."
7155
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2495
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2496
    ^ self bitShift:(shiftCount negated)
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2497
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2498
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2499
     16r100000000 rightShift:1
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2500
     16r100000000 negated rightShift:1
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2501
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2502
     16r100000000 rightShift:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2503
     16r100000000 negated rightShift:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2504
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2505
     16r100000000 rightShift:3
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2506
     16r100000000 negated rightShift:3
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2507
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2508
     ((16r100000000 rightShift:1) rightShift:1) rightShift:1
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2509
     ((16r100000000 negated rightShift:1) rightShift:1) rightShift:1
7155
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2510
    "
19053
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2511
! !
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2512
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2513
!Integer methodsFor:'bit operators - indexed'!
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2514
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2515
bitAt:index
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2516
    "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
  2517
     Notice: the result of bitAt: on negative receivers is not
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2518
             defined in the language standard (since the implementation
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2519
             is free to choose any internal representation for integers)"
19053
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2520
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2521
    |i "{Class: SmallInteger}"|
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2522
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2523
    i := index - 1.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2524
    i < 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2525
        ^ SubscriptOutOfBoundsError
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2526
                raiseRequestWith:index
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2527
                errorString:'index out of bounds'
19053
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2528
    ].
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2529
    ^ (self digitAt:(i // 8 + 1)) bitAt:(i \\ 8 + 1)
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2530
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2531
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2532
     1 bitAt:1                     => 1
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2533
     1 bitAt:2                     => 0
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2534
     1 bitAt:0                     index error
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2535
     2r1000100010001000100010001000100010001000100010001000 bitAt:48 => 1
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2536
     2r1000100010001000100010001000100010001000100010001000 bitAt:47 => 0
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2537
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2538
     (1 bitShift:1000) bitAt:1000  => 0
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2539
     (1 bitShift:1000) bitAt:1001  => 1
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2540
     (1 bitShift:1000) bitAt:1002  => 0
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2541
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2542
     (1 bitShift:30) bitAt:30
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2543
     (1 bitShift:30) bitAt:31
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2544
     (1 bitShift:30) bitAt:32
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2545
     (1 bitShift:31) bitAt:31
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2546
     (1 bitShift:31) bitAt:32
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2547
     (1 bitShift:31) bitAt:33
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2548
     (1 bitShift:32) bitAt:32
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2549
     (1 bitShift:32) bitAt:33
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2550
     (1 bitShift:32) bitAt:34
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2551
     (1 bitShift:64) bitAt:64
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2552
     (1 bitShift:64) bitAt:65
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2553
     (1 bitShift:64) bitAt:66
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2554
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2555
!
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2556
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2557
bitIndicesOfOneBitsDo:aBlock
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2558
    "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
  2559
     The index for the least significant bit is 1."
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2560
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2561
    1 to:self digitLength do:[:i8 |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2562
        |byte|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2563
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2564
        byte := self digitAt:i8.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2565
        byte ~~ 0 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2566
            1 to:8 do:[:i |
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2567
                (byte bitAt:i) == 1 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2568
                    aBlock value:(((i8-1)*8) + i).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2569
                ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2570
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2571
        ]
19053
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2572
    ].
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2573
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2574
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2575
     1 bitIndicesOfOneBitsDo:[:i | Transcript showCR:i].
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2576
     2 bitIndicesOfOneBitsDo:[:i | Transcript showCR:i]
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2577
     4 bitIndicesOfOneBitsDo:[:i | Transcript showCR:i]
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2578
     12 bitIndicesOfOneBitsDo:[:i | Transcript showCR:i]
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2579
     127 bitIndicesOfOneBitsDo:[:i | Transcript showCR:i]
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2580
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2581
!
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2582
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2583
bitIndicesOfOneBitsReverseDo:aBlock
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2584
    "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
  2585
     and ending with the lowest bit.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2586
     The index for the least significant bit is 1."
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2587
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2588
    self digitLength downTo:1 do:[:i8 |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2589
        |byte|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2590
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2591
        byte := self digitAt:i8.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2592
        byte ~~ 0 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2593
            8 downTo:1 do:[:i |
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2594
                (byte bitAt:i) == 1 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2595
                    aBlock value:(((i8-1)*8) + i).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2596
                ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2597
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2598
        ]
19053
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2599
    ].
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2600
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2601
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2602
     1 bitIndicesOfOneBitsReverseDo:[:i | Transcript showCR:i].
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2603
     2 bitIndicesOfOneBitsReverseDo:[:i | Transcript showCR:i]
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2604
     4 bitIndicesOfOneBitsReverseDo:[:i | Transcript showCR:i]
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2605
     12 bitIndicesOfOneBitsReverseDo:[:i | Transcript showCR:i]
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2606
     127 bitIndicesOfOneBitsReverseDo:[:i | Transcript showCR:i]
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2607
    "
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
changeBit:index to:aBooleanOrNumber
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2611
    "return a new number where the specified bit is on or off,
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2612
     depending on aBooleanOrNumber.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2613
     Bits are counted from 1 starting with the least significant.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2614
     The method's name may be misleading: the receiver is not changed,
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2615
     but a new number is returned. Should be named #withBit:changedTo:"
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2616
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2617
    (aBooleanOrNumber == 0 or:[aBooleanOrNumber == false]) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2618
        ^ self clearBit:index
19053
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2619
    ].
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2620
    ^ self setBit:index
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2621
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2622
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2623
     (16r3fffffff changeBit:31 to:1) hexPrintString
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2624
     (16r3fffffff asLargeInteger setBit:31) hexPrintString
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2625
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2626
!
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2627
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2628
clearBit:index
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2629
    "return a new integer where the specified bit is off.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2630
     Bits are counted from 1 starting with the least significant.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2631
     The method's name may be misleading: the receiver is not changed,
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2632
     but a new number is returned. Should be named #withBitCleared:"
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2633
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2634
    |n         "{ Class: SmallInteger }"
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2635
     byteIndex "{ Class: SmallInteger }"
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2636
     bitIndex  "{ Class: SmallInteger }"
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2637
     result byte|
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2638
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2639
    index <= 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2640
        ^ SubscriptOutOfBoundsSignal
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2641
                raiseRequestWith:index
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2642
                errorString:'bit index out of bounds'
19053
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2643
    ].
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2644
    byteIndex := ((index - 1) // 8) + 1.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2645
    n := self digitLength.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2646
    byteIndex > n ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2647
        ^ self
19053
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2648
    ].
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2649
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2650
    result := self simpleDeepCopy.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2651
    bitIndex := ((index - 1) \\ 8) + 1.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2652
    byte := (result digitAt:byteIndex) clearBit:bitIndex.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2653
    result digitAt:byteIndex put:byte.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2654
    (byte == 0 or:[n == byteIndex and:[n <= SmallInteger maxBytes]]) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2655
        ^ result compressed
19053
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2656
    ].
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2657
    ^ result
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2658
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2659
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2660
     3111111111 clearBit:1
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2661
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2662
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2663
    "Modified: / 28.7.1998 / 18:35:50 / cg"
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2664
!
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2665
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2666
invertBit:index
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2667
    "return a new number where the specified bit is inverted.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2668
     Bits are counted from 1 starting with the least significant.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2669
     The method's name may be misleading: the receiver is not changed,
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2670
     but a new number is returned. Should be named #withBitInverted:"
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2671
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2672
    index <= 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2673
        ^ SubscriptOutOfBoundsSignal
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2674
                raiseRequestWith:index
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2675
                errorString:'index out of bounds'
19053
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2676
    ].
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2677
    ^ self bitXor:(1 bitShift:index-1)
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2678
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2679
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2680
     0 invertBit:3         => 4 (2r100)
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2681
     0 invertBit:48        => 140737488355328 (2r1000.....000)
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2682
     ((0 invertBit:99) invertBit:100) printStringRadix:2
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2683
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2684
!
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2685
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2686
isBitClear:index
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2687
    "return true if the index' bit is clear; false otherwise.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2688
     Bits are counted from 1 starting with the least significant."
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2689
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2690
    ^ (self bitAt:index) == 0
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2691
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2692
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2693
     5 isBitClear:1       => false
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2694
     5 isBitClear:2       => true
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2695
     5 isBitClear:3       => false
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2696
     5 isBitClear:4       => true
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2697
     5 isBitClear:10000   => true
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2698
     2r0101 isBitClear:2  => true
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2699
     2r0101 isBitClear:1  => false
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2700
     2r0101 isBitClear:0  index error
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2701
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2702
!
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2703
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2704
isBitSet:index
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2705
    "return true if the index' bit is set; false otherwise.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2706
     Bits are counted from 1 starting with the least significant."
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2707
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2708
    ^ (self bitAt:index) ~~ 0
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2709
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2710
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2711
     5 isBitSet:3       => true
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2712
     2r0101 isBitSet:2  => false
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2713
     2r0101 isBitSet:1  => true
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2714
     2r0101 isBitSet:0  index error
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2715
    "
7155
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2716
!
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2717
5209
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2718
setBit:index
8937
4f2508548327 comment
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  2719
    "return a new integer, where the specified bit is on.
5209
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2720
     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
  2721
     The method's name may be misleading: the receiver is not changed,
11499
fa02ab9a83f0 comment
Claus Gittinger <cg@exept.de>
parents: 11496
diff changeset
  2722
     but a new number is returned. Should be named #withBitSet:"
5209
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2723
5496
338c81a04468 index bounds in bit operations;
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
  2724
    index <= 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2725
        ^ SubscriptOutOfBoundsSignal
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2726
                raiseRequestWith:index
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2727
                errorString:'index out of bounds'
5496
338c81a04468 index bounds in bit operations;
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
  2728
    ].
5209
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2729
    ^ self bitOr:(1 bitShift:index-1)
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2730
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2731
    "
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2732
     0 setBit:3         => 4 (2r100)
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2733
     0 setBit:48        => 140737488355328 (2r1000.....000)
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2734
     ((0 setBit:99) setBit:100) printStringRadix:2
5209
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2735
    "
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2736
! !
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2737
3890
a024811ed304 added #digitByteLength
Claus Gittinger <cg@exept.de>
parents: 3884
diff changeset
  2738
!Integer methodsFor:'byte access'!
a024811ed304 added #digitByteLength
Claus Gittinger <cg@exept.de>
parents: 3884
diff changeset
  2739
12784
3bc5946ade11 added: #byteAt:
Stefan Vogel <sv@exept.de>
parents: 12670
diff changeset
  2740
byteAt:anIndex
3bc5946ade11 added: #byteAt:
Stefan Vogel <sv@exept.de>
parents: 12670
diff changeset
  2741
    "compatibility with ByteArrays etc."
3bc5946ade11 added: #byteAt:
Stefan Vogel <sv@exept.de>
parents: 12670
diff changeset
  2742
3bc5946ade11 added: #byteAt:
Stefan Vogel <sv@exept.de>
parents: 12670
diff changeset
  2743
    ^ self digitAt:anIndex
3bc5946ade11 added: #byteAt:
Stefan Vogel <sv@exept.de>
parents: 12670
diff changeset
  2744
3bc5946ade11 added: #byteAt:
Stefan Vogel <sv@exept.de>
parents: 12670
diff changeset
  2745
    "
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2746
        12345678 byteAt:2
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2747
        12345678 digitBytes at:2
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2748
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2749
        -12345678 byteAt:2
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2750
        -12345678 digitBytes at:2
12784
3bc5946ade11 added: #byteAt:
Stefan Vogel <sv@exept.de>
parents: 12670
diff changeset
  2751
    "
3bc5946ade11 added: #byteAt:
Stefan Vogel <sv@exept.de>
parents: 12670
diff changeset
  2752
!
3bc5946ade11 added: #byteAt:
Stefan Vogel <sv@exept.de>
parents: 12670
diff changeset
  2753
19130
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2754
byteSwapped32
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2755
    "a fallback, in case unimplemented in concrete classes.
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2756
     Not actually used"
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2757
    
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2758
    ^ ((self digitAt:1) bitShift:24)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2759
    + ((self digitAt:2) bitShift:16)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2760
    + ((self digitAt:3) bitShift:8)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2761
    + (self digitAt:4)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2762
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2763
    "
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2764
     16r12345678901234567890 byteSwapped32
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2765
    "
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2766
!
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2767
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2768
byteSwapped64
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2769
    "a fallback, in case unimplemented in concrete classes.
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2770
     Not actually used"
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2771
    
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2772
    ^ ((self digitAt:1) bitShift:56)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2773
    + ((self digitAt:2) bitShift:48)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2774
    + ((self digitAt:3) bitShift:40)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2775
    + ((self digitAt:4) bitShift:32)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2776
    + ((self digitAt:5) bitShift:24)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2777
    + ((self digitAt:6) bitShift:16)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2778
    + ((self digitAt:7) bitShift:8)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2779
    + (self digitAt:8)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2780
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2781
    "
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2782
     16r1234567890123456789 byteSwapped64 hexPrintString
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2783
    "
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2784
!
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2785
3890
a024811ed304 added #digitByteLength
Claus Gittinger <cg@exept.de>
parents: 3884
diff changeset
  2786
digitByteLength
19327
723b235f0980 #DOCUMENTATION
Stefan Vogel <sv@exept.de>
parents: 19319
diff changeset
  2787
    <resource: #obsolete>
19316
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2788
    "return the number bytes required for a 2's complement
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2789
     binary representation of this Integer."
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2790
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2791
    self obsoleteMethodWarning:'use signedDigitLength - attention: return value fixed'.
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2792
    ^ self signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2793
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2794
    "
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2795
     -127 digitByteLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2796
     -128 digitByteLength
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2797
     -129 digitByteLength
19315
e11b9d45bb9c #DOCUMENTATION
Stefan Vogel <sv@exept.de>
parents: 19276
diff changeset
  2798
     -32769 digitByteLength
e11b9d45bb9c #DOCUMENTATION
Stefan Vogel <sv@exept.de>
parents: 19276
diff changeset
  2799
     32768 digitByteLength
3890
a024811ed304 added #digitByteLength
Claus Gittinger <cg@exept.de>
parents: 3884
diff changeset
  2800
    "
10488
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2801
!
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2802
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2803
digitBytes
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  2804
    "return a byteArray filled with the receiver's bits
10488
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2805
     (8 bits of the absolute value per element),
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2806
     least significant byte is first"
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2807
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2808
    ^ self subclassResponsibility
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2809
!
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2810
15567
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  2811
digitBytesMSB
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  2812
    "return a byteArray filled with the receiver's bits
15567
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  2813
     (8 bits of the absolute value per element),
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  2814
     most significant byte is first"
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  2815
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  2816
    ^ self subclassResponsibility
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  2817
!
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  2818
10488
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2819
digitBytesMSB:msbFlag
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  2820
    "return a byteArray filled with the receiver's bits
10488
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2821
     (8 bits of the absolute value per element),
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2822
     if msbflag = true, most significant byte is first,
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2823
     otherwise least significant byte is first"
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2824
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2825
    msbFlag ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2826
        ^ self digitBytesMSB.
10488
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2827
    ].
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2828
    ^ self digitBytes
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2829
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2830
    "
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2831
      16r12 digitBytesMSB:true
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2832
      16r1234 digitBytesMSB:true
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2833
      16r1234 digitBytesMSB:false
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2834
      16r12345678 digitBytesMSB:true
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2835
      16r12345678 digitBytesMSB:false
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2836
    "
14166
ea350ed3d6a9 added: #swapBytes
Stefan Vogel <sv@exept.de>
parents: 14098
diff changeset
  2837
!
ea350ed3d6a9 added: #swapBytes
Stefan Vogel <sv@exept.de>
parents: 14098
diff changeset
  2838
19316
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2839
signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2840
    "return the number bytes required for a 2's complement
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2841
     binary representation of this Integer.
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2842
     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
  2843
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2844
    |absLen "{ Class: SmallInteger }" |
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2845
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2846
    self >= 0 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2847
        absLen := self digitLength.
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2848
        (self digitByteAt:absLen) >= 16r80 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2849
            ^ absLen + 1.
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2850
        ].
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2851
        ^ absLen.
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2852
    ].
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2853
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2854
    absLen := self negated digitLength.
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2855
    (self digitByteAt:absLen) < 16r80 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2856
            ^ absLen + 1
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2857
    ].
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2858
    ^ absLen
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2859
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2860
    "
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2861
     0 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2862
     1 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2863
     126 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2864
     127 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2865
     128 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2866
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2867
     255 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2868
     256 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2869
     257 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2870
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2871
     32767 signedDigitLength    
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2872
     32768 signedDigitLength    
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2873
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2874
     -1 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2875
     -127 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2876
     -128 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2877
     -129 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2878
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2879
     -32767 signedDigitLength    
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2880
     -32768 signedDigitLength    
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2881
     -32769 signedDigitLength    
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2882
    "
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2883
!
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2884
14166
ea350ed3d6a9 added: #swapBytes
Stefan Vogel <sv@exept.de>
parents: 14098
diff changeset
  2885
swapBytes
16886
247352d5de0f class: Integer
Stefan Vogel <sv@exept.de>
parents: 16884
diff changeset
  2886
    "swap bytes pair-wise in a positive integer
247352d5de0f class: Integer
Stefan Vogel <sv@exept.de>
parents: 16884
diff changeset
  2887
     i.e. a.b.c.d -> b.a.d.c
247352d5de0f class: Integer
Stefan Vogel <sv@exept.de>
parents: 16884
diff changeset
  2888
     Swapping of negative integers is undefined and therefore not supported."
16884
1d8ce66b2547 class: Integer
Stefan Vogel <sv@exept.de>
parents: 16874
diff changeset
  2889
1d8ce66b2547 class: Integer
Stefan Vogel <sv@exept.de>
parents: 16874
diff changeset
  2890
    |digitBytes|
1d8ce66b2547 class: Integer
Stefan Vogel <sv@exept.de>
parents: 16874
diff changeset
  2891
1d8ce66b2547 class: Integer
Stefan Vogel <sv@exept.de>
parents: 16874
diff changeset
  2892
    self negative ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2893
        RangeError raiseWith:self errorString:'negative numbers are not supported in #swapBytes'.
16884
1d8ce66b2547 class: Integer
Stefan Vogel <sv@exept.de>
parents: 16874
diff changeset
  2894
    ].
1d8ce66b2547 class: Integer
Stefan Vogel <sv@exept.de>
parents: 16874
diff changeset
  2895
    digitBytes := self digitBytes.
1d8ce66b2547 class: Integer
Stefan Vogel <sv@exept.de>
parents: 16874
diff changeset
  2896
    digitBytes size odd ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2897
        "ByteArray<<#swapBytes needs even number of bytes.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2898
         Add 0 to the most significant position (the end)"
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2899
        digitBytes := digitBytes copyWith:0.
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  2900
16884
1d8ce66b2547 class: Integer
Stefan Vogel <sv@exept.de>
parents: 16874
diff changeset
  2901
    ].
1d8ce66b2547 class: Integer
Stefan Vogel <sv@exept.de>
parents: 16874
diff changeset
  2902
    ^ (LargeInteger digitBytes:digitBytes swapBytes) compressed
14166
ea350ed3d6a9 added: #swapBytes
Stefan Vogel <sv@exept.de>
parents: 14098
diff changeset
  2903
ea350ed3d6a9 added: #swapBytes
Stefan Vogel <sv@exept.de>
parents: 14098
diff changeset
  2904
    "
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2905
        16rFFEE2211 swapBytes hexPrintString
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2906
        16rFFEEAA2211 swapBytes hexPrintString
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2907
        16r2211 swapBytes hexPrintString
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2908
        16rFF3FFFFF swapBytes
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2909
        self assert:(SmallInteger maxVal swapBytes swapBytes == SmallInteger maxVal)
14166
ea350ed3d6a9 added: #swapBytes
Stefan Vogel <sv@exept.de>
parents: 14098
diff changeset
  2910
    "
3890
a024811ed304 added #digitByteLength
Claus Gittinger <cg@exept.de>
parents: 3884
diff changeset
  2911
! !
a024811ed304 added #digitByteLength
Claus Gittinger <cg@exept.de>
parents: 3884
diff changeset
  2912
5238
f7a816a660a3 categories
Claus Gittinger <cg@exept.de>
parents: 5210
diff changeset
  2913
!Integer methodsFor:'coercing & converting'!
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2914
1888
463d49ca22e3 fixedPoint support
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2915
asFixedPoint
463d49ca22e3 fixedPoint support
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2916
    "return the receiver as a fixedPoint number"
463d49ca22e3 fixedPoint support
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2917
6640
2de8925ad2cd fixed asFixedPoint (did return int due to reduce).
Claus Gittinger <cg@exept.de>
parents: 6639
diff changeset
  2918
    ^ FixedPoint basicNew
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2919
        setNumerator:self denominator:1 scale:1
1888
463d49ca22e3 fixedPoint support
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2920
463d49ca22e3 fixedPoint support
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2921
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2922
     100 asFixedPoint
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2923
     100 asFixedPoint + 0.1 asFixedPoint
1888
463d49ca22e3 fixedPoint support
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2924
    "
463d49ca22e3 fixedPoint support
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2925
463d49ca22e3 fixedPoint support
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2926
    "Modified: 5.11.1996 / 15:13:17 / cg"
463d49ca22e3 fixedPoint support
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2927
!
463d49ca22e3 fixedPoint support
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2928
2141
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2929
asFixedPoint:scale
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2930
    "return the receiver as fixedPoint number, with the given number
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2931
     of post-decimal-point digits."
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2932
6639
d88a51b081ae fixed asFixedPoint (did return int due to reduce).
Claus Gittinger <cg@exept.de>
parents: 6635
diff changeset
  2933
    ^ FixedPoint basicNew
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2934
        setNumerator:self denominator:1 scale:scale
2141
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2935
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2936
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2937
     100 asFixedPoint:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2938
     100 asFixedPoint + (0.1 asFixedPoint:2)
2141
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2939
    "
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2940
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2941
    "Modified: 10.1.1997 / 20:00:08 / cg"
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2942
!
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2943
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2944
asFloat
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2945
    "return a Float with same value as myself.
11240
4ce9c8fa3d37 comment
Claus Gittinger <cg@exept.de>
parents: 11223
diff changeset
  2946
     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
  2947
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2948
    ^ Float fromInteger:self
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2949
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2950
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2951
     1234567890 asFloat
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2952
     1234567890 asFloat asInteger
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2953
     12345678901234567890 asFloat
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2954
     12345678901234567890 asFloat asInteger
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2955
    "
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2956
!
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2957
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2958
asFraction
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2959
    "return a Fraction with same value as receiver"
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2960
2794
862ee34a4821 when coercing an integer, do not reduce the result.
Claus Gittinger <cg@exept.de>
parents: 2793
diff changeset
  2961
    ^ 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
  2962
862ee34a4821 when coercing an integer, do not reduce the result.
Claus Gittinger <cg@exept.de>
parents: 2793
diff changeset
  2963
    "Modified: 28.7.1997 / 19:26:06 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2964
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2965
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2966
asInteger
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2967
    "return the receiver truncated towards zero -
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2968
     for integers this is self"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2969
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2970
    ^ self
1337
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  2971
!
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  2972
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2973
asLargeFloat
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2974
    "return a LargeFloat with same value as myself.
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2975
     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
  2976
     doing this.
624d156e698c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22600
diff changeset
  2977
     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
  2978
23055
321a26366ce6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23053
diff changeset
  2979
    ^ (LargeFloat ? LongFloat ? Float) fromInteger:self
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2980
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2981
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2982
     1234567890 asLargeFloat
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2983
     1234567890 asLargeFloat asInteger
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2984
     12345678901234567890 asLargeFloat
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2985
     12345678901234567890 asLargeFloat asInteger
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2986
    "
23053
624d156e698c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22600
diff changeset
  2987
23055
321a26366ce6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23053
diff changeset
  2988
    "Modified: / 07-06-2018 / 16:28:16 / Claus Gittinger"
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2989
!
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2990
24153
88feac51cfbb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24099
diff changeset
  2991
asLargeFloatPrecision:n
88feac51cfbb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24099
diff changeset
  2992
    "return a LargeFloat with same value as myself.
88feac51cfbb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24099
diff changeset
  2993
     Since largeFloats have a limited precision, you usually loose bits when
88feac51cfbb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24099
diff changeset
  2994
     doing this.
88feac51cfbb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24099
diff changeset
  2995
     If the largeFloat class is not present, a regular float is returned"
88feac51cfbb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24099
diff changeset
  2996
88feac51cfbb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24099
diff changeset
  2997
    LargeFloat isNil ifTrue:[^ (LongFloat ? Float) fromInteger:self].
88feac51cfbb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24099
diff changeset
  2998
    ^ LargeFloat fromInteger:self precision:n 
88feac51cfbb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24099
diff changeset
  2999
88feac51cfbb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24099
diff changeset
  3000
    "
88feac51cfbb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24099
diff changeset
  3001
     1234567890 asLargeFloatPrecision:10
88feac51cfbb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24099
diff changeset
  3002
     12345678901234567890 asLargeFloatPrecision:10
88feac51cfbb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24099
diff changeset
  3003
    "
88feac51cfbb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24099
diff changeset
  3004
88feac51cfbb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24099
diff changeset
  3005
    "Created: / 26-05-2019 / 03:56:50 / Claus Gittinger"
88feac51cfbb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24099
diff changeset
  3006
!
88feac51cfbb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24099
diff changeset
  3007
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  3008
asLongFloat
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  3009
    "return a LongFloat with same value as myself.
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  3010
     Since longFloats have a limited precision, you usually loose bits when
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  3011
     doing this."
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  3012
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  3013
    ^ LongFloat fromInteger:self
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  3014
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  3015
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3016
     1234567890 asFloat
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3017
     1234567890 asFloat asInteger
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3018
     12345678901234567890 asFloat
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3019
     12345678901234567890 asFloat asInteger
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  3020
    "
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  3021
!
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  3022
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3023
asModuloNumber
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3024
    "return a precomputed modulo number"
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3025
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  3026
    ^ ModuloNumber modulus:self.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3027
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3028
    "Created: / 3.5.1999 / 14:48:03 / stefan"
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3029
!
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3030
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  3031
asShortFloat
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  3032
    "return a ShortFloat with same value as receiver"
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  3033
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  3034
    ^ ShortFloat fromInteger:self
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  3035
!
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  3036
21822
7f00cd69b534 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21774
diff changeset
  3037
coerce:aNumber
7f00cd69b534 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21774
diff changeset
  3038
    "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
  3039
7f00cd69b534 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21774
diff changeset
  3040
    ^ aNumber asInteger
7f00cd69b534 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21774
diff changeset
  3041
!
7f00cd69b534 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21774
diff changeset
  3042
14043
045fd447ab4d added: #signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 13993
diff changeset
  3043
signExtended24BitValue
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3044
    "return an integer from sign-extending the 24'th bit.
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3045
     i.e. interprets the lowest 24 bits as a signed integer,
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3046
     ignoring higher bits.
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3047
     This may be useful for communication interfaces"
14043
045fd447ab4d added: #signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 13993
diff changeset
  3048
045fd447ab4d added: #signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 13993
diff changeset
  3049
    ^ (self bitAnd:16rFFFFFF) signExtended24BitValue
045fd447ab4d added: #signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 13993
diff changeset
  3050
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3051
    "
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3052
     16r800000 signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3053
     16r7FFFFF signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3054
     16rFFFFFF signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3055
    "
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  3056
14043
045fd447ab4d added: #signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 13993
diff changeset
  3057
    "Modified: / 07-05-1996 / 09:31:57 / cg"
045fd447ab4d added: #signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 13993
diff changeset
  3058
    "Created: / 05-03-2012 / 14:37:55 / cg"
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3059
    "Modified (comment): / 26-02-2016 / 19:39:52 / cg"
14043
045fd447ab4d added: #signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 13993
diff changeset
  3060
!
045fd447ab4d added: #signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 13993
diff changeset
  3061
1337
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  3062
signExtendedByteValue
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3063
    "return an integer from sign-extending the 8'th bit.
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3064
     i.e. interprets the lowest 8 bits as a signed integer,
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3065
     ignoring higher bits.
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3066
     This may be useful for communication interfaces"
1337
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  3067
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  3068
    ^ (self bitAnd:16rFF) signExtendedByteValue
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  3069
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3070
    "
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3071
     16r80 signExtendedByteValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3072
     16r7F signExtendedByteValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3073
     16rFF signExtendedByteValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3074
    "
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3075
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3076
    "Created: / 07-05-1996 / 09:31:52 / cg"
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3077
    "Modified (comment): / 26-02-2016 / 19:39:46 / cg"
1337
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  3078
!
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  3079
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3080
signExtendedFromBit:bitNr
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3081
    "return an integer from sign-extending the n'th bit.
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3082
     i.e. interprets the lowest n bits as a signed integer,
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3083
     ignoring higher bits.
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3084
     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
  3085
     This may be useful for communication interfaces.
d4ac55497643 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22072
diff changeset
  3086
     (kind of the reverse operation to asUnsigned:)."
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3087
22070
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3088
    ^ self signExtendedFromMaskBit:(1 bitShift:bitNr-1)
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3089
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3090
    "
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3091
     2r111000111 signExtendedFromBit:3 -> 2r11111....111 -> -1 
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3092
     2r111000110 signExtendedFromBit:3 -> 2r11111....110 -> -2 
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3093
     2r111000101 signExtendedFromBit:3 -> 2r11111....101 -> -3   
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3094
     2r111000100 signExtendedFromBit:3 -> 2r11111....100 -> -4 
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3095
     2r111000000 signExtendedFromBit:3 -> 2r00000....000 -> 0   
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3096
     2r111000011 signExtendedFromBit:3 -> 2r00000....011 -> 3  
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3097
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3098
     16r800008 signExtendedFromBit:4 -> -8 
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3099
     16r7FFF07 signExtendedFromBit:4 -> 7 
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3100
     16r7FFF0F signExtendedFromBit:4 -> -1
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3101
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3102
     16rFFFFFF signExtendedFromBit:8 -> -1
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3103
     16rFFFF7F signExtendedFromBit:8 -> 127
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3104
     16rFFFF80 signExtendedFromBit:8 -> -128
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3105
    "
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3106
22073
d4ac55497643 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22072
diff changeset
  3107
    "Modified (comment): / 21-07-2017 / 15:13:55 / cg"
22070
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3108
!
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3109
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3110
signExtendedFromMaskBit:highBitMask
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3111
    "return an integer from sign-extending the bit defined by highMaskBit,
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3112
     which MUST be a single bit (otherwise, you'll get garbage).
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3113
     i.e. interprets the lowest n bits as a signed integer,
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3114
     ignoring higher bits.
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3115
     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
  3116
     signed values"
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3117
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3118
    |masked|
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  3119
22070
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3120
    masked := self bitAnd:(highBitMask-1).
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3121
    (self bitTest:highBitMask) ifTrue:[
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3122
        ^ masked - highBitMask
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  3123
    ].
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3124
    ^ masked
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3125
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3126
    "
22070
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3127
     2r111000111 signExtendedFromMaskBit:2r100 -> 2r11111....111 -> -1 
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3128
     2r111000110 signExtendedFromMaskBit:2r100 -> 2r11111....110 -> -2 
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3129
     2r111000101 signExtendedFromMaskBit:2r100 -> 2r11111....101 -> -3   
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3130
     2r111000100 signExtendedFromMaskBit:2r100 -> 2r11111....100 -> -4 
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3131
     2r111000000 signExtendedFromMaskBit:2r100 -> 2r00000....000 -> 0   
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3132
     2r111000011 signExtendedFromMaskBit:2r100 -> 2r00000....011 -> 3  
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3133
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3134
     16r800008 signExtendedFromMaskBit:2r1000 -> -8 
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3135
     16r7FFF07 signExtendedFromMaskBit:2r1000 -> 7 
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3136
     16r7FFF0F signExtendedFromMaskBit:2r1000 -> -1
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3137
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3138
     16rFFFFFF signExtendedFromMaskBit:2r10000000 -> -1
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3139
     16rFFFF7F signExtendedFromMaskBit:2r10000000 -> 127
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3140
     16rFFFF80 signExtendedFromMaskBit:2r10000000 -> -128
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3141
    "
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3142
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3143
    "Created: / 21-07-2017 / 14:52:12 / cg"
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3144
!
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3145
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3146
signExtendedLongLongValue
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3147
    "return an integer from sign-extending the 64'th bit.
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3148
     i.e. interprets the lowest 64 bits as a signed integer,
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3149
     ignoring higher bits.
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3150
     This may be useful for communication interfaces"
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3151
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3152
    (self bitTest:16r8000000000000000) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3153
        ^ (self bitAnd:16rFFFFFFFFFFFFFFFF)-16r10000000000000000
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  3154
    ].
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3155
    ^ (self bitAnd:16r7FFFFFFFFFFFFFFF)
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3156
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3157
    "
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3158
     16r1238000000000000000 signExtendedLongLongValue
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3159
     16r1237FFFFFFFFFFFFFFF signExtendedLongLongValue
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3160
     16r123FFFFFFFFFFFFFFFF signExtendedLongLongValue
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3161
    "
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3162
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3163
    "Modified (comment): / 26-02-2016 / 19:38:55 / cg"
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3164
!
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3165
15084
910b4913067b class: Integer
Claus Gittinger <cg@exept.de>
parents: 14967
diff changeset
  3166
signExtendedLongValue
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3167
    "return an integer from sign-extending the 32'th bit.
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3168
     i.e. interprets the lowest 32 bits as a signed integer,
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3169
     ignoring higher bits.
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3170
     This may be useful for communication interfaces"
15084
910b4913067b class: Integer
Claus Gittinger <cg@exept.de>
parents: 14967
diff changeset
  3171
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3172
    (self bitTest:16r80000000) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3173
        ^ (self bitAnd:16rFFFFFFFF) - 16r100000000
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  3174
    ].
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3175
    ^ (self bitAnd:16r7FFFFFFF)
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3176
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3177
    "
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3178
     16r80000000 signExtendedLongValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3179
     16r7FFFFFFF signExtendedLongValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3180
     16rFFFFFFFF signExtendedLongValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3181
    "
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3182
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3183
    "Modified (comment): / 26-02-2016 / 19:39:09 / cg"
15084
910b4913067b class: Integer
Claus Gittinger <cg@exept.de>
parents: 14967
diff changeset
  3184
!
910b4913067b class: Integer
Claus Gittinger <cg@exept.de>
parents: 14967
diff changeset
  3185
1337
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  3186
signExtendedShortValue
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3187
    "return an integer from sign-extending the 16'th bit.
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3188
     i.e. interprets the lowest 16 bits as a signed integer,
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3189
     ignoring higher bits.
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3190
     This may be useful for communication interfaces"
1337
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  3191
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  3192
    ^ (self bitAnd:16rFFFF) signExtendedShortValue
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  3193
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3194
    "
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3195
     16r8000 signExtendedShortValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3196
     16r7FFF signExtendedShortValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3197
     16rFFFF signExtendedShortValue
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3198
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3199
     16r1238000 signExtendedShortValue
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3200
     16r1237FFF signExtendedShortValue
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3201
     16r123FFFF signExtendedShortValue
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3202
    "
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3203
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3204
    "Modified: / 07-05-1996 / 09:31:57 / cg"
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3205
    "Modified (comment): / 26-02-2016 / 19:39:37 / cg"
24244
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3206
!
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3207
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3208
zigZagDecodedValue
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3209
    "zigzag encoding maps values with small absolute values
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3210
     into relatively small unsigned integer numbers in the same range.
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3211
     i.e. [minInt .. maxInt] is mapped into [0 .. maxUINT],
24247
dc1e4c314065 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24244
diff changeset
  3212
     where small magnitudes generate small encodings.
dc1e4c314065 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24244
diff changeset
  3213
     Zigzag is used eg. by google's protocol buffer encoding"
24244
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3214
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3215
    |t|
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3216
    
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3217
    t := self bitShift:-1.
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3218
    (self odd) ifTrue:[^ t negated - 1].
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3219
    ^ t 
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3220
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3221
    "
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3222
     0 zigZagEncoded64BitValue zigZagDecodedValue -> 0
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3223
     -1 zigZagEncoded64BitValue zigZagDecodedValue -> -1
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3224
     1 zigZagEncoded64BitValue zigZagDecodedValue -> 1
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3225
     -2 zigZagEncoded64BitValue zigZagDecodedValue -> -2
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3226
     2 zigZagEncoded64BitValue zigZagDecodedValue -> 2
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3227
     -2147483647 zigZagEncoded64BitValue zigZagDecodedValue -> -2147483647
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3228
     2147483647 zigZagEncoded64BitValue zigZagDecodedValue -> 2147483647
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3229
     -2147483648 zigZagEncoded64BitValue zigZagDecodedValue -> -2147483648
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3230
     2147483648 zigZagEncoded64BitValue zigZagDecodedValue -> 2147483648
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3231
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3232
     -4611686018427387903 zigZagEncoded64BitValue zigZagDecodedValue -> -4611686018427387903
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3233
     4611686018427387903 zigZagEncoded64BitValue zigZagDecodedValue -> 4611686018427387903
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3234
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3235
     -4611686018427387904 zigZagEncoded64BitValue zigZagDecodedValue -> -4611686018427387904
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3236
     4611686018427387904 zigZagEncoded64BitValue zigZagDecodedValue -> 4611686018427387904 
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3237
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3238
     -4611686018427387905 zigZagEncoded64BitValue zigZagDecodedValue -> -4611686018427387905
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3239
     4611686018427387905 zigZagEncoded64BitValue zigZagDecodedValue -> 4611686018427387905
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3240
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3241
     -9223372036854775807 zigZagEncoded64BitValue zigZagDecodedValue -> -9223372036854775807
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3242
     9223372036854775807 zigZagEncoded64BitValue zigZagDecodedValue -> 9223372036854775807
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3243
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3244
     -9223372036854775808 zigZagEncoded64BitValue zigZagDecodedValue -> -9223372036854775808
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3245
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3246
     -- out of range
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3247
     9223372036854775808 zigZagEncoded64BitValue zigZagDecodedValue
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3248
    "
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3249
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3250
    "Created: / 04-06-2019 / 00:48:47 / Claus Gittinger"
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3251
!
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3252
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3253
zigZagEncoded32BitValue
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3254
    "zigzag encoding maps values with small absolute values
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3255
     into relatively small unsigned integer numbers in the same range.
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3256
     i.e. [minInt .. maxInt] is mapped into [0 .. maxUINT],
24247
dc1e4c314065 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24244
diff changeset
  3257
     where small magnitudes generate small encodings.
dc1e4c314065 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24244
diff changeset
  3258
     Zigzag is used eg. by google's protocol buffer encoding"
24244
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3259
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3260
    |t|
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3261
    
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3262
    t := self bitShift:1.
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3263
    self negative ifTrue:[t := t negated - 1].
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3264
    ^ t bitAnd:16rFFFFFFFF
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3265
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3266
    "
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3267
     0 zigZagEncoded32BitValue -> 0
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3268
     -1 zigZagEncoded32BitValue -> 1
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3269
     1 zigZagEncoded32BitValue -> 2
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3270
     -2 zigZagEncoded32BitValue -> 3
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3271
     2 zigZagEncoded32BitValue -> 4
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3272
     -2147483647 zigZagEncoded32BitValue -> 4294967293
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3273
     16r7FFFFFFF zigZagEncoded32BitValue -> 4294967294
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3274
     16r-80000000 zigZagEncoded32BitValue -> 4294967295
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3275
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3276
     -- out of range:
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3277
     2147483648 zigZagEncoded32BitValue -> 4294967296
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3278
    "
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3279
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3280
    "Created: / 03-06-2019 / 17:37:53 / Claus Gittinger"
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3281
    "Modified: / 03-06-2019 / 19:13:55 / Claus Gittinger"
24247
dc1e4c314065 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24244
diff changeset
  3282
    "Modified (comment): / 04-06-2019 / 01:11:25 / Claus Gittinger"
24244
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3283
!
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3284
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3285
zigZagEncoded64BitValue
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3286
    "zigzag encoding maps values with small absolute values
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3287
     into relatively small unsigned integer numbers in the same range.
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3288
     i.e. [minInt .. maxInt] is mapped into [0 .. maxUINT],
24247
dc1e4c314065 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24244
diff changeset
  3289
     where small magnitudes generate small encodings.
dc1e4c314065 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24244
diff changeset
  3290
     Zigzag is used eg. by google's protocol buffer encoding"
24244
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3291
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3292
    |t|
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3293
    
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3294
    t := self bitShift:1.
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3295
    self negative ifTrue:[t := t negated - 1].
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3296
    ^ t bitAnd:16rFFFFFFFFFFFFFFFF
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3297
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3298
    "
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3299
     0 zigZagEncoded64BitValue -> 0
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3300
     -1 zigZagEncoded64BitValue -> 1
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3301
     1 zigZagEncoded64BitValue -> 2
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3302
     -2 zigZagEncoded64BitValue -> 3
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3303
     2 zigZagEncoded64BitValue -> 4
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3304
     -2147483647 zigZagEncoded64BitValue -> 4294967293
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3305
     2147483647 zigZagEncoded64BitValue -> 4294967294
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3306
     -2147483648 zigZagEncoded64BitValue -> 4294967295
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3307
     2147483648 zigZagEncoded64BitValue -> 4294967296
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3308
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3309
     -16r3FFFFFFFFFFFFFFF zigZagEncoded64BitValue 9223372036854775805
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3310
     16r3FFFFFFFFFFFFFFF zigZagEncoded64BitValue 9223372036854775806
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3311
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3312
     -16r4000000000000000 zigZagEncoded64BitValue 9223372036854775807
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3313
     16r4000000000000000 zigZagEncoded64BitValue 9223372036854775808 
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3314
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3315
     -16r4000000000000001 zigZagEncoded64BitValue 9223372036854775809
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3316
     16r4000000000000001 zigZagEncoded64BitValue 9223372036854775810
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3317
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3318
     -16r7FFFFFFFFFFFFFFF zigZagEncoded64BitValue 18446744073709551613
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3319
     16r7FFFFFFFFFFFFFFF zigZagEncoded64BitValue 18446744073709551614
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3320
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3321
     -16r8000000000000000 zigZagEncoded64BitValue 18446744073709551615
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3322
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3323
     -- out of range
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3324
     16r8000000000000000 zigZagEncoded64BitValue 
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3325
    "
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3326
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3327
    "Created: / 03-06-2019 / 17:42:02 / Claus Gittinger"
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  3328
    "Modified: / 03-06-2019 / 19:12:37 / Claus Gittinger"
24247
dc1e4c314065 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24244
diff changeset
  3329
    "Modified (comment): / 04-06-2019 / 01:11:32 / Claus Gittinger"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3330
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3331
1976
f6e7094cd3e4 Integer>>hash returns a value clamped to the SmallInteger range
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
  3332
!Integer methodsFor:'comparing'!
f6e7094cd3e4 Integer>>hash returns a value clamped to the SmallInteger range
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
  3333
f6e7094cd3e4 Integer>>hash returns a value clamped to the SmallInteger range
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
  3334
hash
f6e7094cd3e4 Integer>>hash returns a value clamped to the SmallInteger range
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
  3335
    "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
  3336
19553
a1e1e8901461 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 19455
diff changeset
  3337
    ^ 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
  3338
3298
bf837fee7a15 Do not return negative hash values.
Stefan Vogel <sv@exept.de>
parents: 3188
diff changeset
  3339
    "
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3340
        -20000000000000 hash
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3341
         20000000000000 hash
3298
bf837fee7a15 Do not return negative hash values.
Stefan Vogel <sv@exept.de>
parents: 3188
diff changeset
  3342
    "
1976
f6e7094cd3e4 Integer>>hash returns a value clamped to the SmallInteger range
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
  3343
3298
bf837fee7a15 Do not return negative hash values.
Stefan Vogel <sv@exept.de>
parents: 3188
diff changeset
  3344
    "Created: / 14.11.1996 / 12:12:27 / cg"
bf837fee7a15 Do not return negative hash values.
Stefan Vogel <sv@exept.de>
parents: 3188
diff changeset
  3345
    "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
  3346
! !
f6e7094cd3e4 Integer>>hash returns a value clamped to the SmallInteger range
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
  3347
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  3348
12978
6899c32d29a9 added: #addDependent:
Claus Gittinger <cg@exept.de>
parents: 12976
diff changeset
  3349
!Integer methodsFor:'dependents access'!
6899c32d29a9 added: #addDependent:
Claus Gittinger <cg@exept.de>
parents: 12976
diff changeset
  3350
6899c32d29a9 added: #addDependent:
Claus Gittinger <cg@exept.de>
parents: 12976
diff changeset
  3351
addDependent:anObject
23556
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3352
    "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
  3353
     Silently ignore ..."
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3354
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3355
"/    Transcript show:'*** trying to make dependent on an integer: '.
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3356
"/    thisContext sender printOn:Transcript. Transcript cr.
12978
6899c32d29a9 added: #addDependent:
Claus Gittinger <cg@exept.de>
parents: 12976
diff changeset
  3357
6899c32d29a9 added: #addDependent:
Claus Gittinger <cg@exept.de>
parents: 12976
diff changeset
  3358
    "Created: / 28-07-2010 / 20:29:00 / cg"
23556
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3359
    "Modified: / 03-12-2018 / 17:48:53 / Stefan Vogel"
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3360
!
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3361
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3362
onChangeSend:selector to:someOne
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3363
    "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
  3364
     Silently ignore ..."
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3365
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3366
"/    Transcript show:'*** trying to make dependent on an integer: '.
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3367
"/    thisContext sender printOn:Transcript. Transcript cr.
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3368
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3369
    "Created: / 30-11-2018 / 18:02:50 / Stefan Vogel"
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3370
    "Modified (comment): / 03-12-2018 / 17:49:05 / Stefan Vogel"
12978
6899c32d29a9 added: #addDependent:
Claus Gittinger <cg@exept.de>
parents: 12976
diff changeset
  3371
! !
6899c32d29a9 added: #addDependent:
Claus Gittinger <cg@exept.de>
parents: 12976
diff changeset
  3372
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3373
!Integer methodsFor:'double dispatching'!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3374
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3375
differenceFromFraction:aFraction
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3376
    "sent when a fraction does not know how to subtract the receiver, an integer"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3377
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3378
    |d|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3379
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3380
    d := aFraction denominator.
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3381
    ^ aFraction class
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3382
        numerator:(aFraction numerator - (self * d))
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3383
        denominator:d
2793
e40dedf51177 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2745
diff changeset
  3384
e40dedf51177 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2745
diff changeset
  3385
    "Modified: 28.7.1997 / 19:08:30 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3386
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3387
11517
e949ec17d9fc double dispatch for time-difference
sr
parents: 11510
diff changeset
  3388
differenceFromTimestamp:aTimestamp
e949ec17d9fc double dispatch for time-difference
sr
parents: 11510
diff changeset
  3389
    "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
  3390
     before aTimestamp"
e949ec17d9fc double dispatch for time-difference
sr
parents: 11510
diff changeset
  3391
e949ec17d9fc double dispatch for time-difference
sr
parents: 11510
diff changeset
  3392
    ^ aTimestamp subtractSeconds:self.
e949ec17d9fc double dispatch for time-difference
sr
parents: 11510
diff changeset
  3393
e949ec17d9fc double dispatch for time-difference
sr
parents: 11510
diff changeset
  3394
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3395
     Timestamp now subtractSeconds:100
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3396
     100 differenceFromTimestamp:Timestamp now
11517
e949ec17d9fc double dispatch for time-difference
sr
parents: 11510
diff changeset
  3397
    "
e949ec17d9fc double dispatch for time-difference
sr
parents: 11510
diff changeset
  3398
!
e949ec17d9fc double dispatch for time-difference
sr
parents: 11510
diff changeset
  3399
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3400
equalFromFraction:aFraction
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3401
    "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
  3402
     if resulting from an arithmetic operation.
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3403
     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
  3404
     allows comparing unnormalized fractions as might appear within the fraction class"
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3405
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3406
    |denominator numerator|
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3407
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3408
    denominator := aFraction denominator.
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3409
    numerator := aFraction numerator.
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3410
    (denominator == 1) ifFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3411
        ^ numerator = (self * denominator)
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3412
    ].
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3413
    ^ numerator = self
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3414
!
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3415
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3416
productFromFraction:aFraction
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3417
    "sent when a fraction does not know how to multiply the receiver, an integer"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3418
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3419
    ^ aFraction class
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3420
        numerator:(self * aFraction numerator)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3421
        denominator:aFraction denominator
2793
e40dedf51177 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2745
diff changeset
  3422
e40dedf51177 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2745
diff changeset
  3423
    "Modified: 28.7.1997 / 19:08:27 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3424
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3425
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3426
quotientFromFraction:aFraction
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  3427
    "Return the quotient of the argument, aFraction and the receiver.
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  3428
     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
  3429
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3430
    ^ aFraction class
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3431
        numerator:aFraction numerator
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3432
        denominator:(self * aFraction denominator)
2793
e40dedf51177 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2745
diff changeset
  3433
e40dedf51177 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2745
diff changeset
  3434
    "Modified: 28.7.1997 / 19:08:23 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3435
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3436
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3437
sumFromFraction:aFraction
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3438
    "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
  3439
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3440
    |d|
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3441
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3442
    d := aFraction denominator.
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3443
    ^ aFraction class
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3444
        numerator:(aFraction numerator + (self * d))
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3445
        denominator:d
2793
e40dedf51177 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2745
diff changeset
  3446
e40dedf51177 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2745
diff changeset
  3447
    "Modified: 28.7.1997 / 19:08:11 / cg"
10681
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3448
!
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3449
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3450
sumFromTimestamp:aTimestamp
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3451
    "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
  3452
     after aTimestamp"
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3453
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3454
    ^ aTimestamp addSeconds:self.
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3455
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3456
    "
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3457
     Timestamp now addSeconds:100
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3458
     100 sumFromTimestamp:Timestamp now
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3459
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3460
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3461
2428
d54efc515824 better gcd for large integers
Claus Gittinger <cg@exept.de>
parents: 2408
diff changeset
  3462
!Integer methodsFor:'helpers'!
d54efc515824 better gcd for large integers
Claus Gittinger <cg@exept.de>
parents: 2408
diff changeset
  3463
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3464
gcd_helper:anInteger
2428
d54efc515824 better gcd for large integers
Claus Gittinger <cg@exept.de>
parents: 2408
diff changeset
  3465
    "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
  3466
     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
  3467
     larger than the arg."
d54efc515824 better gcd for large integers
Claus Gittinger <cg@exept.de>
parents: 2408
diff changeset
  3468
19251
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3469
    | a b aLowBit bLowBit shift t |
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3470
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3471
    a := self.
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3472
    b := anInteger.
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3473
19251
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3474
    aLowBit := a lowBit - 1.
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3475
    bLowBit := b lowBit - 1.
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3476
    shift := aLowBit min:bLowBit.
22213
8b482a0c44a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22166
diff changeset
  3477
    b := b rightShift:bLowBit.
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3478
    [a = 0] whileFalse:[
22213
8b482a0c44a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22166
diff changeset
  3479
        a := a rightShift:aLowBit.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3480
        a < b ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3481
            t := a. a := b. b := t
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3482
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3483
        a := a - b.
19251
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3484
        aLowBit := a lowBit - 1.
2428
d54efc515824 better gcd for large integers
Claus Gittinger <cg@exept.de>
parents: 2408
diff changeset
  3485
    ].
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3486
    ^ b bitShift:shift
2428
d54efc515824 better gcd for large integers
Claus Gittinger <cg@exept.de>
parents: 2408
diff changeset
  3487
22213
8b482a0c44a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22166
diff changeset
  3488
    "Created: / 01-03-1997 / 16:38:17 / cg"
8b482a0c44a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22166
diff changeset
  3489
    "Modified: / 25-08-2017 / 12:33:09 / cg"
2428
d54efc515824 better gcd for large integers
Claus Gittinger <cg@exept.de>
parents: 2408
diff changeset
  3490
! !
d54efc515824 better gcd for large integers
Claus Gittinger <cg@exept.de>
parents: 2408
diff changeset
  3491
10027
36281068b212 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9401
diff changeset
  3492
12565
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3493
!Integer methodsFor:'iteration'!
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3494
23594
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3495
timesCollect:aBlock
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3496
    "syntactic sugar; same as (1 to:self) collect:aBlock"
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3497
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3498
    ^ (1 to:self) collect:aBlock
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3499
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3500
    "
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3501
     10 timesCollect:[:i | i squared]
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3502
    "
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3503
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3504
    "Created: / 09-01-2019 / 17:35:14 / Claus Gittinger"
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3505
!
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3506
12565
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3507
to:stop collect:aBlock
16347
ac28cfa26ec2 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16293
diff changeset
  3508
    "syntactic sugar; same as (self to:stop) collect:aBlock"
12565
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3509
23594
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3510
    ^ (self to:stop) collect:aBlock as:Array
12565
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3511
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3512
    "
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3513
     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
  3514
     10 to:20 collect:[:i | i squared]
12565
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3515
     (10 to:20) collect:[:i | i squared]
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3516
    "
23594
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3517
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3518
    "Modified (format): / 09-01-2019 / 17:51:04 / Claus Gittinger"
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3519
!
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3520
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3521
to:stop collect:aBlock as:collectionClass
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3522
    "syntactic sugar; same as (self to:stop) collect:aBlock"
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3523
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3524
    ^ (self to:stop) collect:aBlock as:collectionClass
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3525
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3526
    "
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3527
     1 to:10 collect:[:i | i squared] as:Set
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3528
    "
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3529
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3530
    "Created: / 09-01-2019 / 17:51:17 / Claus Gittinger"
12565
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3531
! !
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3532
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3533
!Integer methodsFor:'misc math'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3534
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3535
acker:n
1560
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3536
    "return the value of acker(self, n).
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  3537
     ;-) Do not try with receivers > 3"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3538
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3539
    (self == 0) ifTrue:[^ n + 1].
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3540
    (n == 0) ifTrue:[^ (self - 1) acker: 1].
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3541
    ^ (self - 1) acker:(self acker:(n - 1))
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3542
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3543
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3544
     3 acker:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3545
     3 acker:7
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3546
    "
1560
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3547
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3548
    "Modified: 18.7.1996 / 13:08:16 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3549
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3550
11491
4920830c3d9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11486
diff changeset
  3551
binco:kIn
13023
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  3552
    "an alternative name for the binomial coefficient for squeak compatibility"
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  3553
11491
4920830c3d9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11486
diff changeset
  3554
    ^ self binomialCoefficient:kIn
13023
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  3555
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  3556
    "Modified: / 17-08-2010 / 17:29:07 / cg"
11491
4920830c3d9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11486
diff changeset
  3557
!
4920830c3d9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11486
diff changeset
  3558
19040
80a45e8ef510 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19015
diff changeset
  3559
binomialCoefficient:k
80a45e8ef510 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19015
diff changeset
  3560
    "The binomial coefficient (n over k)
11486
6371ea09c6f0 comment
Claus Gittinger <cg@exept.de>
parents: 11485
diff changeset
  3561
11476
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3562
      / n \     with self being n, and 0 <= k <= n.
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3563
      \ k /
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3564
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3565
     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
  3566
     also known as a combination or combinatorial number.
11486
6371ea09c6f0 comment
Claus Gittinger <cg@exept.de>
parents: 11485
diff changeset
  3567
     Sometimes also called C(n,k) (for choose k from n)
6371ea09c6f0 comment
Claus Gittinger <cg@exept.de>
parents: 11485
diff changeset
  3568
6371ea09c6f0 comment
Claus Gittinger <cg@exept.de>
parents: 11485
diff changeset
  3569
     binCo is defined as:
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3570
        n!!
11476
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3571
     ----------
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3572
     k!! (n-k)!!
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3573
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3574
     but there is a faster, recursive formula:
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3575
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3576
      / n \  = / n - 1 \  + / n - 1 \
11476
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3577
      \ k /    \ k - 1 /    \   k   /
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3578
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3579
     with:
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3580
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3581
      / n \  = / n \  =  1
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3582
      \ 0 /    \ n /
11476
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3583
    "
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3584
19040
80a45e8ef510 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19015
diff changeset
  3585
    |kRun acc|
80a45e8ef510 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19015
diff changeset
  3586
80a45e8ef510 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19015
diff changeset
  3587
    k > self ifTrue:[^ 0].
80a45e8ef510 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19015
diff changeset
  3588
80a45e8ef510 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19015
diff changeset
  3589
    kRun := k.
80a45e8ef510 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19015
diff changeset
  3590
    kRun > (self / 2) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3591
        "/ symmetry
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3592
        kRun := self - kRun.
11476
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3593
    ].
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3594
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3595
    acc := 1.
19040
80a45e8ef510 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19015
diff changeset
  3596
    1 to:kRun do:[:i |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3597
        acc := acc * (self - kRun + i) / i.
11476
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3598
    ].
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3599
    ^ acc
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3600
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3601
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3602
     (7 binomialCoefficient:3)
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3603
     (10 binomialCoefficient:5)
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3604
     (100 binomialCoefficient:5)
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3605
     (1000 binomialCoefficient:5)
11486
6371ea09c6f0 comment
Claus Gittinger <cg@exept.de>
parents: 11485
diff changeset
  3606
11476
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3607
     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
  3608
     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
  3609
     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
  3610
     TestCase assert: (10000 binomialCoefficient:78) = (10000 factorial / (78 factorial * (10000-78) factorial))
11486
6371ea09c6f0 comment
Claus Gittinger <cg@exept.de>
parents: 11485
diff changeset
  3611
6371ea09c6f0 comment
Claus Gittinger <cg@exept.de>
parents: 11485
diff changeset
  3612
     Time millisecondsToRun:[ (10000 binomialCoefficient:78) ]                            -> 0
19252
7e0b6ccb0d81 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19251
diff changeset
  3613
     Time millisecondsToRun:[ (10000 factorial / (78 factorial * (10000-78) factorial)) ] -> 130
11486
6371ea09c6f0 comment
Claus Gittinger <cg@exept.de>
parents: 11485
diff changeset
  3614
11476
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3615
    "
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3616
!
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3617
1842
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3618
divMod:aNumber
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  3619
    "return an array filled with
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3620
        (self // aNumber) and (self \\ aNumber).
17037
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3621
     The returned remainder has the same sign as aNumber.
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3622
     The following is always true:
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3623
        (receiver // something) * something + (receiver \\ something) = receiver
17037
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3624
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3625
     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
  3626
     Especially surprising:
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3627
        -1 \\ 10 -> 9  (because -(1/10) is truncated towards next smaller integer, which is -1,
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3628
                        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
  3629
        -10 \\ 3 -> 2 (because -(10/3) is truncated towards next smaller integer, which is -4,
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3630
                        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
  3631
1842
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3632
     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
  3633
     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
  3634
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3635
    ^ Array
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3636
        with:(self // aNumber)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3637
        with:(self \\ aNumber)
1842
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3638
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3639
    "
17037
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3640
     10 divMod:3       -> #(3 1)   because 3*3 + 1 = 10
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3641
     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
  3642
     -10 divMod:3      -> #(-4 2) because -4*-3 + 2 = -10
17037
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3643
     -10 divMod:-3     -> #(3 -1)  because -3*3 + (-1) = -10
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3644
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3645
     1000000000000000000000 divMod:3   -> #(333333333333333333333 1)
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3646
     1000000000000000000000 divMod:-3  -> #(-333333333333333333334 -2)
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3647
     -1000000000000000000000 divMod:3  -> #(-333333333333333333334 2)
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3648
     -1000000000000000000000 divMod:-3 -> #(333333333333333333333 -1)
1842
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3649
     100 factorial divMod:103
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3650
    "
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3651
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3652
    "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
  3653
!
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3654
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3655
extendedEuclid:tb
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3656
    "return the solution of 'ax + by = gcd(a,b)'.
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3657
     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
  3658
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3659
    |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
  3660
5001
732ea614d36d Comments for #inverseMod: and #extendedEuclid:
Stefan Vogel <sv@exept.de>
parents: 4996
diff changeset
  3661
    self < tb ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3662
        a := self.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3663
        b := tb.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3664
        swap := false.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3665
    ] ifFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3666
        a := tb.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3667
        b := self.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3668
        swap := true.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3669
    ].
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3670
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3671
    shift := ((a lowBit) min:(b lowBit))-1.
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3672
    shift > 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3673
        tmp := shift negated.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3674
        a := a bitShift:tmp.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3675
        b := b bitShift:tmp.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3676
    ].
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3677
9057
13bd29f579c6 Bug 343: #clearBit: changed the receiver (shouldn't do that).
Stefan Vogel <sv@exept.de>
parents: 8937
diff changeset
  3678
    gcd  := a.
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3679
    gcd1 := b.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3680
    u := 1.
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3681
    u1 := 0.
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3682
    v := 0.
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3683
    v1 := 1.
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3684
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3685
    [
19251
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3686
        "/      The following condition is true:
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3687
        "/        (a * u1) + (b * v1) ~= gcd1 ifTrue:[self halt].
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3688
        t := gcd1 divMod:gcd.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3689
        gcd1 := gcd.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3690
        gcd := t at:2.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3691
        t := t at:1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3692
        tmp := v.
19251
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3693
        "/ v1 - (v * t) - v1 + (v * t) ~= 0 ifTrue:[self halt].
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3694
        v := v1 - (v * t).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3695
        v1 := tmp.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3696
        tmp := u.
19251
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3697
        "/ u1 - (u * t) - u1 + (u * t) ~= 0 ifTrue:[self halt].
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3698
        u := u1 - (u * t).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3699
        u1 := tmp.
9057
13bd29f579c6 Bug 343: #clearBit: changed the receiver (shouldn't do that).
Stefan Vogel <sv@exept.de>
parents: 8937
diff changeset
  3700
    gcd > 0] whileTrue.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3701
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3702
    shift > 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3703
        gcd1 := gcd1 bitShift:shift.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3704
    ].
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3705
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3706
    swap ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3707
        ^ Array with:v1 with:u1 with:gcd1.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3708
    ].
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3709
    ^ Array with:u1 with:v1 with:gcd1.
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3710
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3711
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3712
    "
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3713
     14 extendedEuclid:5
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3714
     14 extendedEuclid:2
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3715
     25 extendedEuclid:15
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3716
    "
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3717
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3718
    "Created: / 27.4.1999 / 15:19:22 / stefan"
5001
732ea614d36d Comments for #inverseMod: and #extendedEuclid:
Stefan Vogel <sv@exept.de>
parents: 4996
diff changeset
  3719
    "Modified: / 18.11.1999 / 16:19:24 / stefan"
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3720
!
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3721
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3722
factorial
19251
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3723
    "return fac(self) (i.e. 1*2*3...*self).
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3724
     This chooses a good algorithm, based on the receiver.
19337
548386843c2e #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19327
diff changeset
  3725
     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
  3726
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3727
    (self <= 20) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3728
        self < 0 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3729
            "/
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3730
            "/ requested factorial of a negative number
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3731
            "/
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3732
            ^ self class
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3733
                raise:#domainErrorSignal
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3734
                receiver:self
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3735
                selector:#factorial
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3736
                arguments:#()
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3737
                errorString:'factorial of negative number'
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3738
        ].
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3739
        ^ #(1 1 2 6 24 120 720 5040 40320 362880 3628800 39916800
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3740
          479001600 6227020800 87178291200 1307674368000 20922789888000 
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3741
          355687428096000 6402373705728000 121645100408832000
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3742
          2432902008176640000) at:self+1
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3743
    ].
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3744
    
19163
b45df3976f74 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19161
diff changeset
  3745
"/    self < 80000 ifTrue:[
b45df3976f74 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19161
diff changeset
  3746
"/        ^ self factorialHalf
b45df3976f74 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19161
diff changeset
  3747
"/    ].    
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3748
    ^ self factorialEvenOdd
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3749
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3750
    "
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3751
     10 factorial
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3752
     100 factorial
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3753
     1000 factorial
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3754
     10000 factorial
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3755
     100000 factorial
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3756
     200000 factorial
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3757
     300000 factorial
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3758
     1000000 factorial
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3759
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3760
     Time millisecondsToRun:[10000 factorial]40
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3761
     Time millisecondsToRun:[100000 factorial]3220
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3762
     Time millisecondsToRun:[1000000 factorial]357120
19164
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3763
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3764
    #(factorialIter factorialHalf factorialEvenOdd factorial)
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3765
    do:[:sel |
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3766
      #( (10000 10) 
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3767
         (20000 10)
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3768
         (50000 10)
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3769
         (70000 10)
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3770
         (100000 5)
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3771
         (200000 3)
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3772
         (300000 3)
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3773
         (400000 3)) pairsDo:[:n :repeat |
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3774
         |times|
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3775
        times := (1 to:repeat) collect:[:i |
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3776
                Time millisecondsToRun:[ n perform:sel]
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3777
               ].
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3778
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3779
        Transcript printf:'%12s %6d: %5d\n' with:sel with:n with:times min 
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3780
      ]
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3781
    ].
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3782
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3783
    factorialIter  10000:    30
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3784
    factorialIter  20000:   130
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3785
    factorialIter  50000:   790
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3786
    factorialIter  70000:  1710
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3787
    factorialIter 100000:  4880
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3788
    factorialIter 200000: 24980
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3789
    factorialIter 300000: 60060
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3790
    factorialIter 400000: 112310
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3791
    factorialHalf  10000:    20
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3792
    factorialHalf  20000:   100
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3793
    factorialHalf  50000:   690
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3794
    factorialHalf  70000:  1430
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3795
    factorialHalf 100000:  3220
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3796
    factorialHalf 200000: 28340
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3797
    factorialHalf 300000: 68740
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3798
    factorialHalf 400000: 127490
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3799
    factorialEvenOdd  10000:    10
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3800
    factorialEvenOdd  20000:    60
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3801
    factorialEvenOdd  50000:   390
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3802
    factorialEvenOdd  70000:   810
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3803
    factorialEvenOdd 100000:  2020
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3804
    factorialEvenOdd 200000:  9960
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3805
    factorialEvenOdd 300000: 24480
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3806
    factorialEvenOdd 400000: 45340
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3807
    factorial  10000:    20
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3808
    factorial  20000:   100
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3809
    factorial  50000:   680
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3810
    factorial  70000:  1400
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3811
    factorial 100000:  2040
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3812
    factorial 200000: 10130
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3813
    factorial 300000: 24670
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3814
    "
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3815
!
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3816
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3817
factorialEvenOdd
22166
a12fdc37c2cf #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22118
diff changeset
  3818
    "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
  3819
     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
  3820
     more but smaller multiplications makes a noticable difference"
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3821
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3822
    |pO i s2 t stop|
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3823
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3824
    (self <= 20) ifTrue:[
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3825
        ^ #(1 1 2 6 24 120 720 5040 40320 362880 3628800 39916800
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3826
          479001600 6227020800 87178291200 1307674368000 20922789888000 
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3827
          355687428096000 6402373705728000 121645100408832000
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3828
          2432902008176640000) at:self+1
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3829
    ].
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3830
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3831
    "/
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3832
    "/ 3 * 4 * 5 * 6 *7 * 8 .... * n
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3833
    "/ odd numbers:
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3834
    "/   3 5 7 9 ... n
19251
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3835
    "/ even numbers:
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3836
    "/   2 4 6 8 ... n
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3837
    "/   1 2 3 4 ... n//2
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3838
    "/ is (n/2)!! << n-1
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3839
                 
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3840
    pO := 1.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3841
    i := 3.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3842
 
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3843
    "/ odds only in pairs as
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3844
    "/      i * (i + 2)
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3845
    "/ to get to the next pair,
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3846
    "/      (i+4)(i+6)
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3847
    "/ we add: 8i + 24
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3848
    "/ (i+4)(i+6)-(i*(i+2))
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3849
    "/ i^2 + 10i + 24 - i^2 - 2i
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3850
    "/ 8i + 24
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3851
    stop := self-2.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3852
    t := i*(i+2).
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3853
    [i <= stop] whileTrue:[
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3854
        "/ odd*next odd
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3855
        pO := pO * t.
19163
b45df3976f74 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19161
diff changeset
  3856
        t := t + ((i*8) + 24).
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3857
        i := i + 4.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3858
    ].
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3859
    
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3860
    [i <= self] whileTrue:[
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3861
        "/ odd
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3862
        pO := pO * i.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3863
        i := i + 2.
1842
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3864
    ].
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3865
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3866
    "/ the factorial of the evens...
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3867
    s2 := (self//2).
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3868
    ^ (s2 factorialEvenOdd * pO) << s2.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3869
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3870
    "
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3871
     (6 to:2000) conform:[:i | i factorialIter = i factorialEvenOdd]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3872
     
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3873
     Time millisecondsToRun:[20000 factorialIter]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3874
     Time millisecondsToRun:[50000 factorialIter]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3875
     Time millisecondsToRun:[70000 factorialIter]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3876
     Time millisecondsToRun:[100000 factorialIter]
23646
efcbc4fd9032 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23594
diff changeset
  3877
     Time millisecondsToRun:[200000 factorialIter] 16190
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3878
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3879
     Time millisecondsToRun:[20000 factorialEvenOdd]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3880
     Time millisecondsToRun:[50000 factorialEvenOdd]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3881
     Time millisecondsToRun:[70000 factorialEvenOdd]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3882
     Time millisecondsToRun:[100000 factorialEvenOdd]
23646
efcbc4fd9032 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23594
diff changeset
  3883
     Time millisecondsToRun:[200000 factorialEvenOdd] 2910
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3884
    "
22166
a12fdc37c2cf #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22118
diff changeset
  3885
a12fdc37c2cf #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22118
diff changeset
  3886
    "Modified (comment): / 05-07-2017 / 16:41:41 / cg"
23646
efcbc4fd9032 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23594
diff changeset
  3887
    "Modified (comment): / 26-01-2019 / 08:48:12 / Claus Gittinger"
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3888
!
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3889
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3890
factorialHalf
19251
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3891
    "an algorithm, which does it with half the number of multiplications.
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3892
     this is faster than factorialPM to roughly 60000."
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3893
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3894
    |p i d|
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3895
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3896
    i := self.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3897
    self odd ifTrue:[
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3898
        i := i - 1.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3899
    ].
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  3900
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3901
    p := i.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3902
    d := i - 2.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3903
    [d >= 2] whileTrue:[
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3904
        i := i + d.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3905
        p := p * i.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3906
        d := d - 2.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3907
    ].
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3908
    self odd ifTrue:[
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3909
        p := p * self
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  3910
    ].
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3911
    ^ p
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3912
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3913
    "
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3914
     10 factorial 3628800
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3915
     10 factorialHalf 3628800
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  3916
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3917
     11 factorial 39916800
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3918
     11 factorialHalf 39916800
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3919
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3920
     12 factorial 479001600
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  3921
     12 factorialHalf 479001600
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3922
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3923
     10000 factorial = 10000 factorialHalf
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3924
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3925
     (6 to:2000) conform:[:i | i factorialIter = i factorialHalf]
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  3926
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3927
     Time microsecondsToRun:[30 factorialIter]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3928
     Time microsecondsToRun:[30 factorialHalf]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3929
     Time microsecondsToRun:[50 factorialIter]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3930
     Time microsecondsToRun:[50 factorialHalf]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3931
     Time microsecondsToRun:[75 factorialIter]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3932
     Time microsecondsToRun:[75 factorialHalf]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3933
     Time microsecondsToRun:[100 factorialIter]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3934
     Time microsecondsToRun:[100 factorialHalf]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3935
     Time microsecondsToRun:[500 factorialIter]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3936
     Time microsecondsToRun:[500 factorialHalf]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3937
     Time microsecondsToRun:[1000 factorialIter]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3938
     Time microsecondsToRun:[1000 factorialHalf]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3939
     Time microsecondsToRun:[2000 factorialIter]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3940
     Time microsecondsToRun:[2000 factorialHalf]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3941
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3942
     Time microsecondsToRun:[500 factorial]118 120 120
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3943
     Time microsecondsToRun:[1000 factorial]339 355 406
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3944
     Time microsecondsToRun:[5000 factorial]15703 13669 7715
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3945
     Time millisecondsToRun:[10000 factorial]40 30 50
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3946
     Time millisecondsToRun:[20000 factorial]140 150 150
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3947
     Time millisecondsToRun:[40000 factorial]600 570 560 570
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3948
     Time millisecondsToRun:[60000 factorial]1220 1240 1340
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3949
     Time millisecondsToRun:[80000 factorial]2600 2580 2540
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3950
     Time millisecondsToRun:[100000 factorial]4680 4810 5280
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3951
     Time millisecondsToRun:[120000 factorial]8100 8010 7920
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3952
     Time millisecondsToRun:[150000 factorial]13830 14040 13360
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  3953
     Time millisecondsToRun:[200000 factorial]23880 23740
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3954
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3955
     Time microsecondsToRun:[500 factorialHalf]150 142 192
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3956
     Time microsecondsToRun:[1000 factorialHalf]383 527 684
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3957
     Time microsecondsToRun:[5000 factorialHalf]6654 9221 4629
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3958
     Time millisecondsToRun:[10000 factorialHalf]20 30 20
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3959
     Time millisecondsToRun:[20000 factorialHalf]110 110 110
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3960
     Time millisecondsToRun:[40000 factorialHalf]490 490 490
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3961
     Time millisecondsToRun:[60000 factorialHalf]1100 1090 1070
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3962
     Time millisecondsToRun:[80000 factorialHalf]1920 1920 1880
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3963
     Time millisecondsToRun:[100000 factorialHalf]3030 3010 3000
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3964
     Time millisecondsToRun:[120000 factorialHalf]4830 4770 4760
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3965
     Time millisecondsToRun:[150000 factorialHalf]14510 13940 13900
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  3966
     Time millisecondsToRun:[200000 factorialHalf]28730 28160
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3967
    "
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3968
!
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3969
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3970
factorialIter
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3971
    "return fac(self) (i.e. 1*2*3...*self) using an iterative algorithm.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3972
     This is slightly faster than the recursive algorithm, and does not
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3973
     suffer from stack overflow problems (with big receivers)"
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3974
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3975
    |p i|
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3976
1560
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3977
    p := 2.
2745
bdf76e380d27 errorString to DomainError
Claus Gittinger <cg@exept.de>
parents: 2458
diff changeset
  3978
    i := 3.
bdf76e380d27 errorString to DomainError
Claus Gittinger <cg@exept.de>
parents: 2458
diff changeset
  3979
    [i <= self] whileTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3980
        p := p * i.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3981
        i := i + 1.
1560
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3982
    ].
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3983
    ^ p
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3984
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3985
    "
1560
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3986
     10 factorial
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3987
     1000 factorial
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3988
     10000 factorial
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3989
     10000 factorialR
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3990
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3991
     Time millisecondsToRun:[2000 factorial]
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3992
     Time millisecondsToRun:[2000 factorialR]
2745
bdf76e380d27 errorString to DomainError
Claus Gittinger <cg@exept.de>
parents: 2458
diff changeset
  3993
     -1 factorial
1560
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3994
    "
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3995
10027
36281068b212 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9401
diff changeset
  3996
    "Modified: / 04-10-2006 / 14:31:12 / cg"
1560
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3997
!
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3998
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3999
factorialR
3908
b893f399f517 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  4000
    "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
  4001
3908
b893f399f517 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  4002
     This is included to demonstration purposes - if you really need
19251
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  4003
     factorial numbers, use the tuned #factorial, which is
3908
b893f399f517 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  4004
     faster and does not suffer from stack overflow problems (with big receivers)."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4005
356
claus
parents: 345
diff changeset
  4006
    (self >= 2) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4007
        ^ self * (self - 1) factorialR
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4008
    ].
356
claus
parents: 345
diff changeset
  4009
    ^ 1
212
3edd10edefaf *** empty log message ***
claus
parents: 202
diff changeset
  4010
3edd10edefaf *** empty log message ***
claus
parents: 202
diff changeset
  4011
    "
1560
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  4012
     10 factorialR
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  4013
     1000 factorialR
4158
e04b61500e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  4014
     Time millisecondsToRun:[10000 factorial]
212
3edd10edefaf *** empty log message ***
claus
parents: 202
diff changeset
  4015
    "
1560
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  4016
3908
b893f399f517 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  4017
    "Created: / 18.7.1996 / 12:48:36 / cg"
4158
e04b61500e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  4018
    "Modified: / 8.5.1999 / 18:40:13 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4019
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4020
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4021
fib
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4022
    "compute the fibionacci number for the receiver.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4023
        fib(0) := 0
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4024
        fib(1) := 1
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4025
        fib(n) := fib(n-1) + fib(n-2)"
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4026
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4027
    self <= 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4028
        self == 0 ifTrue:[^ 0].
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4029
    ].
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4030
    ^ self fib_helper
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4031
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4032
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
  4033
     30 fib
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4034
     60 fib
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4035
     1000 fib
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4036
    "
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4037
!
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4038
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4039
fib_helper
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4040
    "compute the fibionacci number for the receiver.
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4041
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4042
        Fib(n) = Fib(n-1) + Fib(n-2)
13023
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  4043
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  4044
     Knuth:
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4045
        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
  4046
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  4047
     This is about 3 times faster than fib_iterative.
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4048
    "
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4049
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4050
    |fibUsingDict dict|
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4051
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4052
    dict := Dictionary new:100.
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4053
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4054
    fibUsingDict := [:x |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4055
        |n fib fibN fibNp1 fibNm1 fibXm1 fibXm2 fibXp1|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4056
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4057
        x <= 30 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4058
                "/ 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
  4059
            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
  4060
                     ) at:x
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4061
        ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4062
            fib := dict at:x ifAbsent:nil.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4063
            fib isNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4064
                fibXm1 := dict at:(x-1) ifAbsent:nil.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4065
                fibXm1 notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4066
                    fibXm2 := dict at:(x-2) ifAbsent:nil.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4067
                    fibXm2 notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4068
                        fib := fibXm1 + fibXm2.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4069
                    ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4070
                        fibXp1 := dict at:(x+1) ifAbsent:nil.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4071
                        fibXp1 notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4072
                            fib := fibXp1 - fibXm1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4073
                        ]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4074
                    ]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4075
                ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4076
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4077
                fib isNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4078
                    n := x // 2.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4079
                    x odd ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4080
                        "/ m is set to n+1; therefore:
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4081
                        "/ Fib(x) = Fib(n+n+1)      ; x odd; setting n = (x-1)/2
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4082
                        "/ using Knuth:
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4083
                        "/ 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
  4084
                        "/            = (Fib(n+1) ^ 2) + (Fib(n) ^ 2)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4085
                        fibN   := fibUsingDict value:n.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4086
                        fibNp1 := fibUsingDict value:(n+1).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4087
                        fib := fibN squared + fibNp1 squared
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4088
                    ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4089
                        "/ as
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4090
                        "/    Fib(n+1) = Fib(n) + Fib(n-1)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4091
                        "/ therefore:
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4092
                        "/    Fib(n) = Fib(n+1) - Fib(n-1)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4093
                        "/ 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
  4094
                        "/ This gives us:
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4095
                        "/    Fib(x) = Fib(x+1) - Fib(x-1)      ; x even; setting n = x/2
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4096
                        "/           = Fib(n+n+1) - Fib(n+n-1)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4097
                        "/           = Fib(n+n+1) - Fib((n-1)+(n-1)+1)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4098
                        "/           = ((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
  4099
                        "/           = (Fib(n+1)^2) + (Fib(n)^2) - (Fib(n)^2) - (Fib((n-1))^2)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4100
                        "/           = (Fib(n+1)^2) - (Fib((n-1))^2)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4101
                        fibNm1 := fibUsingDict value:(n-1).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4102
                        fibNp1 := fibUsingDict value:(n+1).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4103
                        fib := fibNp1 squared - fibNm1 squared
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4104
                    ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4105
                ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4106
                dict at:x put:fib.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4107
            ]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4108
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4109
        fib
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4110
    ].
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4111
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4112
    ^ fibUsingDict value:self
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4113
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4114
    "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
  4115
     (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
  4116
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4117
     Time millisecondsToRun:[50000 fib_iterative]  312    (DUO 1.7Ghz CPU)
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4118
     Time millisecondsToRun:[50000 fib_helper]     109
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4119
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
  4120
     Time millisecondsToRun:[100000 fib_iterative] 1248
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4121
     Time millisecondsToRun:[100000 fib_helper]    374
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4122
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
  4123
     Time millisecondsToRun:[200000 fib_iterative] 4758
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4124
     Time millisecondsToRun:[200000 fib_helper]    1544
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4125
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
  4126
     Time millisecondsToRun:[400000 fib_iterative] 18892
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4127
     Time millisecondsToRun:[400000 fib_helper]    6084
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4128
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4129
     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
  4130
     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
  4131
    "
13023
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  4132
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  4133
    "Modified: / 17-08-2010 / 17:29:34 / cg"
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4134
!
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4135
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4136
gcd:anInteger
2428
d54efc515824 better gcd for large integers
Claus Gittinger <cg@exept.de>
parents: 2408
diff changeset
  4137
    "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
  4138
     Euclids & Knuths algorithm."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4139
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4140
    |a b t|
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4141
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4142
    a := self abs.
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4143
    b := anInteger abs.
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4144
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4145
    a < b ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4146
        t := a.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4147
        a := b.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4148
        b := t.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4149
    ].
52
cf23b8901602 *** empty log message ***
claus
parents: 49
diff changeset
  4150
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4151
    b = 0 ifTrue: [^ a].
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4152
    a := a \\ b.
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4153
    a = 0 ifTrue:[^ b].
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4154
    ^ b gcd_helper:a
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  4155
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4156
    "
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4157
     3141589999999999 gcd:1000000000000000
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4158
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4159
     Time millisecondsToRun:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4160
        10000 timesRepeat:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4161
           123456789012345678901234567890 gcd: 9876543210987654321
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4162
        ]
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4163
     ]
3060
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4164
    "
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4165
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  4166
    "Modified: / 25.10.1997 / 16:08:45 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4167
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4168
21938
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4169
integerLog10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4170
    "return the floor of log10 of the receiver.
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4171
     This is the same as (self log:10) floor.
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4172
     Used to find out the number of digits needed
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4173
     to print a number/and for conversion to a LargeInteger."
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4174
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4175
    ^ self asFloat log10 floor
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4176
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4177
    "
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4178
      10 integerLog10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4179
      1000 integerLog10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4180
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4181
      10000000000000000.0 log:10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4182
      10000000000000000 integerLog10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4183
      100000000000000000 integerLog10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4184
      1000000000000000000 integerLog10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4185
      10000000000000000000 integerLog10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4186
      100000000000000000000 integerLog10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4187
      1000000000000000000000 integerLog10 -> 21
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4188
      1000000000000000000000000000000 integerLog10 -> 30
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4189
      10000000000000000000000000000000000000000 integerLog10 -> 40
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4190
      
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4191
      1 to:10000 by:10 do:[:i |
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4192
        self assert:(i factorial printString size == (i factorial integerLog10+1))
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4193
      ].
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4194
      21 factorial printString size
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4195
      21 factorial integerLog10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4196
      51 factorial printString size
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4197
      51 factorial integerLog10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4198
    "
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4199
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4200
    "Created: / 02-07-2017 / 01:20:49 / cg"
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4201
    "Modified: / 02-07-2017 / 10:16:40 / cg"
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4202
!
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4203
14097
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4204
integerLog2
14491
97b9228d2464 changed: #integerLog2
Claus Gittinger <cg@exept.de>
parents: 14448
diff changeset
  4205
    "return the floor of log2 of the receiver.
97b9228d2464 changed: #integerLog2
Claus Gittinger <cg@exept.de>
parents: 14448
diff changeset
  4206
     This is the same as (self log:2) floor."
14097
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4207
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4208
    self <= 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4209
        ^ self class
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4210
            raise:#domainErrorSignal
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4211
            receiver:self
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4212
            selector:#integerLog2
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4213
            arguments:#()
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4214
            errorString:'logarithm of negative integer'
14097
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4215
    ].
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4216
    ^ self highBit - 1.
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4217
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4218
    "
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4219
      2  log:2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4220
      2  integerLog2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4221
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4222
      3  log:2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4223
      3  integerLog2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4224
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4225
      4  log:2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4226
      4  integerLog2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4227
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4228
      64  integerLog2
14097
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4229
      100 integerLog2
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4230
      100 log:2
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4231
      999 integerLog2
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4232
      999 log:2
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4233
      120000 integerLog2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4234
      120000 log:2
14097
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4235
      -1 integerLog2
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4236
      50 factorial integerLog2
14767
157f37c1a7f9 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14680
diff changeset
  4237
      50 factorial log:2
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4238
      1000 factorial integerLog2
14767
157f37c1a7f9 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14680
diff changeset
  4239
      1000 factorial log:2       -- float error!!
14097
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4240
    "
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4241
!
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4242
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4243
integerReciprocal
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4244
    "return an integer representing 1/self * 2**n.
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4245
     Where an integer is one bit longer than self.
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4246
     This is a helper for modulu numbers"
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4247
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  4248
    |b "{Class: SmallInteger}" rem result digitBytes|
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4249
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4250
    b := self highBit.
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4251
    rem := 1 bitShift:b.
10488
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  4252
    result := LargeInteger basicNew numberOfDigits:(b // 8)+1.
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  4253
    digitBytes := result digitBytes.
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  4254
    b+1 to:1 by:-1 do:[:idx|
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4255
        rem >= self ifTrue:[
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  4256
            rem := rem - self.
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  4257
            digitBytes bitSetAt:idx.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4258
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4259
        rem := rem mul2.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4260
    ].
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4261
    ^ result compressed.
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4262
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4263
    "
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4264
     333 integerReciprocal                (2 raisedTo:18) // 333
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4265
     393 integerReciprocal
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
  4266
     8 integerReciprocal
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
  4267
     15 integerReciprocal
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4268
     15112233445566 integerReciprocal
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4269
     10239552311579 integerReciprocal
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4270
   "
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4271
13023
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  4272
    "Modified: / 03-05-1999 / 14:27:18 / stefan"
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  4273
    "Modified: / 17-08-2010 / 17:30:22 / cg"
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4274
!
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4275
12588
fa4fb7a41047 added: #integerSqrt
Claus Gittinger <cg@exept.de>
parents: 12586
diff changeset
  4276
integerSqrt
21931
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4277
    "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
  4278
     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
  4279
     (which actually fails for very large numbers)
12586
1b8a0ecda4f2 changed: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12585
diff changeset
  4280
     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
  4281
     (and also in cryptography). 
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4282
     Uses Newton's method"
12586
1b8a0ecda4f2 changed: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12585
diff changeset
  4283
1b8a0ecda4f2 changed: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12585
diff changeset
  4284
    |guess prevGuess guessSquared|
12581
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4285
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  4286
    self negative ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4287
        ^ self class
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4288
            raise:#imaginaryResultSignal
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4289
            receiver:self
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4290
            selector:#integerSqrt
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4291
            arguments:#()
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4292
            errorString:'bad (negative) receiver in sqrt'
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  4293
    ].
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4294
    self == 0 ifTrue:[^ 0].
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  4295
12582
7afa0bb19bbe comment/format in: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12581
diff changeset
  4296
    guess := (1 bitShift:(self highBit // 2)).
12581
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4297
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4298
    [
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4299
        prevGuess ~= guess
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4300
        and:[ ((guessSquared := guess squared) - self) abs >= guess ]
12581
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4301
    ] whileTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4302
        prevGuess := guess.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4303
        guess := (guess + (self / guess)) // 2.
12581
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4304
    ].
12586
1b8a0ecda4f2 changed: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12585
diff changeset
  4305
    guessSquared > self ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4306
        guess := guess - 1.
12581
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4307
    ].
12585
e8ce2be6049a changed: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12582
diff changeset
  4308
    "/ self assert:(guess squared <= self).
e8ce2be6049a changed: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12582
diff changeset
  4309
    "/ self assert:((guess + 1) squared > self).
12581
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4310
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4311
    ^ guess.
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4312
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4313
    "
22107
7cb478fcbdfa #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22073
diff changeset
  4314
     333 sqrt -> 18.2482875908947
7cb478fcbdfa #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22073
diff changeset
  4315
     324 sqrt -> 18.0
7cb478fcbdfa #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22073
diff changeset
  4316
     323 sqrt -> 17.9722007556114
7cb478fcbdfa #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22073
diff changeset
  4317
7cb478fcbdfa #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22073
diff changeset
  4318
     333 integerSqrt -> 18
7cb478fcbdfa #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22073
diff changeset
  4319
     325 integerSqrt -> 18
7cb478fcbdfa #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22073
diff changeset
  4320
     324 integerSqrt -> 18
7cb478fcbdfa #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22073
diff changeset
  4321
     323 integerSqrt -> 17
21931
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4322
     
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4323
     10239552004900 integerSqrt
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4324
     10239552004900 sqrt
12588
fa4fb7a41047 added: #integerSqrt
Claus Gittinger <cg@exept.de>
parents: 12586
diff changeset
  4325
     10239552311579 integerSqrt
21931
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4326
     10239552311579 sqrt
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4327
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4328
     5397346292805549782720214077673687804022210808238353958670041357153884304 integerSqrt squared
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4329
     5397346292805549782720214077673687804022210808238353958670041357153884304 sqrt squared
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4330
12588
fa4fb7a41047 added: #integerSqrt
Claus Gittinger <cg@exept.de>
parents: 12586
diff changeset
  4331
     5397346292805549782720214077673687806275517530364350655459511599582614290 integerSqrt
21931
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4332
     5397346292805549782720214077673687806275517530364350655459511599582614290 sqrt
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  4333
     1000 factorial integerSqrt
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4334
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  4335
     1000 factorial - 1000 factorial integerSqrt squared
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  4336
     1000 factorial - (1000 factorial integerSqrt + 1) squared
21931
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4337
     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
  4338
   "
21931
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4339
22107
7cb478fcbdfa #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22073
diff changeset
  4340
    "Modified (comment): / 25-07-2017 / 17:52:14 / cg"
12581
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4341
!
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4342
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4343
inverseMod:n
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4344
    "find the modular inverse for myself to n.
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4345
     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
  4346
     This is a helper for modulu numbers"
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4347
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4348
    |e ret|
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4349
5001
732ea614d36d Comments for #inverseMod: and #extendedEuclid:
Stefan Vogel <sv@exept.de>
parents: 4996
diff changeset
  4350
    "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
  4351
     (self * x) + (n * y) = self gcd:n"
732ea614d36d Comments for #inverseMod: and #extendedEuclid:
Stefan Vogel <sv@exept.de>
parents: 4996
diff changeset
  4352
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4353
    e := self extendedEuclid:n.
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4354
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4355
    (e at:3) == 1 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4356
        ret := e at:1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4357
        ret negative ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4358
            ^ ret + n
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4359
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4360
        ^ ret.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4361
    ].
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4362
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4363
    ^ 0
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4364
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4365
    "
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4366
     14 inverseMod:5      -> 4
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4367
     5 inverseMod:14      -> 3
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4368
     14 inverseMod:11     -> 4                (4 * 14) \\ 11
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4369
     11 inverseMod:14     -> 9                (9 * 11) \\ 14
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4370
     79 inverseMod:3220   -> 1019
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4371
     3220 inverseMod:79   -> 54               (54 * 3220) \\ 79
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4372
     1234567891 inverseMod:1111111111119
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4373
                          -> 148726663534     (148726663534*1234567891) \\ 1111111111119
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4374
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4375
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4376
     14 extendedEuclid:11
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4377
     5 extendedEuclid:14
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4378
     14 extendedEuclid:2
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4379
     3220 extendedEuclid:79
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4380
    "
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4381
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4382
    "Created: / 27.4.1999 / 15:19:22 / stefan"
5001
732ea614d36d Comments for #inverseMod: and #extendedEuclid:
Stefan Vogel <sv@exept.de>
parents: 4996
diff changeset
  4383
    "Modified: / 18.11.1999 / 16:21:37 / stefan"
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4384
!
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4385
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4386
lcm:anInteger
52
cf23b8901602 *** empty log message ***
claus
parents: 49
diff changeset
  4387
    "return the least common multiple (using gcd:)"
cf23b8901602 *** empty log message ***
claus
parents: 49
diff changeset
  4388
cf23b8901602 *** empty log message ***
claus
parents: 49
diff changeset
  4389
    ^ (self * anInteger) abs // (self gcd: anInteger)
cf23b8901602 *** empty log message ***
claus
parents: 49
diff changeset
  4390
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4391
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4392
     65 lcm:15
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4393
     3 lcm:15
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4394
    "
3188
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4395
!
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4396
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4397
primeFactors
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4398
    "return a collection of prime factors of the receiver.
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4399
     For prime numbers, an empty collection is returned.
13021
1cbf4cdfc288 comment/format
Claus Gittinger <cg@exept.de>
parents: 12978
diff changeset
  4400
     Can take a long time for big numbers"
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4401
11508
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4402
    ^ self primeFactorsUpTo:nil
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4403
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4404
    "
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4405
     2 to:10000 do:[:n |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4406
        self assert:((n isPrime and:[ n primeFactors isEmpty])
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4407
                    or:[ n isPrime not and:[n primeFactors product = n]])
11508
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4408
     ]
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4409
     3 to:10000 do:[:n |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4410
        self assert:(n factorial primeFactors product = n factorial)
11508
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4411
     ]
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4412
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4413
     13195 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4414
     12 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4415
     2 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4416
     3 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4417
     5 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4418
     14 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4419
     13423453625634765 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4420
     13423453625634765 isPrime
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4421
     13423453625634765 gcd:(3 * 5 * 19 * 29)
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4422
     13423453625634765 / 8265
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4423
     1624132320101 isPrime
11508
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4424
     1624132320101 gcd: 8265
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4425
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4426
     1000000 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4427
     100000000 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4428
     1000000000 primeFactors
11508
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4429
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4430
     Time millisecondsToRun:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4431
        1000 timesRepeat:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4432
            10000000000000000000000000000000000000 primeFactors
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4433
        ]
11508
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4434
     ]   421
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4435
    "
13021
1cbf4cdfc288 comment/format
Claus Gittinger <cg@exept.de>
parents: 12978
diff changeset
  4436
1cbf4cdfc288 comment/format
Claus Gittinger <cg@exept.de>
parents: 12978
diff changeset
  4437
    "Modified: / 17-08-2010 / 17:27:33 / cg"
11508
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4438
!
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4439
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4440
primeFactorsUpTo:limitArgOrNil
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4441
    "return a collection of prime factors of the receiver.
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4442
     For prime numbers, an empty collection is returned.
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4443
     Can take a long time for big numbers
13021
1cbf4cdfc288 comment/format
Claus Gittinger <cg@exept.de>
parents: 12978
diff changeset
  4444
     (win a nobel price, if you find something quick (*)
1cbf4cdfc288 comment/format
Claus Gittinger <cg@exept.de>
parents: 12978
diff changeset
  4445
1cbf4cdfc288 comment/format
Claus Gittinger <cg@exept.de>
parents: 12978
diff changeset
  4446
     (*):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
  4447
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  4448
    "See comment in initializePrimeCacheUpTo:limit"
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  4449
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  4450
    |rest n factors limit wellKnownPrimes lastPrime checkThisFactor nextTry|
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4451
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4452
    factors := Bag new.
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4453
    rest := self.
11508
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4454
    limit := (rest // 2).
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4455
    limitArgOrNil notNil ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4456
        limit := limit min:limitArgOrNil.
11508
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4457
    ].
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4458
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4459
    "/ try to get the number down fast:
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4460
    n := rest lowBit.
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4461
    n ~~ 1 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4462
        self == 2 ifTrue:[^ #() ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4463
        factors add:2 withOccurrences:(n-1).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4464
        rest := rest rightShift:(n-1).
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4465
    ].
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4466
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  4467
    checkThisFactor :=
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  4468
        [:prime |
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  4469
            (prime*prime) > rest ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4470
                (rest ~~ 1 and:[factors notEmpty]) ifTrue:[ factors add:rest ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4471
                ^ factors.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4472
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4473
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4474
            [rest \\ prime == 0] whileTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4475
                factors add:prime.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4476
                rest := rest // prime.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4477
                rest == 1 ifTrue:[^ factors].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4478
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4479
            lastPrime := prime.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4480
        ].
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4481
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  4482
    wellKnownPrimes := Integer primesUpTo5000.
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  4483
    limit <= (wellKnownPrimes last+1) ifTrue:[
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  4484
        wellKnownPrimes do:checkThisFactor.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4485
        ^ factors
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4486
    ].
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4487
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4488
    "/ 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
  4489
    "/ 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
  4490
    "/ which may slow things down quite a bit.
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4491
    "/ (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
  4492
    "/ a few millions).
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4493
11938
79dcaf7ae7ad changed #primeFactorsUpTo:
Claus Gittinger <cg@exept.de>
parents: 11936
diff changeset
  4494
    Integer primesUpTo:(limit min:(1000000 max:Integer primeCacheSize)) do:checkThisFactor.
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4495
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4496
    nextTry := lastPrime + 2.
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4497
    [ nextTry <= limit ] whileTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4498
        "/ now, we are beyond the list of pre-generated primes.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4499
        "/ change our strategy to: see if it divides an odd number;
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4500
        "/ if so, add the divisor's prime factors.
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  4501
        (nextTry*nextTry) > rest ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4502
            (rest ~~ 1 and:[factors notEmpty]) ifTrue:[ factors add:rest ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4503
            ^ factors.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4504
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4505
        [(rest \\ nextTry) == 0] whileTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4506
            "/ can only happen relatively late after the last prime,
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4507
            "/ because otherwise, the primeFactors of nextTry would already have
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4508
            "/ been found as divisors.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4509
            "/ first chance is: (lastPrime + 2) squared
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4510
            nextTry < lastPrime squared ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4511
                "/ nextTry is a prime !!
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4512
                factors add:nextTry
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4513
            ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4514
                factors addAll:(nextTry primeFactors).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4515
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4516
            rest := rest // nextTry.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4517
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4518
        nextTry := nextTry + 2.
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4519
    ].
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4520
    ^ factors
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4521
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4522
    "
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4523
     2 to:10000 do:[:n |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4524
        self assert:((n isPrime and:[ n primeFactors isEmpty])
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4525
                    or:[ n isPrime not and:[n primeFactors product = n]])
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4526
     ]
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4527
     3 to:10000 do:[:n |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4528
        self assert:(n factorial primeFactors product = n factorial)
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4529
     ]
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4530
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4531
     13195 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4532
     12 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4533
     2 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4534
     3 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4535
     5 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4536
     14 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4537
     13423453625634765 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4538
     13423453625634765 isPrime
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4539
     13423453625634765 gcd:(3 * 5 * 19 * 29)
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4540
     13423453625634765 / 8265
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4541
     1624132320101 isPrime
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4542
     1624132320101 gcd: 8265
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4543
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4544
     1000000 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4545
     100000000 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4546
     1000000000 primeFactors
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4547
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4548
     Time millisecondsToRun:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4549
        1000 timesRepeat:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4550
            10000000000000000000000000000000000000 primeFactors
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4551
        ]
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4552
     ]   421
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4553
    "
13021
1cbf4cdfc288 comment/format
Claus Gittinger <cg@exept.de>
parents: 12978
diff changeset
  4554
13022
43a439f72615 comment/format
Claus Gittinger <cg@exept.de>
parents: 13021
diff changeset
  4555
    "Modified: / 17-08-2010 / 17:28:05 / cg"
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4556
!
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4557
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4558
raisedTo:exp mod:mod
12280
b2bbbfd2444e added: #raisedTo:modulo:
Stefan Vogel <sv@exept.de>
parents: 12255
diff changeset
  4559
    "return the modulo (remainder) of
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4560
     the receiver raised to exp (an Integer) and mod (another Integer)"
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4561
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4562
    |result m t
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4563
     eI   "{Class: SmallInteger}"
5816
ce15ce5294b4 Cleanup unused method vars
Stefan Vogel <sv@exept.de>
parents: 5799
diff changeset
  4564
     bits "{Class: SmallInteger}"|
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4565
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4566
    "use the addition chaining algorithm"
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4567
8335
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4568
    exp == 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4569
        ^ 1
8335
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4570
    ].
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4571
    exp == 1 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4572
        mod isNumber ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4573
            ^ self \\ mod.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4574
        ]
8335
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4575
    ].
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4576
    exp negative ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4577
        ^ self class
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4578
            raise:#domainErrorSignal
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4579
            receiver:self
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4580
            selector:#raisedTo:mod:
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4581
            arguments:(Array with:exp with:mod)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4582
            errorString:'modulo arithmethic with negative exponent'
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4583
    ].
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4584
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4585
    m := mod asModuloNumber.
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4586
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4587
    result := 1.
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4588
    t := m modulusOf:self.
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4589
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4590
    (exp class == SmallInteger) ifTrue:[
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4591
        eI := exp.
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4592
        [eI ~~ 0] whileTrue:[
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4593
            (eI bitAnd:1) == 1 ifTrue:[
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4594
                result := m modulusOf:(result * t).
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4595
            ].
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4596
            eI := eI bitShift:-1.
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4597
            eI ~~ 0 ifTrue:[
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4598
                t := m modulusOf:(t * t).
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4599
            ].
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4600
        ].
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4601
        ^ result.
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4602
    ].
8335
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4603
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4604
    bits := exp highBit.
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4605
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4606
    1 to:bits-1 do:[:i|
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4607
        (exp bitAt:i) == 1 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4608
            result := m modulusOf:(result * t).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4609
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4610
        t := m modulusOf:(t * t).
8335
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4611
    ].
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4612
    result := m modulusOf:(result * t).
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4613
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4614
    ^ result
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4615
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4616
    "
22561
bdaee5e2bf96 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22469
diff changeset
  4617
     Time millisecondsToRun: [100000 timesRepeat: [12345678907 raisedTo: 3 modulo: 12345678917]]
bdaee5e2bf96 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22469
diff changeset
  4618
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4619
     2 raisedTo:2 mod:3
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4620
      20000000000000 raisedTo:200 mod:190  ->  30
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4621
     (20000000000000 raisedTo:200) \\ 190
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4622
8335
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4623
      Time millisecondsToRun:[10000 timesRepeat:[
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4624
                                200000000000000000000000 raisedTo:65537 mod:1900000000000000000000000
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4625
                              ]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4626
                             ]
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4627
8335
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4628
     Time millisecondsToRun:[1000 timesRepeat:[
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4629
                                (200000000000000000000000 raisedTo:65537) \\ 1900000000000000000000000
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4630
                             ]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4631
                            ]
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4632
    "
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4633
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4634
    "Created: / 27.4.1999 / 15:19:22 / stefan"
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4635
    "Modified: / 5.5.1999 / 11:18:20 / stefan"
6195
9e60c38d1d61 #raise:receiver:selector...
Claus Gittinger <cg@exept.de>
parents: 6055
diff changeset
  4636
    "Modified: / 16.11.2001 / 14:15:21 / cg"
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4637
!
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4638
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4639
raisedToCrtModP:p q:q ep:ep eq:eq u:u
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4640
    "Application of the Chinese Remainder Theorem (CRT).
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4641
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4642
     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
  4643
     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
  4644
     modulus, the Chinese Remainder Theorem to do the computation mod p and
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4645
     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
  4646
     precomputed values, but does not actually require the modulus n or the
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4647
     exponent e.
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4648
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4649
     expout = expin ^ e mod (p*q).
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4650
     We form this by evaluating
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4651
     p2 = (expin ^ e) mod p and
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4652
     q2 = (expin ^ e) mod q
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4653
     and then combining the two by the CRT.
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4654
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4655
     Two optimisations of this are possible.  First, we can reduce expin
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4656
     modulo p and q before starting.
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4657
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4658
     Second, since we know the factorisation of p and q (trivially derived
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4659
     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
  4660
     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
  4661
     to throw away multiples of phi(p) or phi(q) in e.
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4662
     Letting ep = e mod phi(p) and
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4663
              eq = e mod phi(q)
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4664
     then combining these two speedups, we only need to evaluate
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4665
     p2 = ((expin mod p) ^ ep) mod p and
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4666
     q2 = ((expin mod q) ^ eq) mod q.
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4667
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4668
     Now we need to apply the CRT.  Starting with
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4669
     expout = p2 (mod p) and
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4670
     expout = q2 (mod q)
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4671
     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
  4672
     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
  4673
     (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
  4674
     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
  4675
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4676
     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
  4677
     Since we want 0 <= k < q, we can thus find k as
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4678
     k = (u * (q2-p2)) mod q.
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4679
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4680
     Once we have k, evaluating p2 + p * k is easy, and
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4681
     that gives us the result
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4682
    "
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4683
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4684
    |result t mp mq|
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4685
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4686
    mp := p asModuloNumber.
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4687
    result := self raisedTo:ep mod:mp.
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4688
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4689
    mq := q asModuloNumber.
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4690
    t := self raisedTo:eq mod:mq.
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4691
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4692
    "now p2 is in result, q2 in t"
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4693
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  4694
    t := t - result.
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  4695
    t negative ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4696
        t := t + q.
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4697
    ].
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  4698
    t := t * u.
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4699
    t := mq modulusOf:t.
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  4700
    t := t * p.
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  4701
    result := result + t.
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4702
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4703
    ^ result.
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4704
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4705
    "Created: / 30.4.1999 / 15:53:15 / stefan"
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4706
    "Modified: / 5.5.1999 / 11:01:15 / stefan"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4707
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4708
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4709
!Integer methodsFor:'printing & storing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4710
16038
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4711
asBCD
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4712
    "return an integer which represents the BCD encoded value of the receiver;
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4713
     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
  4714
     of the result. (aka 162 -> 0x162).
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4715
     This conversion is useful for some communication protocols,
16040
4708e4544528 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16038
diff changeset
  4716
     or control systems, which represent numbers this way...
4708e4544528 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16038
diff changeset
  4717
     This fallback code is not particularily tuned or optimized for speed."
16038
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4718
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4719
    |rest twoDigits hi lo shift out|
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4720
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4721
    out := 0. shift := 0.
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4722
    rest := self.
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4723
    [rest > 0] whileTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4724
        twoDigits := rest \\ 100.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4725
        rest := rest // 100.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4726
        hi := twoDigits // 10.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4727
        lo := twoDigits \\ 10.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4728
        out := out bitOr:(((hi bitShift:4)+lo) bitShift:shift).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4729
        shift := shift + 8.
16038
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4730
    ].
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4731
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4732
    ^ out
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4733
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4734
    "
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4735
     (100 factorial) asBCD
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4736
     999999999 asBCD
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4737
     100000000 asBCD
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4738
     123456789 asBCD
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4739
     99999999 asBCD
16038
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4740
     12345678 asBCD
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4741
     12345678 asBCD
16038
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4742
     12345678 asBCD hexPrintString
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4743
     12345678901234567890 asBCD
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4744
    "
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4745
!
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4746
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4747
asBCDBytes
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4748
    "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
  4749
     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
  4750
     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
  4751
     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
  4752
     or control systems, which represent big numbers this way...
16038
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4753
     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
  4754
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4755
    |s rest twoDigits hi lo|
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4756
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4757
    self == 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4758
        ^ #[ 16r00 ]
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4759
    ].
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4760
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4761
    "/ 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
  4762
    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
  4763
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4764
    rest := self.
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4765
    [rest > 0] whileTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4766
        twoDigits := rest \\ 100.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4767
        rest := rest // 100.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4768
        hi := twoDigits \\ 10.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4769
        lo := twoDigits // 10.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4770
        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
  4771
    ].
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4772
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4773
    ^ s contents reverse
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4774
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4775
    "
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4776
     12345678 asBCDBytes
16038
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4777
     12345678 asBCDBytes hexPrintString
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4778
     12345678901234567890 asBCDBytes
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4779
    "
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4780
!
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4781
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4782
errorPrintHex
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4783
    "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
  4784
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4785
     (self printStringRadix:16) errorPrint
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4786
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4787
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4788
hexPrintString
23382
e11a8bed0f9e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23119
diff changeset
  4789
    "return a hex string representation of the receiver.
e11a8bed0f9e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23119
diff changeset
  4790
     Notice: this is not padded in any way"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4791
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4792
    ^ self printStringRadix:16
3874
a04715e25340 comment
Claus Gittinger <cg@exept.de>
parents: 3683
diff changeset
  4793
a04715e25340 comment
Claus Gittinger <cg@exept.de>
parents: 3683
diff changeset
  4794
    "
23382
e11a8bed0f9e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23119
diff changeset
  4795
     9 hexPrintString
3874
a04715e25340 comment
Claus Gittinger <cg@exept.de>
parents: 3683
diff changeset
  4796
     127 hexPrintString
a04715e25340 comment
Claus Gittinger <cg@exept.de>
parents: 3683
diff changeset
  4797
     -1 hexPrintString
a04715e25340 comment
Claus Gittinger <cg@exept.de>
parents: 3683
diff changeset
  4798
    "
a04715e25340 comment
Claus Gittinger <cg@exept.de>
parents: 3683
diff changeset
  4799
23382
e11a8bed0f9e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23119
diff changeset
  4800
    "Modified: / 11-10-1998 / 01:15:43 / cg"
e11a8bed0f9e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23119
diff changeset
  4801
    "Modified (comment): / 23-09-2018 / 03:48:57 / Claus Gittinger"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4802
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4803
2408
fd31506f31ef added #hexPrintString:
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
  4804
hexPrintString:size
fd31506f31ef added #hexPrintString:
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
  4805
    "return a hex string representation of the receiver,
fd31506f31ef added #hexPrintString:
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
  4806
     padded to size characters"
fd31506f31ef added #hexPrintString:
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
  4807
5799
547c417b23cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5782
diff changeset
  4808
"/    ^ (self printStringRadix:16) leftPaddedTo:size with:$0
547c417b23cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5782
diff changeset
  4809
    ^ self printStringRadix:16 size:size fill:$0
547c417b23cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5782
diff changeset
  4810
547c417b23cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5782
diff changeset
  4811
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4812
     12345 hexPrintString:4
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4813
     123 hexPrintString:4
5799
547c417b23cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5782
diff changeset
  4814
    "
2408
fd31506f31ef added #hexPrintString:
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
  4815
fd31506f31ef added #hexPrintString:
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
  4816
    "Created: 18.2.1997 / 13:32:33 / cg"
fd31506f31ef added #hexPrintString:
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
  4817
!
fd31506f31ef added #hexPrintString:
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
  4818
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4819
printHex
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4820
    "print the receiver as a hex number on the standard output stream"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4821
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4822
     (self printStringRadix:16) print
21938
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4823
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4824
    "
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4825
     16rAFFE printStringRadix:16
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4826
    "
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4827
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4828
    "Modified (comment): / 02-07-2017 / 10:20:59 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4829
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4830
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4831
printOn:aStream base:base showRadix:showRadix
5988
Claus Gittinger <cg@exept.de>
parents: 5882
diff changeset
  4832
    "append a string representation of the receiver in the specified numberBase to aStream
Claus Gittinger <cg@exept.de>
parents: 5882
diff changeset
  4833
     (if showRadix is true, with initial XXr)
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4834
     The base argument should be between 2 and 36.
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4835
     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
  4836
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4837
    |absBase num s divMod mod r r2 r4 nD numN string|
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4838
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4839
    (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
  4840
        ConversionError raiseRequestWith:self errorString:' - invalid base: ', absBase printString.
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4841
        absBase := 10.
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 52
diff changeset
  4842
    ].
06dbdeeed4f9 *** empty log message ***
claus
parents: 52
diff changeset
  4843
5988
Claus Gittinger <cg@exept.de>
parents: 5882
diff changeset
  4844
    showRadix ifTrue:[
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4845
        absBase printOn:aStream.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4846
        aStream nextPut:$r.
5988
Claus Gittinger <cg@exept.de>
parents: 5882
diff changeset
  4847
    ].
Claus Gittinger <cg@exept.de>
parents: 5882
diff changeset
  4848
3188
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4849
    (self = 0) ifTrue:[aStream nextPut:$0. ^ self].
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4850
    self negative ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4851
        aStream nextPut:$- .
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4852
        num := self negated.
3188
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4853
    ] ifFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4854
        num := self.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4855
    ].
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4856
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4857
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4858
     claus: changed it from a recursive algorithm;
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  4859
     (it used to trigger stack-overflow exceptions when printing 3000 factorial ...)
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4860
    "
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  4861
    "/    leftPart := num // base.
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  4862
    "/    (leftPart ~= 0) ifTrue:[
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  4863
    "/        leftPart printOn:aStream base:base.
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  4864
    "/        aStream nextPut:(Character digitValue:(num \\ base).
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  4865
    "/        ^ self
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  4866
    "/    ].
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  4867
    "/    aStream nextPut:(Character digitValue:num).
2951
256e90eee7f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2816
diff changeset
  4868
3121
91de0211651c even faster largeInt printString, by doing it in bigger junks (8digits a time)
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  4869
    "/ 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
  4870
    "/ 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
  4871
    "/ 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
  4872
    "/ 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
  4873
    "/ 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
  4874
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4875
    r2 := absBase*absBase.   "/ radix^2
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  4876
    r4 := r2*r2.        "/ radix^4
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4877
    absBase <= 10 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4878
        r := r4*r2.     "/ radix^6 (chunks of 6 digits)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4879
        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
  4880
    ] ifFalse:[
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4881
        r := r4*absBase.    "/ radix^5 (chunks of 5 digits)
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4882
        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
  4883
    ].
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  4884
    SmallInteger maxBits >= 63 ifTrue:[
19159
c92bc53e745e #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19131
diff changeset
  4885
        r := r*r2.    "/ radix^7 (chunks of 6 digits)
c92bc53e745e #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19131
diff changeset
  4886
        nD := nD + 2.
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  4887
    ].
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4888
3188
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4889
    "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
  4890
     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
  4891
     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
  4892
    "
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  4893
    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
  4894
3121
91de0211651c even faster largeInt printString, by doing it in bigger junks (8digits a time)
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  4895
    [num >= r] whileTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4896
        "/
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4897
        "/ chop off nD digits.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4898
        "/
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4899
        divMod := num divMod:r.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4900
        num := divMod at:1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4901
        numN := divMod at:2.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4902
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4903
        "/ process them
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4904
        nD timesRepeat:[
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4905
            divMod := numN divMod:absBase.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4906
            numN := divMod at:1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4907
            mod := divMod at:2.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4908
            s nextPut:(Character digitValue:mod).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4909
        ].
2951
256e90eee7f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2816
diff changeset
  4910
    ].
1842
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  4911
19089
82c431661f59 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19078
diff changeset
  4912
    [num ~~ 0] whileTrue:[
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4913
        divMod := num divMod:absBase.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4914
        num := divMod at:1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4915
        mod := divMod at:2.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4916
        s nextPut:(Character digitValue:mod).
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4917
    ].
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4918
    string := s contents reverse.
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4919
    base < 0 ifTrue:[
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4920
        string := string asLowercase.
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4921
    ].
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4922
    aStream nextPutAll:string.
3188
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4923
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4924
    "
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4925
        3000 factorial printOn:Transcript base:10
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4926
        10 printOn:Transcript base:3
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4927
        31 printOn:Transcript base:3
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4928
        10 printOn:Transcript base:2
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4929
        31 printOn:Transcript base:2
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4930
        -28  printOn:Transcript base:16
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4931
        -28  printOn:Transcript base:-16
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4932
        -20  printOn:Transcript base:10
19159
c92bc53e745e #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19131
diff changeset
  4933
        Time millisecondsToRun:[10000 factorial printString]
c92bc53e745e #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19131
diff changeset
  4934
        '%012d' printf:{  (2 raisedTo:20) }
12976
a12aab15ce5a changed: #printOn:base:showRadix:
Claus Gittinger <cg@exept.de>
parents: 12875
diff changeset
  4935
    "
a12aab15ce5a changed: #printOn:base:showRadix:
Claus Gittinger <cg@exept.de>
parents: 12875
diff changeset
  4936
a12aab15ce5a changed: #printOn:base:showRadix:
Claus Gittinger <cg@exept.de>
parents: 12875
diff changeset
  4937
    "Modified: / 20-01-1998 / 18:05:02 / stefan"
a12aab15ce5a changed: #printOn:base:showRadix:
Claus Gittinger <cg@exept.de>
parents: 12875
diff changeset
  4938
    "Created: / 07-09-2001 / 13:51:33 / cg"
a12aab15ce5a changed: #printOn:base:showRadix:
Claus Gittinger <cg@exept.de>
parents: 12875
diff changeset
  4939
    "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
  4940
!
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4941
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4942
printOn:aStream base:baseInteger size:sz
15775
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4943
    "print a string representation of the receiver in the specified
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4944
     base. The string is padded on the left with fillCharacter to make
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4945
     its size as specified in sz."
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4946
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4947
    self printOn:aStream base:baseInteger size:sz fill:$0
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4948
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4949
    "
20268
e700943eea09 #DOCUMENTATION by mawalch
mawalch
parents: 20140
diff changeset
  4950
     1024 printOn:Transcript base:16 size:4.
15775
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4951
     1024 printOn:Transcript base:2 size:16.
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4952
     1024 printOn:Transcript base:16 size:8.
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4953
    "
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4954
!
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4955
7173
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4956
printOn:aStream base:baseInteger size:sz fill:fillCharacter
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4957
    "print a string representation of the receiver in the specified
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4958
     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
  4959
     its size as specified in sz."
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4960
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4961
    |string actualSize|
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4962
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4963
    string := self printStringRadix:baseInteger.
7173
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4964
    actualSize := string size.
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4965
    actualSize < sz ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4966
        aStream next:sz-actualSize put:fillCharacter.
7173
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4967
    ].
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4968
    aStream nextPutAll:string.
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4969
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4970
    "
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  4971
     1024 printOn:Transcript base:16 size:4 fill:$0.
7173
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4972
     1024 printOn:Transcript base:2 size:16 fill:$.
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4973
     1024 printOn:Transcript base:16 size:8 fill:Character space.
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4974
    "
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4975
!
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4976
3188
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4977
printOn:aStream radix:base
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4978
    "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
  4979
     The receiver is printed in radix base (instead of the default, 10).
5988
Claus Gittinger <cg@exept.de>
parents: 5882
diff changeset
  4980
     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
  4981
8897
da8d205a93aa Mark obsolete method as obsolete
Stefan Vogel <sv@exept.de>
parents: 8892
diff changeset
  4982
    <resource: #obsolete>
da8d205a93aa Mark obsolete method as obsolete
Stefan Vogel <sv@exept.de>
parents: 8892
diff changeset
  4983
3188
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4984
    self printOn:aStream base:base
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4985
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4986
    "Modified: / 20.1.1998 / 14:10:45 / stefan"
5988
Claus Gittinger <cg@exept.de>
parents: 5882
diff changeset
  4987
    "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
  4988
!
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4989
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4990
printRomanOn:aStream
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4991
    "print the receiver as roman number to the receiver, aStream.
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4992
     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
  4993
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4994
    ^ self printRomanOn:aStream naive:false
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4995
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4996
    "
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4997
     1 to:10 do:[:i | i printRomanOn:Transcript. Transcript cr.].
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4998
     1999 printRomanOn:Transcript. Transcript cr.
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4999
     Date today year printRomanOn:Transcript. Transcript cr.
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  5000
    "
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  5001
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  5002
    "test all between 1 and 9999:
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  5003
      1 to:9999 do:[:n |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5004
        |romanString|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5005
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5006
        romanString := String streamContents:[:stream | n printRomanOn:stream].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5007
        (Integer readFromRomanString:romanString onError:nil) ~= n ifTrue:[self halt].
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  5008
     ]
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  5009
    "
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  5010
!
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  5011
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  5012
printRomanOn:aStream naive:naive
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  5013
    "print the receiver as roman number to the receiver, aStream.
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  5014
     The naive argument controls if the conversion is
6682
9a97f4deb836 more on roman numbers
Claus Gittinger <cg@exept.de>
parents: 6673
diff changeset
  5015
     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
  5016
     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
  5017
     The naive version is often used for page numbers in documents."
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  5018
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  5019
    |restValue spec|
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  5020
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  5021
    restValue := self.
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  5022
    restValue > 0 ifFalse:[self error:'negative roman'].
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  5023
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  5024
    naive ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5025
        spec := #(
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5026
                " value string repeat "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5027
                   1000 'M'    true
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5028
                    500 'D'    false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5029
                    100 'C'    true
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5030
                     50 'L'    false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5031
                     10 'X'    true
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5032
                      5 'V'    false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5033
                      1 'I'    true
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5034
                 ).
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  5035
    ] ifFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5036
        spec := #(
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5037
                " value string repeat "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5038
                   1000 'M'    true
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5039
                    900 'CM'   false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5040
                    500 'D'    false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5041
                    400 'CD'   false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5042
                    100 'C'    true
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5043
                     90 'XC'   false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5044
                     50 'L'    false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5045
                     40 'XL'   false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5046
                     10 'X'    true
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5047
                      9 'IX'   false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5048
                      5 'V'    false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5049
                      4 'IV'   false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5050
                      1 'I'    true
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5051
                 ).
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  5052
    ].
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  5053
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5054
    spec
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5055
        inGroupsOf:3
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5056
        do:[:rValue :rString :repeatFlag |
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5057
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5058
            [
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5059
                (restValue >= rValue) ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5060
                    aStream nextPutAll:rString.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5061
                    restValue := restValue - rValue.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5062
                ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5063
            ] doWhile:[ repeatFlag and:[ restValue >= rValue] ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5064
        ].
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  5065
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  5066
    "
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  5067
     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
  5068
     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
  5069
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  5070
     1999 printRomanOn:Transcript. Transcript cr.
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  5071
     Date today year printRomanOn:Transcript. Transcript cr.
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  5072
    "
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  5073
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  5074
    "test all between 1 and 9999:
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  5075
      1 to:9999 do:[:n |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5076
        |romanString|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5077
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5078
        romanString := String streamContents:[:stream | n printRomanOn:stream naive:false].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5079
        (Integer readFromRomanString:romanString onError:nil) ~= n ifTrue:[self halt].
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  5080
     ]
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  5081
    "
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  5082
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  5083
    "test naive all between 1 and 9999:
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  5084
      1 to:9999 do:[:n |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5085
        |romanString|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5086
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5087
        romanString := String streamContents:[:stream | n printRomanOn:stream naive:true].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5088
        (Integer readFromRomanString:romanString onError:nil) ~= n ifTrue:[self halt].
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  5089
     ]
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  5090
    "
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  5091
!
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  5092
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5093
printStringRadix:aRadix size:sz fill:fillCharacter
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5094
    "return a string representation of the receiver in the specified
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5095
     radix. The string is padded on the left with fillCharacter to make
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5096
     its size as specified in sz."
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5097
2951
256e90eee7f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2816
diff changeset
  5098
    |s actualSize|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5099
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5100
    s := self printStringRadix:aRadix.
2951
256e90eee7f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2816
diff changeset
  5101
    actualSize := s size.
256e90eee7f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2816
diff changeset
  5102
    actualSize < sz ifTrue:[
23980
6644ef2d4826 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23944
diff changeset
  5103
        ^ (String new:(sz - actualSize) withAll:fillCharacter) , s
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5104
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5105
    ^ s
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5106
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  5107
    "
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  5108
     1024 printStringRadix:16 size:4 fill:$0.
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  5109
     1024 printStringRadix:2 size:16 fill:$.
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  5110
     1024 printStringRadix:16 size:8 fill:(Character space)
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  5111
    "
23980
6644ef2d4826 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23944
diff changeset
  5112
6644ef2d4826 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23944
diff changeset
  5113
    "Modified: / 26-03-2019 / 11:54:52 / Claus Gittinger"
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  5114
!
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  5115
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  5116
romanPrintString
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  5117
    "return a roman number representation of the receiver as a string"
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  5118
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  5119
    ^ String streamContents:[:stream | self printRomanOn:stream].
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  5120
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  5121
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5122
     1999 romanPrintString.
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  5123
     Date today year romanPrintString.
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  5124
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5125
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5126
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5127
!Integer methodsFor:'private'!
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5128
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5129
numberOfDigits:n8BitDigits
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5130
    "initialize the instance to store n8BitDigits"
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5131
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5132
    ^ self subclassResponsibility.
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5133
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5134
    "Created: / 01-11-2018 / 11:28:56 / Stefan Vogel"
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5135
!
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5136
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5137
numberOfDigits:n8BitDigits sign:newSign
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5138
    "initialize the instance to store n8BitDigits and sign"
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5139
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5140
    ^ self subclassResponsibility.
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5141
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5142
    "Created: / 01-11-2018 / 12:12:56 / Stefan Vogel"
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5143
!
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5144
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5145
setSign:aNumber
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5146
    "private: for protocol completeness with LargeIntegers.
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5147
     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
  5148
     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
  5149
     but a new number is returned."
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5150
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5151
    |absVal|
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5152
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5153
    aNumber == 0 ifTrue:[
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5154
        ^ 0
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5155
    ].
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5156
    absVal := self abs.
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5157
    aNumber < 0 ifTrue:[
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5158
        ^ absVal negated
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5159
    ].
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5160
    ^ absVal
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5161
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5162
    "
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5163
     -4 sign:-1
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5164
     -4 sign:0
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5165
     -4 sign:1
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5166
     -4 sign:-1
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5167
     -4 sign:0
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5168
     -4 sign:1
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5169
    "
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5170
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5171
    "Modified (format): / 01-11-2018 / 12:22:48 / Stefan Vogel"
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5172
!
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5173
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5174
sign:aNumber
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5175
    <resource: #obsolete>
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5176
    "destructively change the sign of the receiver"
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5177
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5178
    ^ self setSign:aNumber
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5179
! !
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  5180
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5181
!Integer methodsFor:'queries'!
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 159
diff changeset
  5182
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5183
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
  5184
    "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
  5185
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5186
    self subclassResponsibility
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5187
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5188
    "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
  5189
     concrete subclasses."
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 159
diff changeset
  5190
6055
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5191
"/    |num count|
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5192
"/
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5193
"/    num := self.
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5194
"/    count := n.
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5195
"/    [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
  5196
"/        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
  5197
"/        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
  5198
"/    ].
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5199
"/    ^ num \\ 256
159
514c749165c3 *** empty log message ***
claus
parents: 132
diff changeset
  5200
514c749165c3 *** empty log message ***
claus
parents: 132
diff changeset
  5201
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5202
     16r44332211 digitAt:1
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5203
     16r44332211 digitAt:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5204
     16r44332211 digitAt:3
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5205
     16r44332211 digitAt:4
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5206
     16r44332211 digitAt:5
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5207
     16r00332211 digitAt:4
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5208
     16r00332211 digitAt:5
159
514c749165c3 *** empty log message ***
claus
parents: 132
diff changeset
  5209
    "
6055
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5210
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5211
    "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
  5212
!
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5213
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5214
digitByteAt:n
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5215
    "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
  5216
     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
  5217
     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
  5218
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5219
    self subclassResponsibility
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5220
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5221
    "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
  5222
    "Modified: / 26.9.2001 / 21:20:19 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5223
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5224
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5225
digitLength
19319
88ea441f7071 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19316
diff changeset
  5226
    "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
  5227
     For negative receivers, the result is not defined by the language standard.
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  5228
     This method is redefined in concrete classes
19319
88ea441f7071 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19316
diff changeset
  5229
     - the fallback here is actually never used."
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5230
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5231
    ^ (self log:256) ceiling asInteger
2816
62edd11b5e66 commentary
Claus Gittinger <cg@exept.de>
parents: 2794
diff changeset
  5232
62edd11b5e66 commentary
Claus Gittinger <cg@exept.de>
parents: 2794
diff changeset
  5233
    "Modified: 31.7.1997 / 13:19:06 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5234
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5235
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5236
exponent
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5237
    "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
  5238
     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
  5239
     This assumes that the mantissa is normalized to
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5240
     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
  5241
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5242
    ^ self abs highBit
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5243
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5244
    "
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5245
     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
  5246
     self assert:( 2.0 exponent = 2 exponent ).
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5247
     self assert:( 3.0 exponent = 3 exponent ).
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5248
     self assert:( 4.0 exponent = 4 exponent ).
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5249
     self assert:( 12345.0 exponent = 12345 exponent ).
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5250
     self assert:( 0.0 exponent = 0 exponent ).
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5251
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5252
     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
  5253
     self assert:( -2.0 exponent = -2 exponent ).
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5254
     self assert:( -3.0 exponent = -3 exponent ).
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5255
     self assert:( -4.0 exponent = -4 exponent ).
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5256
     self assert:( -12345.0 exponent = -12345 exponent ).
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5257
    "
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5258
!
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5259
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5260
isInteger
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5261
    "return true, if the receiver is some kind of integer number"
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5262
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5263
    ^ true
3036
f2d332547db7 added #isPowerOf2
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5264
!
f2d332547db7 added #isPowerOf2
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5265
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5266
isLiteral
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5267
    "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
  5268
     (i.e. can be used in constant arrays)"
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5269
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5270
    ^ true
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5271
!
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5272
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5273
isPerfectSquare
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5274
    "return true if I am a perfect square.
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5275
     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
  5276
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5277
    |intSqrt realSqrt|
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5278
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5279
    self strictlyPositive ifFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5280
        self == 0 ifTrue:[^ true].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5281
        "/ should we raise a domain error for negative receivers?
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5282
        ^ false
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5283
    ].
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5284
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5285
    "/ 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
  5286
    self < 400 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5287
        ^ #(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
  5288
    ].
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5289
    self < 1024 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5290
        ^ #(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
  5291
    ].
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5292
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5293
    "/ try powers of 2
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5294
    self isPowerOfTwo ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5295
        ^ self lowBit odd
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5296
    ].
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5297
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5298
    "/ guess
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5299
    realSqrt := self sqrt.
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5300
    realSqrt isFinite ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5301
        realSqrt = realSqrt truncated ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5302
            "/ still have to check due to rounding errors.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5303
            intSqrt := realSqrt truncated asInteger.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5304
            ^ intSqrt squared = self
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5305
        ].
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5306
    ].
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5307
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5308
    "/ slow code
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5309
    intSqrt := self integerSqrt.
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5310
    ^ intSqrt squared = self
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5311
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5312
    "
19058
Claus Gittinger <cg@exept.de>
parents: 19053
diff changeset
  5313
     0 isPerfectSquare
Claus Gittinger <cg@exept.de>
parents: 19053
diff changeset
  5314
     3 isPerfectSquare
Claus Gittinger <cg@exept.de>
parents: 19053
diff changeset
  5315
     4 isPerfectSquare
Claus Gittinger <cg@exept.de>
parents: 19053
diff changeset
  5316
     9 isPerfectSquare
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5317
     (1 to:1000000) count:[:n | n isPerfectSquare] 1000
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5318
     12345678987654321234567 isPerfectSquare
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5319
     123123123432 squared isPerfectSquare
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5320
     (123123123432 raisedTo:7) isPerfectSquare
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5321
     ((123456789123456789 raisedTo:7)) isPerfectSquare
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5322
     ((123456789123456789 raisedTo:7)-1) isPerfectSquare
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5323
     Time microsecondsToRun:[12345678987654321234567 isPerfectSquare]
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5324
    "
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5325
!
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5326
9134
98d5bfd1cc51 +isPowerOf:
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  5327
isPowerOf:p
98d5bfd1cc51 +isPowerOf:
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  5328
    "return true, if the receiver is a power of p"
98d5bfd1cc51 +isPowerOf:
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  5329
98d5bfd1cc51 +isPowerOf:
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  5330
    p == 2 ifTrue:[ ^ self isPowerOfTwo].
98d5bfd1cc51 +isPowerOf:
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  5331
98d5bfd1cc51 +isPowerOf:
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  5332
    "/ the following is a q&d hack, using existing code.
98d5bfd1cc51 +isPowerOf:
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  5333
    ^ (Integer
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5334
        readFromString:(self printStringRadix:p)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5335
        radix:2
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5336
        onError:-1) isPowerOfTwo
9134
98d5bfd1cc51 +isPowerOf:
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  5337
98d5bfd1cc51 +isPowerOf:
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  5338
    "
19058
Claus Gittinger <cg@exept.de>
parents: 19053
diff changeset
  5339
     0 isPowerOf:2
Claus Gittinger <cg@exept.de>
parents: 19053
diff changeset
  5340
     1 isPowerOf:2
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5341
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5342
     16r0000000000000000 isPowerOf:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5343
     16r0000004000000000 isPowerOf:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5344
     16r0000004000000001 isPowerOf:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5345
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5346
     16r0000000000000001 isPowerOf:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5347
     16r0000000000000002 isPowerOf:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5348
     16r0000000000000004 isPowerOf:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5349
     16r0000000000000008 isPowerOf:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5350
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5351
     16r0000000000000001 isPowerOf:4
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5352
     16r0000000000000002 isPowerOf:4
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5353
     16r0000000000000004 isPowerOf:4
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5354
     16r0000000000000008 isPowerOf:4
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5355
     16r0000000000000010 isPowerOf:4
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5356
     16r0000000000000020 isPowerOf:4
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5357
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5358
     3r0000000000000001 isPowerOf:3
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5359
     3r0000000000000010 isPowerOf:3
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5360
     3r0000000000000100 isPowerOf:3
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5361
     3r0000000000001000 isPowerOf:3
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5362
     3r0000000000001001 isPowerOf:3
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5363
     3r0000000000002000 isPowerOf:3
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5364
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5365
     10 isPowerOf:10
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5366
     20 isPowerOf:10
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5367
     100 isPowerOf:10
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5368
     110 isPowerOf:10
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5369
     200 isPowerOf:10
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5370
     1000 isPowerOf:10
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5371
     10000 isPowerOf:10
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5372
     100000 isPowerOf:10
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5373
     100001 isPowerOf:10
9134
98d5bfd1cc51 +isPowerOf:
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  5374
 "
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5375
!
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5376
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5377
isPowerOfTwo
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5378
    "return true, if the receiver is a power of 2"
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5379
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5380
    "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
  5381
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5382
    |maxBytes "{ Class: SmallInteger }"|
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5383
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5384
    maxBytes := self digitLength.
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5385
    (self digitAt:maxBytes) isPowerOfTwo ifFalse:[^ false].
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5386
    1 to:maxBytes-1 do:[:byteIndex |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5387
        (self digitAt:byteIndex) ~~ 0 ifTrue:[^ false].
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5388
    ].
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5389
    ^ true
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5390
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5391
    "
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5392
     10000 factorial isPowerOfTwo
24099
b01e81fcd293 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24005
diff changeset
  5393
     |n| n := 10000 factorial. Time millisecondsToRun:[10000 timesRepeat:[ n isPowerOfTwo]]
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5394
    "
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5395
    "
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5396
     (2 raisedTo:10000) isPowerOfTwo
24099
b01e81fcd293 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24005
diff changeset
  5397
     |n| n := (2 raisedTo:10000). Time millisecondsToRun:[10000 timesRepeat:[ n isPowerOfTwo]]
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5398
    "
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5399
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5400
    "Modified: / 20-06-2011 / 12:43:05 / cg"
24099
b01e81fcd293 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24005
diff changeset
  5401
    "Modified (comment): / 30-04-2019 / 23:13:25 / Claus Gittinger"
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5402
!
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5403
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5404
isPrime
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5405
    "return true if I am a prime Number.
22114
94a519213339 #BUGFIX by mawalch
mawalch
parents: 22107
diff changeset
  5406
     Pre-condition: I am positive.
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5407
     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
  5408
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5409
    |limit firstFewPrimes|
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5410
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5411
    self even ifTrue:[^ self == 2 ].
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5412
    self == 1 ifTrue:[^ false ].
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5413
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5414
    "/ See comment in initializePrimeCacheUpTo:limit
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5415
    "/      Integer initializePrimeCacheUpTo:(10 raisedTo:7)
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5416
    "/      Integer flushPrimeCache
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5417
    "/
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5418
    "/ by default, no primeCache is used.
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5419
    "/ 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
  5420
    "/      Integer initializePrimeCacheUpTo:1000000
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5421
    "/ and when done, cleanup with flushPrimeCache
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5422
    PrimeCache notNil ifTrue:[
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5423
        self <= (PrimeCache size*2) ifTrue:[
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5424
            ^ PrimeCache at:self//2.
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5425
        ].
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5426
    ].
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  5427
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5428
    firstFewPrimes := self class primesUpTo5000.
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5429
    limit := firstFewPrimes last + 1.
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5430
    self < (limit*limit) ifTrue:[
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5431
        limit := self sqrt asInteger.
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  5432
    ].
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5433
    firstFewPrimes do:[:p |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5434
        p > limit ifTrue:[^ true].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5435
        (self \\ p) == 0 ifTrue:[ ^ false ].
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5436
    ].
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5437
19118
c49679d75a5d #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19094
diff changeset
  5438
    PrimeNumberGenerator notNil ifTrue:[    "from exept:libcrypt"
c49679d75a5d #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19094
diff changeset
  5439
        "speed up a lot for large primes"
c49679d75a5d #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19094
diff changeset
  5440
        ^ PrimeNumberGenerator isPrime:self.
c49679d75a5d #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19094
diff changeset
  5441
    ].
c49679d75a5d #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19094
diff changeset
  5442
22114
94a519213339 #BUGFIX by mawalch
mawalch
parents: 22107
diff changeset
  5443
    "/ Not absolutely correct, but was broken much worse before.
22118
bb1fee4735ae #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 22114
diff changeset
  5444
    limit := self integerSqrt.
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5445
    (firstFewPrimes last+2) to:limit by:2 do:[:i |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5446
        (self \\ i) == 0 ifTrue:[ ^ false ].
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5447
    ].
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5448
    ^ true
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5449
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5450
    "
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5451
     Integer primesUpTo:1000
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5452
     (1 to:1000000) count:[:n | n isPrime] 78498
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5453
     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
  5454
     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
  5455
     Time millisecondsToRun:[ (1 to:1000000) count:[:n | n isPrime]] 343    with primeCache
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5456
    "
22114
94a519213339 #BUGFIX by mawalch
mawalch
parents: 22107
diff changeset
  5457
94a519213339 #BUGFIX by mawalch
mawalch
parents: 22107
diff changeset
  5458
    "Modified (comment): / 26-07-2017 / 12:58:45 / mawalch"
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5459
!
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5460
23119
8ca65ffe917f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23118
diff changeset
  5461
nextMultipleOf:n
14680
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5462
    "return the multiple of n at or above the receiver.
23119
8ca65ffe917f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23118
diff changeset
  5463
     (?? The name of this method may be a bit misleading,
8ca65ffe917f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23118
diff changeset
  5464
      as it returns the receiver iff it is already a multiple)
16800
45ef192ee95f class: Integer
Claus Gittinger <cg@exept.de>
parents: 16723
diff changeset
  5465
     Useful for padding, aligning or rounding,
21774
c6fb8f0b4597 #OTHER by mawalch
mawalch
parents: 21637
diff changeset
  5466
     especially when reading aligned binary data."
14677
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5467
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5468
    |rest|
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5469
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5470
    rest := self \\ n.
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5471
    rest == 0 ifTrue:[ ^ self ].
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5472
    ^ self + (n - rest)
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5473
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5474
    "
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5475
     0 nextMultipleOf: 4 -> 0
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5476
     1 nextMultipleOf: 4 -> 4
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5477
     2 nextMultipleOf: 4 -> 4 
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  5478
     3 nextMultipleOf: 4 -> 4
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  5479
     4 nextMultipleOf: 4 -> 4
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  5480
     5 nextMultipleOf: 4 -> 8
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5481
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5482
     22 nextMultipleOf: 4
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5483
     100 factorial nextMultipleOf: 4
14677
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5484
    "
21774
c6fb8f0b4597 #OTHER by mawalch
mawalch
parents: 21637
diff changeset
  5485
c6fb8f0b4597 #OTHER by mawalch
mawalch
parents: 21637
diff changeset
  5486
    "Modified (comment): / 29-05-2017 / 15:40:45 / mawalch"
23119
8ca65ffe917f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23118
diff changeset
  5487
    "Modified (comment): / 20-06-2018 / 15:36:33 / Claus Gittinger"
14677
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5488
!
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5489
14680
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5490
nextPowerOf2
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5491
    "return the power of 2 at or above the receiver.
18769
Claus Gittinger <cg@exept.de>
parents: 18380
diff changeset
  5492
     Useful for padding.
19058
Claus Gittinger <cg@exept.de>
parents: 19053
diff changeset
  5493
     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
  5494
     Also notice, that (because it is used for padding),
19058
Claus Gittinger <cg@exept.de>
parents: 19053
diff changeset
  5495
     0 is returned for zero."
14680
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5496
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5497
    |x t sh|
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5498
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5499
    x := self - 1.
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5500
    x := x bitOr: (x bitShift: -1).
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5501
    x := x bitOr: (x bitShift: -2).
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5502
    x := x bitOr: (x bitShift: -4).
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5503
    x := x bitOr: (x bitShift: -8).
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5504
    x := x bitOr: (t := x bitShift: -16).
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5505
    t == 0 ifFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5506
        sh := -32.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5507
        [
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5508
            x := x bitOr: (t := x bitShift: sh).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5509
            sh := sh + sh.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5510
        ] doWhile: [t ~~ 0]
14680
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5511
    ].
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5512
    ^ x + 1
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5513
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5514
    "
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5515
     0 nextPowerOf2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5516
     1 nextPowerOf2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5517
     2 nextPowerOf2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5518
     3 nextPowerOf2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5519
     4 nextPowerOf2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5520
     5 nextPowerOf2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5521
     6 nextPowerOf2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5522
     7 nextPowerOf2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5523
     8 nextPowerOf2
14680
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5524
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5525
     22 nextPowerOf2
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5526
     12 factorial nextPowerOf2  isPowerOf:2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5527
     100 factorial nextPowerOf2  isPowerOf:2
18905
256565ff9803 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18865
diff changeset
  5528
     1000 factorial nextPowerOf2  isPowerOf:2
256565ff9803 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18865
diff changeset
  5529
     Time millisecondsToRun:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5530
         |v|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5531
         v := 1000 factorial.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5532
         1000 timesRepeat:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5533
            v nextPowerOf2
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5534
         ]
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5535
     ]
14680
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5536
    "
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5537
!
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5538
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5539
nextPrime
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5540
    "return the next prime after the receiver"
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5541
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5542
    |num|
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5543
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5544
    num := self + 1.
19015
8cce2933467a #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18981
diff changeset
  5545
    num <= 2 ifTrue:[^ 2].
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5546
    num even ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5547
        num := num + 1
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5548
    ].
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5549
    [num isPrime] whileFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5550
        num := num + 2
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5551
    ].
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5552
    ^ num
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5553
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5554
    "
19015
8cce2933467a #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18981
diff changeset
  5555
     0 nextPrime
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5556
     1 nextPrime
19015
8cce2933467a #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18981
diff changeset
  5557
     2 nextPrime
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5558
     22 nextPrime
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5559
     37 nextPrime
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5560
     36 nextPrime
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5561
     3456737 nextPrime
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5562
     1000 factorial nextPrime
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5563
    "
13905
7eb024efb58a added: #parity
Claus Gittinger <cg@exept.de>
parents: 13815
diff changeset
  5564
!
7eb024efb58a added: #parity
Claus Gittinger <cg@exept.de>
parents: 13815
diff changeset
  5565
13906
5543bafd72a9 added: #parityOdd
Claus Gittinger <cg@exept.de>
parents: 13905
diff changeset
  5566
parityOdd
13914
725916ddad3f comment/format
Claus Gittinger <cg@exept.de>
parents: 13907
diff changeset
  5567
    "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
  5568
     (i.e. true for odd parity)
7eb024efb58a added: #parity
Claus Gittinger <cg@exept.de>
parents: 13815
diff changeset
  5569
     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
  5570
7eb024efb58a added: #parity
Claus Gittinger <cg@exept.de>
parents: 13815
diff changeset
  5571
    ^ self bitCount odd
7eb024efb58a added: #parity
Claus Gittinger <cg@exept.de>
parents: 13815
diff changeset
  5572
7eb024efb58a added: #parity
Claus Gittinger <cg@exept.de>
parents: 13815
diff changeset
  5573
    "
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5574
     0 parityOdd
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5575
     1 parityOdd
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5576
     2 parityOdd
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5577
     4 parityOdd
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5578
     5 parityOdd
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5579
     7 parityOdd
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5580
     33 parityOdd
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5581
     6 parityOdd
13905
7eb024efb58a added: #parity
Claus Gittinger <cg@exept.de>
parents: 13815
diff changeset
  5582
7eb024efb58a added: #parity
Claus Gittinger <cg@exept.de>
parents: 13815
diff changeset
  5583
     1 to:1000000 do:[:n |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5584
        self assert:(n parityOdd = ((n printStringRadix:2) occurrencesOf:$1) odd).
13905
7eb024efb58a added: #parity
Claus Gittinger <cg@exept.de>
parents: 13815
diff changeset
  5585
     ]
13906
5543bafd72a9 added: #parityOdd
Claus Gittinger <cg@exept.de>
parents: 13905
diff changeset
  5586
5543bafd72a9 added: #parityOdd
Claus Gittinger <cg@exept.de>
parents: 13905
diff changeset
  5587
     0 to:255 do:[:n |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5588
        |p|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5589
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5590
        p :=
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5591
            (((((((((n rightShift: 7)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5592
            bitXor: (n rightShift: 6))
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5593
                bitXor: (n rightShift: 5))
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5594
                    bitXor: (n rightShift: 4))
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5595
                        bitXor: (n rightShift: 3))
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5596
                            bitXor: (n rightShift: 2))
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5597
                                bitXor: (n rightShift: 1))
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5598
                                    bitXor: n) bitAnd:1) == 1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5599
        self assert:(n parityOdd = p).
13906
5543bafd72a9 added: #parityOdd
Claus Gittinger <cg@exept.de>
parents: 13905
diff changeset
  5600
     ]
5543bafd72a9 added: #parityOdd
Claus Gittinger <cg@exept.de>
parents: 13905
diff changeset
  5601
    "
5543bafd72a9 added: #parityOdd
Claus Gittinger <cg@exept.de>
parents: 13905
diff changeset
  5602
5543bafd72a9 added: #parityOdd
Claus Gittinger <cg@exept.de>
parents: 13905
diff changeset
  5603
    "Created: / 09-01-2012 / 17:18:06 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5604
! !
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 159
diff changeset
  5605
23944
1f8b8f9e755f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23930
diff changeset
  5606
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5607
!Integer methodsFor:'special modulo arithmetic'!
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5608
12605
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5609
add_32:anInteger
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5610
    "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
  5611
     Both must be either Small- or LargeIntegers.
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5612
     Returns a signed 32bit number.
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5613
     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
  5614
     modulu operations with C semantics."
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5615
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5616
%{  /* NOCONTEXT */
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5617
    int val1, val2, rslt;
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5618
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5619
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5620
        val1 = __intVal(self);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5621
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5622
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5623
        if (!val1) goto bad;
12605
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5624
    }
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5625
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5626
        val2 = __intVal(anInteger);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5627
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5628
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5629
        if (!val2) goto bad;
12605
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5630
    }
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5631
    rslt = val1 + val2;
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5632
    RETURN(__MKINT(rslt));
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5633
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5634
  bad: ;
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5635
%}.
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5636
    self primitiveFailed.
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5637
!
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5638
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5639
add_32u:anInteger
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5640
    "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
  5641
     Both must be either Small- or LargeIntegers.
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5642
     Returns an unsigned 32bit number.
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5643
     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
  5644
     modulu operations with C semantics."
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5645
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5646
%{  /* NOCONTEXT */
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5647
    int val1, val2, rslt;
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5648
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5649
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5650
        val1 = __intVal(self);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5651
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5652
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5653
        if (!val1) goto bad;
12605
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5654
    }
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5655
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5656
        val2 = __intVal(anInteger);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5657
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5658
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5659
        if (!val2) goto bad;
12605
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5660
    }
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5661
    rslt = val1 + val2;
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5662
    RETURN(__MKUINT((unsigned)rslt));
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5663
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5664
  bad: ;
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5665
%}.
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5666
    self primitiveFailed.
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5667
!
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5668
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5669
mul_32:anInteger
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5670
    "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
  5671
     Both must be either Small- or LargeIntegers.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5672
     Returns a signed 32bit number.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5673
     This (nonstandard) specialized method is provided to allow simulation of
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5674
     modulu operations with C semantics."
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5675
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5676
%{  /* NOCONTEXT */
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5677
    int val1, val2, rslt;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5678
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5679
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5680
        val1 = __intVal(self);
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5681
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5682
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5683
        if (!val1) goto bad;
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5684
    }
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5685
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5686
        val2 = __intVal(anInteger);
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5687
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5688
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5689
        if (!val2) goto bad;
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5690
    }
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5691
    rslt = val1 * val2;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5692
    RETURN(__MKINT(rslt));
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5693
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5694
  bad: ;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5695
%}.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5696
    self primitiveFailed.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5697
!
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5698
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5699
mul_32u:anInteger
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5700
    "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
  5701
     Both must be either Small- or LargeIntegers.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5702
     Returns an unsigned 32bit number.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5703
     This (nonstandard) specialized method is provided to allow simulation of
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5704
     modulu operations with C semantics."
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5705
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5706
%{  /* NOCONTEXT */
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5707
    int val1, val2, rslt;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5708
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5709
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5710
        val1 = __intVal(self);
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5711
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5712
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5713
        if (!val1) goto bad;
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5714
    }
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5715
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5716
        val2 = __intVal(anInteger);
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5717
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5718
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5719
        if (!val2) goto bad;
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5720
    }
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5721
    rslt = val1 * val2;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5722
    RETURN(__MKUINT((unsigned)rslt));
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5723
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5724
  bad: ;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5725
%}.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5726
    self primitiveFailed.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5727
!
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5728
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5729
sub_32:anInteger
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5730
    "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
  5731
     Both must be either Small- or LargeIntegers.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5732
     Returns a signed 32bit number.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5733
     This (nonstandard) specialized method is provided to allow simulation of
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5734
     modulu operations with C semantics."
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5735
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5736
%{  /* NOCONTEXT */
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5737
    int val1, val2, rslt;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5738
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5739
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5740
        val1 = __intVal(self);
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5741
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5742
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5743
        if (!val1) goto bad;
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5744
    }
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5745
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5746
        val2 = __intVal(anInteger);
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5747
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5748
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5749
        if (!val2) goto bad;
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5750
    }
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5751
    rslt = val1 - val2;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5752
    RETURN(__MKINT(rslt));
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5753
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5754
  bad: ;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5755
%}.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5756
    self primitiveFailed.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5757
!
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5758
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5759
sub_32u:anInteger
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5760
    "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
  5761
     Both must be either Small- or LargeIntegers.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5762
     Returns an unsigned 32bit number.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5763
     This (nonstandard) specialized method is provided to allow simulation of
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5764
     modulu operations with C semantics."
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5765
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5766
%{  /* NOCONTEXT */
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5767
    int val1, val2, rslt;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5768
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5769
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5770
        val1 = __intVal(self);
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5771
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5772
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5773
        if (!val1) goto bad;
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5774
    }
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5775
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5776
        val2 = __intVal(anInteger);
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5777
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5778
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5779
        if (!val2) goto bad;
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5780
    }
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5781
    rslt = val1 - val2;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5782
    RETURN(__MKUINT((unsigned)rslt));
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5783
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5784
  bad: ;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5785
%}.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5786
    self primitiveFailed.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5787
! !
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5788
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5789
!Integer methodsFor:'special modulo bit operators'!
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5790
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5791
asSigned32
23930
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5792
    "return a 32-bit integer with my bit-pattern. 
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5793
     For protocol completeness."
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5794
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5795
    ^ self
23930
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5796
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5797
    "Modified (comment): / 17-03-2019 / 12:08:09 / Claus Gittinger"
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5798
!
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5799
22069
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5800
asUnsigned128
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5801
    "return a 128-bit integer with my bit-pattern, but positive.
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5802
     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
  5803
     convert C numbers.
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5804
     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
  5805
     may have to do a bitwise-and on the result"
22069
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5806
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5807
    self < 0 ifTrue:[
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5808
        ^ 16r1000000000000000000000000000000000 + self
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5809
    ].
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5810
    ^ self
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5811
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5812
    "
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5813
     (-1 asUnsigned128) hexPrintString
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5814
     1 asUnsigned128
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5815
     (SmallInteger minVal asUnsigned128) hexPrintString
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5816
     (SmallInteger maxVal asUnsigned128) hexPrintString
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5817
    "
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5818
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5819
    "Created: / 21-07-2017 / 14:44:19 / cg"
23930
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5820
    "Modified (comment): / 17-03-2019 / 12:20:59 / Claus Gittinger"
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5821
!
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5822
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5823
asUnsigned16
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5824
    "return a 16-bit integer with my bit-pattern, but positive.
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5825
     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
  5826
     convert C/Java numbers.
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5827
     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
  5828
     may have to do a bitwise-and on the result"
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5829
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5830
    self < 0 ifTrue:[
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5831
        ^ 16r10000 + self
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5832
    ].
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5833
    ^ self
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5834
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5835
    "
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5836
     (-1 asUnsigned16) hexPrintString
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5837
     1 asUnsigned16
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5838
     (SmallInteger minVal asUnsigned16) hexPrintString
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5839
     (SmallInteger maxVal asUnsigned16) hexPrintString
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5840
    "
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5841
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5842
    "Created: / 17-03-2019 / 12:07:23 / Claus Gittinger"
22069
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5843
!
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5844
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5845
asUnsigned32
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5846
    "return a 32-bit integer with my bit-pattern, but positive.
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5847
     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
  5848
     convert C/Java numbers.
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5849
     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
  5850
     may have to do a bitwise-and on the result"
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5851
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5852
    self < 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5853
        ^ 16r100000000 + self
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5854
    ].
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5855
    ^ self
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5856
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5857
    "
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5858
     (-1 asUnsigned32) hexPrintString
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5859
     1 asUnsigned32
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5860
     (SmallInteger minVal asUnsigned32) hexPrintString
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5861
     (SmallInteger maxVal asUnsigned32) hexPrintString
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5862
    "
23930
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5863
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5864
    "Modified (comment): / 17-03-2019 / 12:20:48 / Claus Gittinger"
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5865
!
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5866
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5867
asUnsigned64
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5868
    "return a 64-bit integer with my bit-pattern, but positive.
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5869
     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
  5870
     convert C/Java numbers.
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5871
     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
  5872
     may have to do a bitwise-and on the result"
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5873
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5874
    self < 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5875
        ^ 16r10000000000000000 + self
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5876
    ].
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5877
    ^ self
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5878
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5879
    "
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5880
     (-1 asUnsigned64) hexPrintString
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5881
     1 asUnsigned64
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5882
     (SmallInteger minVal asUnsigned64) hexPrintString
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5883
     (SmallInteger maxVal asUnsigned64) hexPrintString
24244
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  5884
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  5885
     
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  5886
     (16r-8000000000000000 asUnsigned64) hexPrintString
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  5887
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  5888
     out of range: wrong results
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  5889
     (16r8000000000000000 asUnsigned64) hexPrintString
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  5890
     (16rFFFFFFFFFFFFFFFF asUnsigned64) hexPrintString
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  5891
     (16r-FFFFFFFFFFFFFFFF asUnsigned64) hexPrintString
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5892
    "
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5893
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5894
    "Created: / 26-07-2013 / 13:45:11 / cg"
24244
1ff3f1032799 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24192
diff changeset
  5895
    "Modified (comment): / 03-06-2019 / 18:49:12 / Claus Gittinger"
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5896
!
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5897
22072
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5898
asUnsigned:numBits
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5899
    "return a numBits integer with my bit-pattern, but positive.
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5900
     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
  5901
     convert C/Java numbers, or to generate bitfields from signed numbers
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5902
     (kind of the reverse operation to signExtenedFromBit:).
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5903
     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
  5904
     may have to do a bitwise-and on the result"
22072
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5905
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5906
    self < 0 ifTrue:[
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5907
        ^ (1 bitShift:numBits) + self
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5908
    ].
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5909
    ^ self
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5910
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5911
    "
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5912
     (-1 asUnsigned:64) hexPrintString
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5913
     1 asUnsigned:64
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5914
     (SmallInteger minVal asUnsigned:64) hexPrintString
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5915
     (SmallInteger maxVal asUnsigned:64) hexPrintString
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5916
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5917
     (-1 asUnsigned:4) hexPrintString
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5918
     (-7 asUnsigned:4) hexPrintString
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5919
     (-8 asUnsigned:4) hexPrintString
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5920
     1 asUnsigned:4
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5921
    "
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5922
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5923
    "Created: / 21-07-2017 / 15:11:40 / cg"
23930
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5924
    "Modified (comment): / 17-03-2019 / 12:21:15 / Claus Gittinger"
22072
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5925
!
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5926
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5927
bitAnd_32:anInteger
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5928
    "return a C-semantic 32bit locical-and of the receiver and
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5929
     the argument. Both must be either Small- or LargeIntegers.
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5930
     Returns a signed 32bit number.
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5931
     This (nonstandard) specialized method is provided to allow simulation of
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5932
     bit operations with C semantics."
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5933
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5934
%{  /* NOCONTEXT */
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5935
    int val1, val2, rslt;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5936
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5937
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5938
        val1 = __intVal(self);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5939
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5940
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5941
        if (!val1) goto bad;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5942
    }
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5943
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5944
        val2 = __intVal(anInteger);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5945
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5946
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5947
        if (!val2) goto bad;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5948
    }
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5949
    rslt = val1 & val2;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5950
    RETURN(__MKINT(rslt));
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5951
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5952
  bad: ;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5953
%}.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5954
    self primitiveFailed.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5955
!
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5956
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5957
bitAnd_32u:anInteger
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5958
    "return a C-semantic 32bit locical-and of the receiver and
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5959
     the argument. Both must be either Small- or LargeIntegers.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5960
     Returns an unsigned 32bit number.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5961
     This (nonstandard) specialized method is provided to allow simulation of
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5962
     bit operations with C semantics."
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5963
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5964
%{  /* NOCONTEXT */
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5965
    int val1, val2, rslt;
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5966
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5967
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5968
        val1 = __intVal(self);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5969
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5970
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5971
        if (!val1) goto bad;
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5972
    }
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5973
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5974
        val2 = __intVal(anInteger);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5975
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5976
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5977
        if (!val2) goto bad;
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5978
    }
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5979
    rslt = val1 & val2;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5980
    RETURN(__MKUINT(rslt));
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5981
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5982
  bad: ;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5983
%}.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5984
    self primitiveFailed.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5985
!
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5986
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5987
bitInvert_32
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5988
    "return a C-semantic 32bit complement of the receiver,
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5989
     which must be either Small- or LargeIntegers.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5990
     Returns a signed 32bit number.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5991
     This (nonstandard) specialized method is provided to allow simulation of
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5992
     bit operations with C semantics."
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5993
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5994
%{  /* NOCONTEXT */
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5995
    int val, rslt;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5996
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5997
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5998
        val = __intVal(self);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5999
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6000
        val = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6001
        if (!val) goto bad;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6002
    }
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6003
    rslt = ~val;
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  6004
    RETURN(__MKINT(rslt));
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  6005
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  6006
  bad: ;
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  6007
%}.
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  6008
    self primitiveFailed.
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  6009
!
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  6010
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6011
bitInvert_32u
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6012
    "return a C-semantic 32bit complement of the receiver,
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6013
     which must be either Small- or LargeIntegers.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6014
     Returns an unsigned 32bit number.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6015
     This (nonstandard) specialized method is provided to allow simulation of
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6016
     bit operations with C semantics."
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6017
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6018
%{  /* NOCONTEXT */
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6019
    int val, rslt;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6020
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6021
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6022
        val = __intVal(self);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  6023
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6024
        val = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6025
        if (!val) goto bad;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6026
    }
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6027
    rslt = ~val;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6028
    RETURN(__MKUINT(rslt));
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6029
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6030
  bad: ;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6031
%}.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6032
    self primitiveFailed.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6033
!
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6034
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  6035
bitOr_32:anInteger
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  6036
    "return a C-semantic 32bit locical-or of the receiver and
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  6037
     the argument. Both must be either Small- or LargeIntegers.
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6038
     Returns a signed 32bit number.
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  6039
     This (nonstandard) specialized method is provided to allow simulation of
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6040
     bit operations with C semantics."
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6041
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6042
%{  /* NOCONTEXT */
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6043
    int val1, val2, rslt;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6044
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6045
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6046
        val1 = __intVal(self);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  6047
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6048
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6049
        if (!val1) goto bad;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6050
    }
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6051
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6052
        val2 = __intVal(anInteger);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  6053
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6054
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6055
        if (!val2) goto bad;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6056
    }
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6057
    rslt = val1 | val2;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6058
    RETURN(__MKINT(rslt));
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6059
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6060
  bad: ;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6061
%}.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6062
    self primitiveFailed.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6063
!
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6064
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6065
bitOr_32u:anInteger
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6066
    "return a C-semantic 32bit locical-or of the receiver and
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6067
     the argument. Both must be either Small- or LargeIntegers.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6068
     Returns an unsigned 32bit number.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6069
     This (nonstandard) specialized method is provided to allow simulation of
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6070
     bit operations with C semantics."
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  6071
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  6072
%{  /* NOCONTEXT */
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  6073
    int val1, val2, rslt;
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  6074
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  6075
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6076
        val1 = __intVal(self);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  6077
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6078
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6079
        if (!val1) goto bad;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6080
    }
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6081
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6082
        val2 = __intVal(anInteger);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  6083
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6084
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6085
        if (!val2) goto bad;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6086
    }
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6087
    rslt = val1 | val2;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6088
    RETURN(__MKUINT(rslt));
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6089
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6090
  bad: ;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6091
%}.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6092
    self primitiveFailed.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6093
!
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6094
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6095
bitXor_32:anInteger
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6096
    "return a C-semantic 32bit locical-xor of the receiver and
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6097
     the argument. Both must be either Small- or LargeIntegers.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6098
     Returns a signed 32bit number.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6099
     This (nonstandard) specialized method is provided to allow simulation of
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6100
     bit operations with C semantics."
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6101
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6102
%{  /* NOCONTEXT */
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6103
    int val1, val2, rslt;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6104
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6105
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6106
        val1 = __intVal(self);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  6107
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6108
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6109
        if (!val1) goto bad;
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  6110
    }
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  6111
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6112
        val2 = __intVal(anInteger);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  6113
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6114
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6115
        if (!val2) goto bad;
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  6116
    }
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6117
    rslt = val1 ^ val2;
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  6118
    RETURN(__MKINT(rslt));
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  6119
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  6120
  bad: ;
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  6121
%}.
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  6122
    self primitiveFailed.
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6123
!
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6124
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6125
bitXor_32u:anInteger
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6126
    "return a C-semantic 32bit locical-xor of the receiver and
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6127
     the argument. Both must be either Small- or LargeIntegers.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6128
     Returns an unsigned 32bit number.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6129
     This (nonstandard) specialized method is provided to allow simulation of
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6130
     bit operations with C semantics."
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6131
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6132
%{  /* NOCONTEXT */
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6133
    int val1, val2, rslt;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6134
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6135
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6136
        val1 = __intVal(self);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  6137
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6138
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6139
        if (!val1) goto bad;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6140
    }
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6141
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6142
        val2 = __intVal(anInteger);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  6143
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6144
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6145
        if (!val2) goto bad;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6146
    }
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6147
    rslt = val1 ^ val2;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6148
    RETURN(__MKUINT(rslt));
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6149
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6150
  bad: ;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6151
%}.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  6152
    self primitiveFailed.
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  6153
! !
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  6154
4653
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  6155
!Integer methodsFor:'tracing'!
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  6156
4682
4158042a9c8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4653
diff changeset
  6157
traceInto:aRequestor level:level from:referrer
4653
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  6158
    "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
  6159
4682
4158042a9c8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4653
diff changeset
  6160
    ^ aRequestor traceInteger:self level:level from:referrer
4653
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  6161
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  6162
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  6163
! !
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  6164
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6165
!Integer methodsFor:'truncation & rounding'!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6166
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6167
ceiling
1558
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  6168
    "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
  6169
     For integers, this is the receiver itself."
345
claus
parents: 328
diff changeset
  6170
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6171
    ^ self
1558
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  6172
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  6173
    "Modified: 18.7.1996 / 12:44:06 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6174
!
345
claus
parents: 328
diff changeset
  6175
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6176
compressed
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  6177
    "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
  6178
     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
  6179
     zeros removed. This method is redefined in LargeInteger."
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6180
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  6181
    ^ self
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  6182
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  6183
    "Modified: 5.11.1996 / 14:07:41 / cg"
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 159
diff changeset
  6184
!
40ca7cc6fb9c *** empty log message ***
claus
parents: 159
diff changeset
  6185
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6186
floor
1558
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  6187
    "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
  6188
     For integers, this is the receiver itself."
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6189
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6190
    ^ self
1558
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  6191
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  6192
    "Modified: 18.7.1996 / 12:44:00 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6193
!
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 159
diff changeset
  6194
1866
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6195
fractionPart
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6196
    "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
  6197
     (i.e. the receiver minus its truncated value)
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6198
     Since integers have no fraction, return 0 here."
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6199
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6200
    ^ 0
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6201
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6202
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  6203
     1234.56789 fractionPart
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  6204
     1.2345e6 fractionPart
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  6205
     1000 fractionPart
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  6206
     10000000000000000 fractionPart
1866
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6207
    "
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6208
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6209
    "Modified: 4.11.1996 / 20:27:44 / cg"
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6210
!
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6211
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6212
integerPart
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6213
    "return a number with value from digits before the decimal point.
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  6214
     (i.e. the receiver's truncated value)
1866
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6215
     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
  6216
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6217
    ^ self
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6218
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6219
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  6220
     1234.56789 integerPart
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  6221
     1.2345e6 integerPart
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  6222
     1000 integerPart
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  6223
     10000000000000000 integerPart
1866
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6224
    "
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6225
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6226
    "Modified: 4.11.1996 / 20:28:22 / cg"
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6227
!
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6228
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6229
normalize
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  6230
    "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
  6231
     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
  6232
     zeros removed.
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  6233
     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
  6234
     renamed to #compressed for ST-80 compatibility."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  6235
9261
275c3c6392ed mark obsolete method
Stefan Vogel <sv@exept.de>
parents: 9141
diff changeset
  6236
    <resource: #obsolete>
275c3c6392ed mark obsolete method
Stefan Vogel <sv@exept.de>
parents: 9141
diff changeset
  6237
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  6238
    ^ self compressed
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  6239
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  6240
    "Modified: 5.11.1996 / 14:08:24 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6241
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  6242
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6243
rounded
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6244
    "return the receiver rounded toward the next Integer -
1558
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  6245
     for integers this is the receiver itself."
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6246
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6247
    ^ self
1558
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  6248
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  6249
    "Modified: 18.7.1996 / 12:44:24 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6250
!
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  6251
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6252
truncated
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  6253
    "return the receiver truncated towards zero as Integer
1558
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  6254
     for integers this is the receiver itself."
159
514c749165c3 *** empty log message ***
claus
parents: 132
diff changeset
  6255
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6256
    ^ self
1558
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  6257
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  6258
    "Modified: 18.7.1996 / 12:44:33 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6259
! !
569
7134eb78cf48 readFrom:onError: can now also read from a string
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
  6260
8394
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8335
diff changeset
  6261
!Integer methodsFor:'visiting'!
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8335
diff changeset
  6262
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8335
diff changeset
  6263
acceptVisitor:aVisitor with:aParameter
16723
12737e7310ae comment/format only
Claus Gittinger <cg@exept.de>
parents: 16379
diff changeset
  6264
    "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
  6265
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8335
diff changeset
  6266
    ^ aVisitor visitInteger:self with:aParameter
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8335
diff changeset
  6267
! !
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8335
diff changeset
  6268
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6269
!Integer::ModuloNumber class methodsFor:'documentation'!
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6270
4803
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6271
copyright
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6272
"
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6273
 COPYRIGHT (c) 1999 by eXept Software AG
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6274
              All Rights Reserved
4803
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6275
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6276
 This software is furnished under a license and may be used
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6277
 only in accordance with the terms of that license and with the
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6278
 inclusion of the above copyright notice.   This software may not
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6279
 be provided or otherwise made available to, or used by, any
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6280
 other person.  No title to or ownership of the software is
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6281
 hereby transferred.
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6282
"
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6283
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6284
!
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6285
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6286
documentation
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6287
"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6288
    This is a helper class to perform fast computation of the modulus.
4609
6a1819c7a743 comment
Claus Gittinger <cg@exept.de>
parents: 4522
diff changeset
  6289
    (with big numbers, this does make a difference)
4803
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6290
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6291
    WARNING: this does only work with numbers which have no common
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6292
             divisor (which is true for cryptographic applications).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6293
             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
  6294
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6295
    [author:]
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6296
        Stefan Vogel
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6297
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6298
    [see also:]
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6299
        Integer SmallInteger LargeInsteger
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6300
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6301
    [instance variables:]
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6302
        modulus       the modulus
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6303
        reciprocal    reciprocal of the modulus
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6304
        shift         shift count to cut off some bits
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6305
"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6306
!
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6307
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6308
examples
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6309
"
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6310
                                                                [exBegin]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6311
        17 asModuloNumber modulusOf:38
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6312
                                                                [exEnd]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6313
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6314
                                                                [exBegin]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6315
        38 \\ 17
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6316
                                                                [exEnd]
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6317
"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6318
! !
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6319
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6320
!Integer::ModuloNumber class methodsFor:'instance creation'!
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6321
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6322
modulus:anInteger
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6323
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6324
    ^ self new modulus:anInteger
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6325
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6326
    "Created: / 3.5.1999 / 11:13:15 / stefan"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6327
    "Modified: / 3.5.1999 / 11:18:37 / stefan"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6328
! !
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6329
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6330
!Integer::ModuloNumber methodsFor:'accessing'!
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6331
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6332
modulus
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6333
    "return the modulus"
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6334
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6335
    ^ modulus
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6336
!
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6337
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6338
modulus:n
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6339
    "set the modulus"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6340
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6341
    modulus := n.
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6342
    reciprocal := n integerReciprocal.
4971
aed19001173f Fix ModuloNumber for large numbers.
Stefan Vogel <sv@exept.de>
parents: 4952
diff changeset
  6343
    shift := n highBit negated.
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6344
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6345
    "Created: / 3.5.1999 / 10:02:39 / stefan"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6346
    "Modified: / 3.5.1999 / 14:30:49 / stefan"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6347
! !
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6348
5238
f7a816a660a3 categories
Claus Gittinger <cg@exept.de>
parents: 5210
diff changeset
  6349
!Integer::ModuloNumber methodsFor:'arithmetic'!
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6350
19125
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6351
modulusOf:dividend
4971
aed19001173f Fix ModuloNumber for large numbers.
Stefan Vogel <sv@exept.de>
parents: 4952
diff changeset
  6352
    "compute the aNumber modulo myself.
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6353
     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
  6354
     (When doing arithmethic modulo something).
aed19001173f Fix ModuloNumber for large numbers.
Stefan Vogel <sv@exept.de>
parents: 4952
diff changeset
  6355
     Otherwise do it the long way"
aed19001173f Fix ModuloNumber for large numbers.
Stefan Vogel <sv@exept.de>
parents: 4952
diff changeset
  6356
19125
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6357
    |e t cnt abs isNegative|
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6358
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6359
    isNegative := dividend negative.
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6360
    isNegative ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6361
        abs := dividend negated.
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6362
    ] ifFalse:[
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6363
        abs := dividend.
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6364
    ].
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  6365
    abs < modulus ifTrue:[
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  6366
        ^ abs.
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  6367
    ].
19125
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6368
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6369
"/    self assert:dividend < (modulus * modulus)
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6370
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6371
    "throw off low nbits(modulus)"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6372
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6373
    e := (abs bitShift:shift) * reciprocal.
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6374
    e := (e bitShift:shift) * modulus.
19125
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6375
    e := abs - e.
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6376
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6377
    "this subtract is done max 2 times"
4971
aed19001173f Fix ModuloNumber for large numbers.
Stefan Vogel <sv@exept.de>
parents: 4952
diff changeset
  6378
    cnt := 2.
aed19001173f Fix ModuloNumber for large numbers.
Stefan Vogel <sv@exept.de>
parents: 4952
diff changeset
  6379
    [(t := e - modulus) >= 0] whileTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6380
        e := t.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6381
        cnt == 0 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6382
            "shortcut didn't work, do it the long way"
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6383
            ^ e \\ modulus.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6384
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6385
        cnt := cnt - 1.
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6386
    ].
19125
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6387
    isNegative ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6388
        ^ modulus - e.
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6389
    ].
4971
aed19001173f Fix ModuloNumber for large numbers.
Stefan Vogel <sv@exept.de>
parents: 4952
diff changeset
  6390
    ^ e.
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6391
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6392
    "
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6393
     |m|
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6394
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6395
     m := self new modulus:7.
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6396
     m modulusOf:55.
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6397
    "
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6398
4971
aed19001173f Fix ModuloNumber for large numbers.
Stefan Vogel <sv@exept.de>
parents: 4952
diff changeset
  6399
    "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
  6400
     |m|
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6401
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6402
     m := self new modulus:7.
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6403
     m modulusOf:123456789901398721398721931729371293712943794254034548369328469438562948623498659238469234659823469823658423659823658.
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6404
    "
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6405
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6406
    "SLOW (using standard \\ operation):
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6407
     |m|
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6408
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6409
     m := 123456789901398721398721931729371293712943794254034548369328469438562948623498659238469234659823469823658423659823658.
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6410
     Time millisecondsToRun:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6411
        100000 timesRepeat:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6412
            874928459437598375937451931729371293712943794254034548369328469438562948623498659238469234659823469823658423659823658 \\ m
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6413
        ]
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6414
     ]
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  6415
    "
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6416
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6417
    "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
  6418
     |m|
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6419
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6420
     m := self new modulus:123456789901398721398721931729371293712943794254034548369328469438562948623498659238469234659823469823658423659823658.
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6421
     Time millisecondsToRun:[
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6422
        100000 timesRepeat:[
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6423
            m modulusOf:874928459437598375937451931729371293712943794254034548369328469438562948623498659238469234659823469823658423659823658.
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6424
        ]
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6425
    ].
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6426
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6427
10730930127807326146398409623772237722337234475792709784029183368622308259008044569184592041059181058049458041058052 
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  6428
    "
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6429
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6430
    "Modified: / 3.5.1999 / 14:30:32 / stefan"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6431
! !
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6432
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6433
!Integer::ModuloNumber methodsFor:'converting'!
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6434
19405
Stefan Vogel <sv@exept.de>
parents: 19337
diff changeset
  6435
asInteger
Stefan Vogel <sv@exept.de>
parents: 19337
diff changeset
  6436
    "return the modulus"
Stefan Vogel <sv@exept.de>
parents: 19337
diff changeset
  6437
Stefan Vogel <sv@exept.de>
parents: 19337
diff changeset
  6438
    ^ modulus
Stefan Vogel <sv@exept.de>
parents: 19337
diff changeset
  6439
!
Stefan Vogel <sv@exept.de>
parents: 19337
diff changeset
  6440
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6441
asModuloNumber
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6442
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6443
    ^ self
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6444
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6445
    "Created: / 3.5.1999 / 14:48:27 / stefan"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6446
! !
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6447
1842
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  6448
!Integer class methodsFor:'documentation'!
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6449
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6450
version
18769
Claus Gittinger <cg@exept.de>
parents: 18380
diff changeset
  6451
    ^ '$Header$'
12122
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  6452
!
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  6453
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  6454
version_CVS
18769
Claus Gittinger <cg@exept.de>
parents: 18380
diff changeset
  6455
    ^ '$Header$'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  6456
! !
6858
13919a7544b6 raisedToInteger pushed up
Claus Gittinger <cg@exept.de>
parents: 6682
diff changeset
  6457
14677
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  6458
4996
c3716cebe47b added a bcdConversionErrorSignal
Claus Gittinger <cg@exept.de>
parents: 4973
diff changeset
  6459
Integer initialize!