Integer.st
author Claus Gittinger <cg@exept.de>
Wed, 08 May 2019 13:12:23 +0200
changeset 24119 458b88178b7c
parent 24099 b01e81fcd293
child 24153 88feac51cfbb
permissions -rw-r--r--
#DOCUMENTATION by cg class: Class comment/format in: #revisionTimestamp
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
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7173
diff changeset
  1242
!Integer methodsFor:'Compatibility-Dolphin'!
6249
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1243
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1244
highWord
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1245
    "return the high 16 bits of a 32 bit value"
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1246
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1247
    ^ self bitShift:-16
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1248
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1249
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1250
     (16r12345678 highWord) hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1251
     (16r12345678 lowWord) hexPrintString
6249
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1252
    "
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
lowWord
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1256
    "return the low 16 bits of a 32 bit value"
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1257
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1258
    ^ self bitAnd:16rFFFF
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1259
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1260
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1261
     (16r12345678 lowWord) hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1262
     (16r12345678 highWord) hexPrintString
6249
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1263
    "
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
mask:integerMask set:aBoolean
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1267
    "Answer the result of setting/resetting the specified mask in the receiver."
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1268
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1269
    ^ aBoolean
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1270
            ifTrue:  [self bitOr:integerMask]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1271
            ifFalse: [self bitClear:integerMask]
6249
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1272
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1273
    "turn on the 1-bit:
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1274
         |v|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1275
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1276
         v := 2r0100.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1277
         v mask:1 set:true
6249
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1278
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1279
     turn off the 1-bit:
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1280
         |v|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1281
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1282
         v := 2r0101.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1283
         v mask:1 set:false
6249
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1284
    "
6875
d064224376bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6858
diff changeset
  1285
!
d064224376bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6858
diff changeset
  1286
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1287
maskClear:aMaskInteger
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1288
    "return an integer with all bits cleared which are set in aMaskInteger.
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1289
     An alias for bitClear: for compatibility."
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1290
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1291
    ^ self bitClear:aMaskInteger
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1292
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
     3 maskClear:1
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1295
    "
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1296
!
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
maskSet:aMaskInteger
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1299
    "return an integer with all bits set which are set in aMaskInteger.
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1300
     An alias for bitSet: for compatibility."
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1301
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1302
    ^ self bitOr:aMaskInteger
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1303
!
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1304
6875
d064224376bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6858
diff changeset
  1305
printStringRadix:aRadix padTo:sz
11936
94784c846e12 comments
Claus Gittinger <cg@exept.de>
parents: 11896
diff changeset
  1306
    "return a printed representation of the receiver in a given radix,
15765
6edf4f55277d class: Integer
Claus Gittinger <cg@exept.de>
parents: 15578
diff changeset
  1307
     padded with zeros (at the left) up to size.
11936
94784c846e12 comments
Claus Gittinger <cg@exept.de>
parents: 11896
diff changeset
  1308
     If the printString is longer than size,
94784c846e12 comments
Claus Gittinger <cg@exept.de>
parents: 11896
diff changeset
  1309
     it is returned unchanged (i.e. not truncated).
94784c846e12 comments
Claus Gittinger <cg@exept.de>
parents: 11896
diff changeset
  1310
     See also printStringRadix:size:fill:"
94784c846e12 comments
Claus Gittinger <cg@exept.de>
parents: 11896
diff changeset
  1311
6875
d064224376bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6858
diff changeset
  1312
    ^ self printStringRadix:aRadix size:sz fill:$0
d064224376bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6858
diff changeset
  1313
d064224376bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6858
diff changeset
  1314
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
  1315
     1024 printStringRadix:16 padTo:4
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
  1316
     16rABCD printStringRadix:16 padTo:3
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
  1317
     1024 printStringRadix:2 padTo:16
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
  1318
     1024 printStringRadix:16 padTo:8
6875
d064224376bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6858
diff changeset
  1319
    "
6907
a77451f0c14c dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6875
diff changeset
  1320
!
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
| aNumber
11936
94784c846e12 comments
Claus Gittinger <cg@exept.de>
parents: 11896
diff changeset
  1323
    "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
  1324
     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
  1325
     Notice:
19093
c07a1b2d0e11 #UI_ENHANCEMENT
Claus Gittinger <cg@exept.de>
parents: 19089
diff changeset
  1326
        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
  1327
        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
  1328
        For integers, use bitOr: to make the intention explicit.
19094
784b51cf4213 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19093
diff changeset
  1329
        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
  1330
6907
a77451f0c14c dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6875
diff changeset
  1331
    ^ self bitOr:aNumber
a77451f0c14c dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6875
diff changeset
  1332
a77451f0c14c dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6875
diff changeset
  1333
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1334
     14 | 1
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1335
     9 & 8
6907
a77451f0c14c dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6875
diff changeset
  1336
    "
6249
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1337
! !
fa8cb1110cef dolphin
Claus Gittinger <cg@exept.de>
parents: 6195
diff changeset
  1338
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7173
diff changeset
  1339
!Integer methodsFor:'Compatibility-Squeak'!
4867
3bb80fe9bb8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4830
diff changeset
  1340
12122
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  1341
asByteArray
15937
ff395b64b43a class: Integer
Claus Gittinger <cg@exept.de>
parents: 15911
diff changeset
  1342
    "return my hexBytes in MSB.
ff395b64b43a class: Integer
Claus Gittinger <cg@exept.de>
parents: 15911
diff changeset
  1343
     Do not use:
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1344
        This is a very stupid squeak-compatibility method,
21993
73aa16ebc889 #DOCUMENTATION by mawalch
mawalch
parents: 21938
diff changeset
  1345
        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
  1346
15567
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  1347
    ^ self digitBytesMSB
21993
73aa16ebc889 #DOCUMENTATION by mawalch
mawalch
parents: 21938
diff changeset
  1348
73aa16ebc889 #DOCUMENTATION by mawalch
mawalch
parents: 21938
diff changeset
  1349
    "Modified (comment): / 11-07-2017 / 16:13:03 / mawalch"
12122
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  1350
!
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  1351
12147
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1352
asByteArrayOfSize:size
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1353
    "return my hexBytes in MSB, optionally padded at the left with zeros"
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1354
12122
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  1355
    "(((
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1356
        | repeats number |
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1357
        repeats := 1000000.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1358
        number := 123456789123456789123456789123456789123456789123456789.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1359
         [repeats timesRepeat: (number asByteArrayOfSize: 1024) ] timeToRun.
12122
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  1360
     )))"
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  1361
15567
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  1362
    | bytes bytesSize|
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  1363
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  1364
    bytes := self digitBytesMSB.
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  1365
    bytesSize := bytes size.
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  1366
    size < bytesSize ifTrue: [
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1367
        ^ ConversionError raiseRequestWith:self errorString:'number too big for ', size asString
14796
242490a39283 class: Integer
Stefan Vogel <sv@exept.de>
parents: 14767
diff changeset
  1368
    ].
15567
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  1369
    ^ (ByteArray new:size)
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1370
            replaceFrom:size-bytesSize+1 to:size with:bytes startingAt:1.
12147
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1371
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1372
    "
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1373
     123 asByteArrayOfSize:1 #[123]
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1374
     123 asByteArrayOfSize:2 #[0 123]
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1375
     123 asByteArrayOfSize:4 #[0 0 0 123]
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1376
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1377
     255 asByteArrayOfSize:1 #[255]
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1378
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  1379
     256 asByteArrayOfSize:1
12147
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1380
     256 asByteArrayOfSize:2
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1381
     256 asByteArrayOfSize:4
22567
8c44c87bd949 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22561
diff changeset
  1382
     256 asByteArrayOfSize:8
12147
307dfa8e44c4 changed:
Claus Gittinger <cg@exept.de>
parents: 12122
diff changeset
  1383
    "
12122
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  1384
!
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  1385
4867
3bb80fe9bb8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4830
diff changeset
  1386
atRandom
3bb80fe9bb8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4830
diff changeset
  1387
    "return a random number between 1 amd myself"
3bb80fe9bb8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4830
diff changeset
  1388
8573
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1389
    ^ self atRandom:Random.
8572
3e649d2e3167 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8461
diff changeset
  1390
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
     100 atRandom
3e649d2e3167 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8461
diff changeset
  1393
     1000 atRandom
3e649d2e3167 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8461
diff changeset
  1394
    "
4867
3bb80fe9bb8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4830
diff changeset
  1395
!
4376
8df0935ac5b1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4278
diff changeset
  1396
8573
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1397
atRandom:aRandomGenerator
15456
9535b5c74e85 class: Integer
Stefan Vogel <sv@exept.de>
parents: 15273
diff changeset
  1398
    "return a random number between 1 and myself"
8573
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1399
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1400
    self < 1 ifTrue:[^ self].
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1401
    ^ aRandomGenerator nextIntegerBetween:1 and:self
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1402
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1403
    "
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1404
     100 atRandom:(Random new)
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1405
     1000 atRandom:(Random new)
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1406
    "
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1407
!
240f0fa27d20 +atRandom:
Claus Gittinger <cg@exept.de>
parents: 8572
diff changeset
  1408
22600
ca4fea0b5b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22567
diff changeset
  1409
bitShiftMagnitude:shift
ca4fea0b5b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22567
diff changeset
  1410
    ^ self bitShift:shift.
ca4fea0b5b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22567
diff changeset
  1411
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
     -1 bitShiftMagnitude:1
ca4fea0b5b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22567
diff changeset
  1414
     -2 bitShift:-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
    "
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
14385
1bb6b27c59f9 added: #printLeftPaddedWith:to:base:
Claus Gittinger <cg@exept.de>
parents: 14294
diff changeset
  1419
printLeftPaddedWith:padChar to:size base:base
1bb6b27c59f9 added: #printLeftPaddedWith:to:base:
Claus Gittinger <cg@exept.de>
parents: 14294
diff changeset
  1420
    "prints left-padded"
1bb6b27c59f9 added: #printLeftPaddedWith:to:base:
Claus Gittinger <cg@exept.de>
parents: 14294
diff changeset
  1421
1bb6b27c59f9 added: #printLeftPaddedWith:to:base:
Claus Gittinger <cg@exept.de>
parents: 14294
diff changeset
  1422
    ^ (self printStringRadix:base) leftPaddedTo:size with:padChar
1bb6b27c59f9 added: #printLeftPaddedWith:to:base:
Claus Gittinger <cg@exept.de>
parents: 14294
diff changeset
  1423
1bb6b27c59f9 added: #printLeftPaddedWith:to:base:
Claus Gittinger <cg@exept.de>
parents: 14294
diff changeset
  1424
    "
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  1425
     1234 printPaddedWith:$0 to:4 base:16
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  1426
     1234 printLeftPaddedWith:$0 to:4 base:16
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  1427
     128 printLeftPaddedWith:$0 to:2 base:16
14385
1bb6b27c59f9 added: #printLeftPaddedWith:to:base:
Claus Gittinger <cg@exept.de>
parents: 14294
diff changeset
  1428
    "
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
11858
8baf5d75506e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11793
diff changeset
  1431
printPaddedWith:padChar to:size base:base
14385
1bb6b27c59f9 added: #printLeftPaddedWith:to:base:
Claus Gittinger <cg@exept.de>
parents: 14294
diff changeset
  1432
    "attention: prints right-padded; see printLeftPadded."
1bb6b27c59f9 added: #printLeftPaddedWith:to:base:
Claus Gittinger <cg@exept.de>
parents: 14294
diff changeset
  1433
11858
8baf5d75506e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11793
diff changeset
  1434
    ^ (self printStringRadix:base) paddedTo:size with:padChar
8baf5d75506e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11793
diff changeset
  1435
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
     1234 printPaddedWith:$0 to:4 base:16
8baf5d75506e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11793
diff changeset
  1438
    "
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
4376
8df0935ac5b1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4278
diff changeset
  1441
printStringBase:base
4867
3bb80fe9bb8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4830
diff changeset
  1442
    "return my printString in a base;
3bb80fe9bb8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4830
diff changeset
  1443
     same as printStringRadix:"
3bb80fe9bb8f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4830
diff changeset
  1444
4376
8df0935ac5b1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4278
diff changeset
  1445
    ^ self printStringRadix:base
12284
a6e7b47c08c4 comment/format in: #printStringBase:
Claus Gittinger <cg@exept.de>
parents: 12280
diff changeset
  1446
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
     1234 printStringBase:16
a6e7b47c08c4 comment/format in: #printStringBase:
Claus Gittinger <cg@exept.de>
parents: 12280
diff changeset
  1449
    "
9068
ad6967cff1b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9057
diff changeset
  1450
!
ad6967cff1b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9057
diff changeset
  1451
9125
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1452
printStringHex
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1453
    "return my printString in base 16;
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1454
     same as printStringRadix:"
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1455
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1456
    ^ self printStringRadix:16
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1457
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
     4096 printStringHex
73e759072361 i pushed up;
Claus Gittinger <cg@exept.de>
parents: 9069
diff changeset
  1460
    "
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
9068
ad6967cff1b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9057
diff changeset
  1463
printStringRoman
9069
e5ba0dc84a53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9068
diff changeset
  1464
    "return my roman printString;
e5ba0dc84a53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9068
diff changeset
  1465
     almost the same as romanPrintString:"
e5ba0dc84a53 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9068
diff changeset
  1466
9068
ad6967cff1b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9057
diff changeset
  1467
    "funny - although the romans did not have negative numbers - squeak has"
ad6967cff1b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9057
diff changeset
  1468
    self negative ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1469
        ^ '-' , self negated romanPrintString
9068
ad6967cff1b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9057
diff changeset
  1470
    ].
ad6967cff1b4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9057
diff changeset
  1471
    ^ self romanPrintString
12280
b2bbbfd2444e added: #raisedTo:modulo:
Stefan Vogel <sv@exept.de>
parents: 12255
diff changeset
  1472
!
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
raisedTo:exp modulo:mod
b2bbbfd2444e added: #raisedTo:modulo:
Stefan Vogel <sv@exept.de>
parents: 12255
diff changeset
  1475
    ^ self raisedTo:exp mod:mod
4376
8df0935ac5b1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4278
diff changeset
  1476
! !
8df0935ac5b1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4278
diff changeset
  1477
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7173
diff changeset
  1478
!Integer methodsFor:'Compatibility-V''Age'!
927
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1479
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1480
<< aNumber
7155
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  1481
    "V'Age compatibility: left shift"
927
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1482
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1483
    ^ self bitShift:aNumber
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1484
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1485
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1486
     1 << 5
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1487
     64 << -5
927
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1488
    "
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1489
!
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
>> aNumber
7155
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  1492
    "V'Age compatibility: right shift"
927
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1493
22213
8b482a0c44a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22166
diff changeset
  1494
    ^ self rightShift:aNumber
927
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1495
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1496
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1497
     1 >> -5
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1498
     64 >> 5
927
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1499
    "
22213
8b482a0c44a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22166
diff changeset
  1500
8b482a0c44a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22166
diff changeset
  1501
    "Modified: / 25-08-2017 / 12:32:47 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1502
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1503
22600
ca4fea0b5b62 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22567
diff changeset
  1504
4423
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1505
!Integer methodsFor:'bcd conversion'!
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1506
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1507
decodeFromBCD
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1508
    "return a number representing the value of the BCD encoded receiver."
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1509
4424
f0f658ed8995 bcd support
Claus Gittinger <cg@exept.de>
parents: 4423
diff changeset
  1510
    |v rslt multiplier nibble|
4423
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1511
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1512
    v := self.
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1513
    rslt := 0.
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1514
    multiplier := 1.
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1515
    [v > 0] whileTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1516
        nibble := v bitAnd:16r0F.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1517
        nibble > 9 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1518
            ^ BCDConversionErrorSignal
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1519
                    raiseRequestWith:self
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1520
                    errorString:'bad BCD coded value'
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1521
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1522
        rslt := rslt + (nibble * multiplier).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1523
        multiplier := multiplier * 10.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1524
        v := v bitShift:-4.
4423
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1525
    ].
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1526
    ^ rslt
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1527
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1528
    "
4949
4c0462bd4d6a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4921
diff changeset
  1529
     16r1234567890123 decodeFromBCD
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1530
     16r1073741823 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1531
     16r1073741824 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1532
     16r1073741825 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1533
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1534
     16r55 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1535
     16r127 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1536
     16r800000 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1537
     16r8000000 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1538
     16r80000000 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1539
     16r800000000 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1540
     16r127567890 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1541
     16r1234567890 decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1542
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1543
     16r5A decodeFromBCD
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1544
     16rFF decodeFromBCD
4423
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1545
    "
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1546
4996
c3716cebe47b added a bcdConversionErrorSignal
Claus Gittinger <cg@exept.de>
parents: 4973
diff changeset
  1547
    "Modified: / 15.11.1999 / 20:37:20 / cg"
4423
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1548
!
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
encodeAsBCD
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1551
    "return a BCD encoded number representing the same value as the
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1552
     receiver."
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1553
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1554
    |v rslt shift|
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1555
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1556
    v := self.
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1557
    rslt := shift := 0.
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1558
    [v > 0] whileTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1559
        rslt := rslt + ((v \\ 10) bitShift:shift).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1560
        shift := shift + 4.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1561
        v := v // 10.
4423
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1562
    ].
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1563
    ^ rslt
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1564
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1565
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1566
     55 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1567
     127 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
     8912345 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1570
     89123456 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1571
     891234567 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1572
     900000000 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1573
     1073741823 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1574
     1073741824 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1575
     1073741825 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1576
     1891234567 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1577
     8912345678 encodeAsBCD hexPrintString
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1578
     1234567890 encodeAsBCD hexPrintString
4423
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1579
    "
2a478882f765 bcd support
Claus Gittinger <cg@exept.de>
parents: 4376
diff changeset
  1580
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
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1583
!Integer methodsFor:'bit operators'!
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1584
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1585
allMask:aMaskInteger
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1586
    "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
  1587
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1588
    ^ (self bitAnd:aMaskInteger) == aMaskInteger
4643
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1589
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1590
    "2r00001111 allMask:2r00000001"
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1591
    "2r00001111 allMask:2r00011110"
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1592
    "2r00001111 allMask:2r00000000"
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1593
!
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1594
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1595
anyMask:aMaskInteger
4643
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1596
    "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
  1597
     (somewhat incorrect, if the mask is zero)"
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1598
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1599
    ^ (self bitAnd:aMaskInteger) ~~ 0
4643
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1600
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1601
    "2r00001111 anyMask:2r00000001"
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1602
    "2r00001111 anyMask:2r11110000"
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1603
!
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  1604
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1605
bitAnd:aMaskInteger
357
claus
parents: 356
diff changeset
  1606
    "return the bitwise-and of the receiver and the argument, anInteger.
claus
parents: 356
diff changeset
  1607
     This is a general and slow implementation, walking over the bytes of
claus
parents: 356
diff changeset
  1608
     the receiver and the argument."
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1609
927
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1610
    |n "{ Class: SmallInteger }"
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1611
     result byte|
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1612
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1613
    aMaskInteger isInteger ifFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1614
        ^ aMaskInteger bitAndFromInteger:self.
6358
706234560a0b allow double dispatch for bit* operations
Claus Gittinger <cg@exept.de>
parents: 6249
diff changeset
  1615
    ].
706234560a0b allow double dispatch for bit* operations
Claus Gittinger <cg@exept.de>
parents: 6249
diff changeset
  1616
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1617
    n := (aMaskInteger digitLength) min:(self digitLength).
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1618
    result := self class basicNew numberOfDigits:n.
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1619
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1620
    1 to:n do:[:index |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1621
        byte := (aMaskInteger digitAt:index) bitAnd:(self digitAt:index).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1622
        result digitAt:index put:byte.
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1623
    ].
3162
c7c8af356ff2 dont hardcode the numberof bytes (use maxBytes for alpha);
Claus Gittinger <cg@exept.de>
parents: 3138
diff changeset
  1624
    (byte == 0 or:[n <= SmallInteger maxBytes]) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1625
        ^ result compressed
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1626
    ].
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1627
    ^ result
357
claus
parents: 356
diff changeset
  1628
claus
parents: 356
diff changeset
  1629
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1630
     (16r112233445566778899 bitAnd:16rFF                ) printStringRadix:16
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1631
     (16r112233445566778899 bitAnd:16rFFFFFFFFFFFFFFFF00) printStringRadix:16
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1632
     (16r112233445566778899 bitAnd:16rFF0000000000000000) printStringRadix:16
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1633
     (16r112233445566778899 bitAnd:16r00000000000000FFFF) printStringRadix:16
357
claus
parents: 356
diff changeset
  1634
    "
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  1635
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  1636
    "Modified: 5.11.1996 / 14:06:26 / cg"
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1637
!
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  1638
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1639
bitClear:aMaskInteger
19071
2941ec17cf5d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19068
diff changeset
  1640
    "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
  1641
     returning the receiver with bits of the argument cleared.
19071
2941ec17cf5d #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19068
diff changeset
  1642
     (i.e. the same as self bitAnd:aMaskInteger bitInvert).
3884
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1643
     This is a general and slow implementation, walking over the bytes of
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1644
     the receiver and the argument."
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1645
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1646
    |n "{ Class: SmallInteger }"
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1647
     result byte|
3188
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  1648
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1649
    n := (aMaskInteger digitLength) max:(self digitLength).
3884
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1650
    result := self class basicNew numberOfDigits:n.
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1651
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1652
    1 to:n do:[:index |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1653
        byte :=  (self digitAt:index) bitClear:(aMaskInteger digitAt:index).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1654
        result digitAt:index put:byte.
3884
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1655
    ].
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1656
    (byte == 0 or:[n <= SmallInteger maxBytes]) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1657
        ^ result compressed
3884
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1658
    ].
ddda4144e331 fixed bitClear
ca
parents: 3874
diff changeset
  1659
    ^ result
3188
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  1660
!
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  1661
11492
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1662
bitCount
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1663
    "return the number of 1-bits in the receiver"
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1664
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1665
    |n "{ Class: SmallInteger }"
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1666
     cnt byte|
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1667
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1668
    n := self digitLength.
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1669
    cnt := 0.
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1670
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1671
    1 to:n do:[:index |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1672
        byte := self digitAt:index.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1673
        cnt := cnt + (byte bitCount)
11492
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1674
    ].
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1675
    ^ cnt
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1676
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1677
     "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  1678
      2r100000000000000000000000000000000000000000000000000000000001 bitCount
11492
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1679
      2r111111111111111111111111111111111111111111111111111111111111111111 bitCount
13914
725916ddad3f comment/format
Claus Gittinger <cg@exept.de>
parents: 13907
diff changeset
  1680
      100 factorial bitCount -> 207
725916ddad3f comment/format
Claus Gittinger <cg@exept.de>
parents: 13907
diff changeset
  1681
      1000 factorial bitCount -> 3788
11492
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1682
     "
13914
725916ddad3f comment/format
Claus Gittinger <cg@exept.de>
parents: 13907
diff changeset
  1683
725916ddad3f comment/format
Claus Gittinger <cg@exept.de>
parents: 13907
diff changeset
  1684
    "Modified (comment): / 09-01-2012 / 19:51:00 / cg"
11492
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1685
!
4532fa5c3224 +bitCount
Claus Gittinger <cg@exept.de>
parents: 11491
diff changeset
  1686
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1687
bitDeinterleave:n
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1688
    "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
  1689
     This is the inverse operation from bitInterleave: - see comment there.
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1690
     i.e. if count is 3,
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1691
     and the receiver's bits are
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1692
        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
  1693
     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
  1694
        aN ... a2 a1 a0
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1695
        bN ... b2 b1 b0 
22222
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1696
        cN ... c2 c1 c0."
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1697
     
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1698
    |v shift tuple|
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1699
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1700
    tuple := Array new:n withAll:0.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1701
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1702
    shift := 0.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1703
    v := self.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1704
    [ v > 0 ] whileTrue:[
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1705
        1 to:n do:[:i |
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1706
            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
  1707
            v := v rightShift:1.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1708
        ].
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1709
        shift := shift + 1.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1710
    ].
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1711
    ^ tuple
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1712
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1713
    "
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1714
     (2r1100 bitInterleaveWith:2r1001) -> 2r11100001
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1715
     (2r11000110 bitInterleaveWith:2r10011100 and:2r10100101) -> 2r111100001010010111100001.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1716
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1717
     2r11100001 bitDeinterleave:2
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1718
     
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1719
     (2r11000110 bitInterleaveWith:2r10011100 and:2r10100101) 
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1720
     (198 bitInterleaveWith:156 and:165) bitDeinterleave:3
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1721
    "
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1722
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1723
    "Created: / 28-08-2017 / 15:02:31 / cg"
22222
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1724
    "Modified (comment): / 28-08-2017 / 18:45:21 / cg"
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1725
!
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1726
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1727
bitInterleaveWith:anInteger
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1728
    "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
  1729
     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
  1730
     with bits of the argument (at even bit positions).
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
     Thus, if the bits of the receiver are
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1733
        aN ... a2 a1 a0
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1734
     and those of the argument are:
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1735
        bN ... b2 b1 b0
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1736
     the result is
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1737
        bN aN ... b2 a2 b1 a1 b0 a0.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1738
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1739
     Morton numbers are great to linearize 2D coordinates
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1740
     eg. to sort 2D points by distances"    
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1741
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1742
    "/ a 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
  1743
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1744
    |a b shift ma mb val|
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1745
22222
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1746
    self assert:(self >= 0).
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1747
    self assert:(a >= 0).
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1748
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1749
    a := self.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1750
    b := anInteger.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1751
    val := 0.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1752
    shift := 0.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1753
    [ (a == 0) and:[b == 0]] whileFalse:[
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1754
        "/ strip off 4 bits from each...
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1755
        "/ 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
  1756
        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
  1757
                at:((b bitAnd:2r1111)+1).
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1758
        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
  1759
                at:((a bitAnd:2r1111)+1).
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1760
        val := val bitOr:((ma bitOr:mb) bitShift:shift).
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1761
        shift := shift + 8.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1762
        a := a rightShift:4.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1763
        b := b rightShift:4.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1764
    ].
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1765
    ^ val.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1766
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1767
    "
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1768
     (2r11000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1769
     bitInterleaveWith:2r10010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) 
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1770
        -> 2r1101001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1771
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1772
     (2r11000101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1773
     bitInterleaveWith:2r10010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) 
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1774
        -> 2r1101001000010001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
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
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1777
    "Created: / 28-08-2017 / 14:33:08 / cg"
22222
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1778
    "Modified: / 28-08-2017 / 19:19:31 / cg"
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1779
!
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1780
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1781
bitInterleaveWith:integer1 and:integer2
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1782
    "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
  1783
     by interleaving bits of the receiver with bits of the arguments.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1784
     Thus, if the bits of the receiver are
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1785
        aN ... a2 a1 a0
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1786
     and those of the integer1 are:
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1787
        bN ... b2 b1 b0
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1788
     and those of the integer2 are:
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1789
        cN ... c2 c1 c0
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1790
     the result is
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1791
        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
  1792
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1793
     Morton3 numbers are great to linearize 3D coordinates
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1794
     eg. to sort 3D points by distances"    
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1795
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1796
    |a b c shift ma mb mc val|
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1797
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1798
    a := self.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1799
    b := integer1.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1800
    c := integer2.
22469
6058c02151eb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22460
diff changeset
  1801
    self assert:(a >= 0).
6058c02151eb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22460
diff changeset
  1802
    self assert:(b >= 0).
6058c02151eb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22460
diff changeset
  1803
    self assert:(c >= 0).
6058c02151eb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22460
diff changeset
  1804
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1805
    val := 0.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1806
    shift := 0.
22469
6058c02151eb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22460
diff changeset
  1807
    [ a ~~ 0 or:[b ~~ 0 or:[c ~~ 0]] ] whileTrue:[
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1808
        "/ strip off 4 bits from each...
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1809
        "/ 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
  1810
        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
  1811
                at:((c bitAnd:2r1111)+1).
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1812
        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
  1813
                at:((b bitAnd:2r1111)+1).
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1814
        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
  1815
                at:((a bitAnd:2r1111)+1).
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1816
        val := val bitOr:(((ma bitOr:mb) bitOr:mc) bitShift:shift).
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1817
        shift := shift + 12.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1818
        a := a rightShift:4.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1819
        b := b rightShift:4.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1820
        c := c rightShift:4.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1821
    ].
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1822
    ^ val.
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1823
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1824
    "
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1825
     (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
  1826
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1827
     (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
  1828
     (1 bitInterleaveWith:1 and:16)
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1829
     
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1830
     ((1<<31) bitInterleaveWith:(1<<31) and:(1<<31)) bitDeinterleave:3
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1831
     ((1<<31) bitInterleaveWith:(1<<63) and:(1<<95)) bitDeinterleave:3
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1832
    "
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1833
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1834
    "Created: / 28-08-2017 / 14:33:04 / cg"
22222
d58f6ee4f7fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22219
diff changeset
  1835
    "Modified: / 28-08-2017 / 19:19:25 / cg"
22469
6058c02151eb #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22460
diff changeset
  1836
    "Modified: / 19-01-2018 / 11:29:04 / stefan"
22219
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1837
!
3dadc5038ad8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22213
diff changeset
  1838
3455
2b19e1e70adc added bitInvert for LargeIntegers (positive only)
Claus Gittinger <cg@exept.de>
parents: 3395
diff changeset
  1839
bitInvert
2b19e1e70adc added bitInvert for LargeIntegers (positive only)
Claus Gittinger <cg@exept.de>
parents: 3395
diff changeset
  1840
    "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
  1841
     This does not really make sense for negative largeIntegers,
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  1842
     since the digits are stored as absolute value.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  1843
     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
  1844
4614
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1845
"/    ^ -1 - self
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1846
15841
7c222b07168f class: Integer
Stefan Vogel <sv@exept.de>
parents: 15775
diff changeset
  1847
    |n      "{ Class: SmallInteger }"
7c222b07168f class: Integer
Stefan Vogel <sv@exept.de>
parents: 15775
diff changeset
  1848
     byte   "{ Class: SmallInteger }"
7c222b07168f class: Integer
Stefan Vogel <sv@exept.de>
parents: 15775
diff changeset
  1849
     result|
4614
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1850
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1851
    n := self digitLength.
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1852
    result := self class basicNew numberOfDigits:n.
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1853
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1854
    1 to:n do:[:index |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1855
        byte := self digitAt:index.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1856
        byte := byte bitInvert bitAnd:16rFF.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1857
        result digitAt:index put:byte.
4614
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1858
    ].
15841
7c222b07168f class: Integer
Stefan Vogel <sv@exept.de>
parents: 15775
diff changeset
  1859
    (byte == 0 or:[n <= SmallInteger maxBytes]) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1860
        "if last byte is zero we can normalize"
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1861
        ^ result compressed
4614
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1862
    ].
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1863
    ^ result
14d5ce4bf117 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4611
diff changeset
  1864
19068
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1865
    "
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1866
     16rff bitInvert bitAnd:16rff
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1867
     16rffffffff bitInvert
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1868
     16rff00ff00 bitInvert hexPrintString
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1869
    "
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1870
!
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1871
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1872
bitInvertByte
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1873
    "return a new integer, where the low 8 bits are masked and complemented.
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1874
     This returns an unsigned version of what bitInvert would return.
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1875
     (i.e. same as self bitInvert bitAnd:16rFF)"
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1876
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1877
    ^ (self digitAt:1) bitInvert bitAnd:16rFF
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1878
    
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1879
    "
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1880
     16rff bitInvert
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1881
     16rff bitInvertByte
67c57cd1b6fc #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19067
diff changeset
  1882
    "
3455
2b19e1e70adc added bitInvert for LargeIntegers (positive only)
Claus Gittinger <cg@exept.de>
parents: 3395
diff changeset
  1883
!
2b19e1e70adc added bitInvert for LargeIntegers (positive only)
Claus Gittinger <cg@exept.de>
parents: 3395
diff changeset
  1884
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1885
bitOr:aMaskInteger
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1886
    "return the bitwise-or of the receiver and the argument, anInteger.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1887
     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
  1888
     the receiver and the argument.
0c79d2fbcf16 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23055
diff changeset
  1889
     It is redefined in concrete subclasses (especially SmallInteger) for performance."
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1890
927
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1891
    |n "{ Class: SmallInteger }"
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  1892
     result byte|
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1893
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1894
    aMaskInteger isInteger ifFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1895
        ^ aMaskInteger bitOrFromInteger:self.
6358
706234560a0b allow double dispatch for bit* operations
Claus Gittinger <cg@exept.de>
parents: 6249
diff changeset
  1896
    ].
706234560a0b allow double dispatch for bit* operations
Claus Gittinger <cg@exept.de>
parents: 6249
diff changeset
  1897
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  1898
    n := (aMaskInteger digitLength) max:(self digitLength).
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1899
    result := self class basicNew numberOfDigits:n.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1900
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1901
    1 to:n do:[:index |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1902
        byte := (aMaskInteger digitAt:index) bitOr:(self digitAt:index).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  1903
        result digitAt:index put:byte.
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1904
    ].
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1905
"/ no need to normalize - if the operands were correct
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1906
"/    byte == 0 ifTrue:[
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1907
"/        ^ result compressed
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1908
"/    ].
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  1909
    ^ result
23118
0c79d2fbcf16 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23055
diff changeset
  1910
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1911
    "
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1912
        16rFFFFFFFFFFFFFFFFFFFF0 bitOr:1.0
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1913
        16rFFFFFFFFFFFFFFFFFFFF0 bitOr:1.0s1
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1914
        16rFFFFFFFFFFFFFFFFFFFF0 bitOr:1.1
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1915
    "
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1916
23118
0c79d2fbcf16 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23055
diff changeset
  1917
    "Modified (comment): / 20-06-2018 / 14:47:43 / Claus Gittinger"
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1918
    "Modified (comment): / 01-11-2018 / 12:10:27 / Stefan Vogel"
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1919
!
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1920
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1921
bitReversed
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1922
    "swap (i.e. reverse) bits in an integer
23994
e4e3b75162ad #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23992
diff changeset
  1923
     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
  1924
     Warning: 
e4e3b75162ad #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23992
diff changeset
  1925
        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
  1926
        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
  1927
        Better use one of the bitReversedXX methods.
e4e3b75162ad #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23992
diff changeset
  1928
        This my vanish or be replaced by something better"
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1929
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1930
    |n "{ Class: SmallInteger }"
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1931
     result byte|
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1932
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1933
    n := self digitLength.
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1934
    result := self class basicNew numberOfDigits:n.
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1935
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1936
    1 to:n do:[:index |
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1937
        byte := (self digitAt:index) bitReversed8.
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1938
        result digitAt:n+1-index put:byte.
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1939
    ].
23992
3dc2d660853d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23980
diff changeset
  1940
    (byte == 0 or:[n <= SmallInteger maxBytes]) ifTrue:[
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1941
        ^ result compressed
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1942
    ].
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1943
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1944
    ^ result
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
    "
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1947
     2r1001 asLargeInteger bitReversed printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1948
     2r10011101 asLargeInteger bitReversed printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1949
     2r111110011101 asLargeInteger bitReversed printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1950
     2r11111001110100000000000000000000000000000000000000000001  bitReversed printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1951
     -1 asLargeInteger bitReversed printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1952
    "
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
    "Created: / 01-11-2018 / 11:22:42 / Stefan Vogel"
23994
e4e3b75162ad #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23992
diff changeset
  1955
    "Modified (comment): / 27-03-2019 / 18:28:42 / Claus Gittinger"
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1956
!
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1957
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1958
bitReversed16
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1959
    "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
  1960
     the high bits are ignored and cleared in the result
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1961
     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
  1962
23999
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1963
    |rslt|
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1964
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1965
    rslt := (self digitAt:2) bitReversed8.
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1966
    rslt := rslt bitOr:((self digitAt:1) bitReversed8 bitShift:8).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1967
    ^ rslt.
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1968
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1969
    "
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1970
     16r8000 bitReversed16  
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1971
     16r87654321 bitReversed16 printStringRadix:2
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1972
     16rFEDCBA987654321 bitReversed16 printStringRadix:2
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1973
    "
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1974
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1975
    "Created: / 01-11-2018 / 11:34:51 / Stefan Vogel"
24005
813a3a6e3af4 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23999
diff changeset
  1976
    "Modified (comment): / 27-03-2019 / 15:14:45 / stefan"
23496
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
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1979
bitReversed32
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1980
    "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
  1981
     the high bits are ignored and cleared in the result
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1982
     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
  1983
23999
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1984
    |rslt|
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1985
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1986
    rslt := (self digitAt:4) bitReversed8.
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1987
    rslt := rslt bitOr:((self digitAt:3) bitReversed8 bitShift:8).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1988
    rslt := rslt bitOr:((self digitAt:2) bitReversed8 bitShift:16).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1989
    rslt := rslt bitOr:((self digitAt:1) bitReversed8 bitShift:24).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1990
    ^ rslt.
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1991
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1992
    "
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  1993
     16r80000000 bitReversed32
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1994
     2r11111001110100000000000000000000000000000000000000000001  bitReversed32 printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1995
     -1 asLargeInteger bitReversed32 printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1996
    "
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1997
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  1998
    "Created: / 01-11-2018 / 11:35:54 / Stefan Vogel"
24005
813a3a6e3af4 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23999
diff changeset
  1999
    "Modified (comment): / 27-03-2019 / 15:14:39 / stefan"
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2000
!
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2001
23992
3dc2d660853d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23980
diff changeset
  2002
bitReversed64
24005
813a3a6e3af4 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23999
diff changeset
  2003
    "swap (i.e. reverse) the low 64 bits in an integer
813a3a6e3af4 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23999
diff changeset
  2004
     the high bits are ignored and cleared in the result
23992
3dc2d660853d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23980
diff changeset
  2005
     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
  2006
23999
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2007
    |rslt|
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2008
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2009
    rslt := (self digitAt:8) bitReversed8.
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2010
    rslt := rslt bitOr:((self digitAt:7) bitReversed8 bitShift:8).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2011
    rslt := rslt bitOr:((self digitAt:6) bitReversed8 bitShift:16).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2012
    rslt := rslt bitOr:((self digitAt:5) bitReversed8 bitShift:24).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2013
    rslt := rslt bitOr:((self digitAt:4) bitReversed8 bitShift:32).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2014
    rslt := rslt bitOr:((self digitAt:3) bitReversed8 bitShift:40).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2015
    rslt := rslt bitOr:((self digitAt:2) bitReversed8 bitShift:48).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2016
    rslt := rslt bitOr:((self digitAt:1) bitReversed8 bitShift:56).
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2017
    ^ rslt.
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2018
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
     16r80000000 bitReversed32
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2021
     16r80000000 bitReversed64
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2022
     16r8000000000000000 bitReversed64
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2023
     2r11111001110100000000000000000000000000000000000000000001  bitReversed32 printStringRadix:2
ced7327500f6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23994
diff changeset
  2024
     -1 asLargeInteger bitReversed32 printStringRadix:2
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
    "Created: / 01-11-2018 / 11:35:54 / Stefan Vogel"
24005
813a3a6e3af4 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23999
diff changeset
  2028
    "Modified (comment): / 27-03-2019 / 15:14:33 / stefan"
23992
3dc2d660853d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23980
diff changeset
  2029
!
3dc2d660853d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23980
diff changeset
  2030
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2031
bitReversed8
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2032
    "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
  2033
     the high bits are ignored and cleared in the result
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2034
     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
  2035
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2036
    ^ (self digitAt:1) bitReversed8.
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2037
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2038
    "
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2039
     2r1001 asLargeInteger bitReversed8 printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2040
     2r10011101 asLargeInteger bitReversed8 printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2041
     2r111110011101 asLargeInteger bitReversed8 printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2042
     2r11111001110100000000000000000000000000000000000000000001  bitReversed8 printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2043
     -1 asLargeInteger bitReversed8 printStringRadix:2
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2044
    "
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2045
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  2046
    "Created: / 01-11-2018 / 11:32:58 / Stefan Vogel"
24005
813a3a6e3af4 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 23999
diff changeset
  2047
    "Modified (comment): / 27-03-2019 / 15:14:54 / stefan"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2048
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2049
85
claus
parents: 77
diff changeset
  2050
bitShift:shiftCount
claus
parents: 77
diff changeset
  2051
    "return the value of the receiver shifted by shiftCount bits;
claus
parents: 77
diff changeset
  2052
     leftShift if shiftCount > 0; rightShift otherwise.
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2053
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2054
     Notice: the result of bitShift: on negative receivers is not
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2055
             defined in the language standard (since the implementation
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2056
             is free to choose any internal representation for integers)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2057
             However, ST/X preserves the sign."
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2058
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2059
    |result
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2060
     prev       "{ Class: SmallInteger }"
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2061
     next       "{ Class: SmallInteger }"
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2062
     byte       "{ Class: SmallInteger }"
359
claus
parents: 357
diff changeset
  2063
     byte2      "{ Class: SmallInteger }"
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2064
     bitShift   "{ Class: SmallInteger }"
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2065
     revShift   "{ Class: SmallInteger }"
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2066
     digitShift "{ Class: SmallInteger }"
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3036
diff changeset
  2067
     nn         "{ Class: SmallInteger }"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3036
diff changeset
  2068
     nDigits    "{ Class: SmallInteger }" |
85
claus
parents: 77
diff changeset
  2069
6358
706234560a0b allow double dispatch for bit* operations
Claus Gittinger <cg@exept.de>
parents: 6249
diff changeset
  2070
    shiftCount isInteger ifFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2071
        ^ shiftCount bitShiftFromInteger:self.
6358
706234560a0b allow double dispatch for bit* operations
Claus Gittinger <cg@exept.de>
parents: 6249
diff changeset
  2072
    ].
706234560a0b allow double dispatch for bit* operations
Claus Gittinger <cg@exept.de>
parents: 6249
diff changeset
  2073
85
claus
parents: 77
diff changeset
  2074
    shiftCount > 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2075
        "left shift"
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2076
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2077
        nDigits := self digitLength.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2078
        digitShift := shiftCount // 8.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2079
        bitShift := shiftCount \\ 8.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2080
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2081
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2082
         modulo 8 shifts can be done faster ...
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2083
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2084
        bitShift == 0 ifTrue:[
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2085
            nn := nDigits + digitShift.
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2086
            result := self class basicNew numberOfDigits:nn sign:self sign.
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2087
            result digitBytes replaceFrom:(digitShift + 1) to:nn with:self digitBytes.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2088
            "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2089
             no normalize needed, since receiver was already normalized
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2090
            "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2091
            ^ result
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2092
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2093
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2094
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2095
         less-than-8 shifts can be done faster ...
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2096
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2097
        digitShift == 0 ifTrue:[
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2098
            nn := nDigits+1.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2099
            result := self class basicNew numberOfDigits:nn sign:self sign.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2100
            prev := 0.
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2101
            1 to:nDigits do:[:index |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2102
                byte := self digitAt:index.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2103
                byte := (byte bitShift:bitShift) bitOr:prev.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2104
                result digitAt:index put:(byte bitAnd:16rFF).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2105
                prev := byte bitShift:-8.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2106
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2107
            result digitAt:nn put:prev.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2108
            "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2109
             might have stored a 0-byte ...
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2110
            "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2111
            prev == 0 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2112
                ^ result compressed
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2113
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2114
            ^ result.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2115
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2116
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2117
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2118
         slow case ...
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2119
        "
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2120
        nn := nDigits + digitShift + 1.
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2121
        result := self class basicNew numberOfDigits:nn sign:self sign.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2122
        byte := self digitAt:1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2123
        byte := (byte bitShift:bitShift) bitAnd:16rFF.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2124
        result digitAt:(digitShift + 1) put:byte.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2125
        revShift := -8 + bitShift.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2126
        2 to:nDigits do:[:index |
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2127
            byte := self digitAt:index.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2128
            byte2 := self digitAt:index-1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2129
            byte := byte bitShift:bitShift.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2130
            byte2 := byte2 bitShift:revShift.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2131
            byte := (byte bitOr:byte2) bitAnd:16rFF.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2132
            result digitAt:(index + digitShift) put:byte.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2133
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2134
        byte2 := self digitAt:nDigits.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2135
        byte2 := (byte2 bitShift:revShift) bitAnd:16rFF.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2136
        result digitAt:(nDigits + digitShift + 1) put:byte2.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2137
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2138
         might have stored a 0-byte ...
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2139
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2140
        byte2 == 0 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2141
            ^ result compressed
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2142
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2143
        ^ result
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2144
    ].
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2145
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2146
    shiftCount < 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2147
        "right shift"
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2148
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2149
        nDigits := self digitLength.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2150
        digitShift := shiftCount negated // 8.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2151
        bitShift := shiftCount negated \\ 8.
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2152
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2153
        digitShift >= nDigits ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2154
            ^ 0
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2155
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2156
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2157
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2158
         modulo 8 shifts can be done faster ...
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2159
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2160
        bitShift == 0 ifTrue:[
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2161
            nn := nDigits-digitShift.
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2162
            result := self class basicNew numberOfDigits:nn sign:self sign.
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2163
            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
  2164
            nn <= SmallInteger maxBytes ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2165
                ^ result compressed
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2166
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2167
            ^ result
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2168
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2169
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2170
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2171
         less-than-8 shifts can be done faster ...
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2172
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2173
        digitShift == 0 ifTrue:[
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2174
            result := self class basicNew numberOfDigits:nDigits sign:self sign.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2175
            prev := 0.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2176
            bitShift := bitShift negated.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2177
            revShift := 8 + bitShift.
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2178
            nDigits to:1 by:-1 do:[:index |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2179
                byte := self digitAt:index.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2180
                next := (byte bitShift:revShift) bitAnd:16rFF.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2181
                byte := (byte bitShift:bitShift) bitOr:prev.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2182
                result digitAt:index put:(byte bitAnd:16rFF).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2183
                prev := next.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2184
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2185
            ^ result compressed
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2186
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2187
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2188
        "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2189
         slow case ...
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2190
        "
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2191
        nn := nDigits-digitShift.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2192
        result := self class basicNew numberOfDigits:nn sign:self sign.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2193
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2194
        prev := 0.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2195
        bitShift := bitShift negated.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2196
        revShift := 8 + bitShift.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2197
        nn := digitShift + 1.
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  2198
        nDigits to:nn by:-1 do:[:index |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2199
            byte := self digitAt:index.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2200
            next := (byte bitShift:revShift) bitAnd:16rFF.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2201
            byte := (byte bitShift:bitShift) bitOr:prev.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2202
            result digitAt:(index - digitShift) put:byte.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2203
            prev := next.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2204
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2205
        "the last stored byte ..."
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2206
        ^ result compressed
85
claus
parents: 77
diff changeset
  2207
    ].
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2208
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2209
    ^ self "no shift"
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  2210
3638
edf314b220d2 fixed #bitShift: (right)
Claus Gittinger <cg@exept.de>
parents: 3455
diff changeset
  2211
    "Modified: / 8.7.1998 / 12:45:24 / cg"
4151
6d6971c27567 Some speedups.
Stefan Vogel <sv@exept.de>
parents: 4142
diff changeset
  2212
    "Modified: / 5.5.1999 / 16:05:05 / stefan"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2213
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2214
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  2215
bitTest:aMaskInteger
5782
dcc037e5bdbf comment change
Claus Gittinger <cg@exept.de>
parents: 5496
diff changeset
  2216
    "return true, if any bit from aMask is set in the receiver.
dcc037e5bdbf comment change
Claus Gittinger <cg@exept.de>
parents: 5496
diff changeset
  2217
     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
  2218
     is non-0, false otherwise.
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2219
     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
  2220
     the receiver and the argument. 
0c79d2fbcf16 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23055
diff changeset
  2221
     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
  2222
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2223
    |n "{ Class: SmallInteger }"
4278
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2224
     byte|
1407
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2225
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  2226
    n := (aMaskInteger digitLength) min:(self digitLength).
1407
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2227
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2228
    1 to:n do:[:index |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2229
        byte := (aMaskInteger digitAt:index) bitAnd:(self digitAt:index).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2230
        byte ~~ 0 ifTrue:[^ true].
1407
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2231
    ].
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2232
    ^ false
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2233
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2234
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2235
     16r112233445566778899 bitTest:16rFF
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2236
     16r112233445566778800 bitTest:16rFF
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2237
     16r112233445566778899 bitTest:16rFFFFFFFFFFFFFFFF00
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2238
     16r112233445566778899 bitTest:16rFF0000000000000000
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2239
     16r112233445566778899 bitTest:16r00000000000000FFFF
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2240
     16r1234567800000000 bitTest:16r8000000000000000
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2241
     16r8765432100000000 bitTest:16r8000000000000000
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2242
     16r12345678 bitTest:16r80000000
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2243
     16r87654321 bitTest:16r80000000
1407
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2244
    "
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2245
23118
0c79d2fbcf16 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23055
diff changeset
  2246
    "Modified: / 06-06-1999 / 15:10:33 / cg"
0c79d2fbcf16 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23055
diff changeset
  2247
    "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
  2248
!
6c278dcd5570 added #bitTest: for general integers
Claus Gittinger <cg@exept.de>
parents: 1337
diff changeset
  2249
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2250
bitXor:anInteger
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2251
    "return the bitwise-or of the receiver and the argument, anInteger.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2252
     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
  2253
     the receiver and the argument.
0c79d2fbcf16 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23055
diff changeset
  2254
     It is redefined in concrete subclasses (especially SmallInteger) for performance."
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2255
927
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  2256
    |n "{ Class: SmallInteger }"
8d8edf9df0ae fixed \\ vs. rem: and // vs. quo: stupidities;
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  2257
     result byte|
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2258
6358
706234560a0b allow double dispatch for bit* operations
Claus Gittinger <cg@exept.de>
parents: 6249
diff changeset
  2259
    anInteger isInteger ifFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2260
        ^ anInteger bitXorFromInteger:self.
6358
706234560a0b allow double dispatch for bit* operations
Claus Gittinger <cg@exept.de>
parents: 6249
diff changeset
  2261
    ].
706234560a0b allow double dispatch for bit* operations
Claus Gittinger <cg@exept.de>
parents: 6249
diff changeset
  2262
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2263
    n := (anInteger digitLength) max:(self digitLength).
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2264
    result := self class basicNew numberOfDigits:n.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2265
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2266
    1 to:n do:[:index |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2267
        byte := (anInteger digitAt:index) bitXor:(self digitAt:index).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2268
        result digitAt:index put:byte.
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2269
    ].
3993
a5a09b2d36cd oops - bitXor: did not always compress the result.
Claus Gittinger <cg@exept.de>
parents: 3908
diff changeset
  2270
    (byte == 0 or:[n <= SmallInteger maxBytes]) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2271
        ^ result compressed
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2272
    ].
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2273
    ^ result
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2274
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2275
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2276
     (16r112233445566778899 bitXor:16rFF                ) printStringRadix:16 '112233445566778866'
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2277
     (16r112233445566778899 bitXor:16rFFFFFFFFFFFFFFFF00) printStringRadix:16 'EEDDCCBBAA99887799'
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2278
     (16r112233445566778899 bitXor:16rFF0000000000000000) printStringRadix:16 'EE2233445566778899'
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2279
     (16r112233445566778899 bitXor:16r112233445566778800) printStringRadix:16
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2280
    "
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  2281
23118
0c79d2fbcf16 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23055
diff changeset
  2282
    "Modified: / 05-11-1996 / 14:06:40 / cg"
0c79d2fbcf16 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23055
diff changeset
  2283
    "Modified (comment): / 20-06-2018 / 14:47:55 / Claus Gittinger"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2284
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2285
12670
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2286
changeMask:mask to:aBooleanOrNumber
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2287
    "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
  2288
     depending on aBooleanOrNumber.
14404
49a54ea47bf8 comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 14403
diff changeset
  2289
     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
  2290
     but a new number is returned. Should be named #withMask:changedTo:"
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2291
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2292
    (aBooleanOrNumber == 0 or:[aBooleanOrNumber == false]) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2293
        ^ self bitClear:mask
12670
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2294
    ].
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2295
    ^ self bitOr:mask
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2296
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2297
    "
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  2298
     (16r3fffffff changeMask:16r80 to:0) hexPrintString
12670
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2299
     (16r3fff0000 changeMask:16r80 to:1) hexPrintString
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2300
    "
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2301
!
0e449ea30526 added: #changeMask:to:
Claus Gittinger <cg@exept.de>
parents: 12652
diff changeset
  2302
4278
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2303
even
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2304
    "return true if the receiver is even"
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2305
9401
65f884297c68 speed up #even and #odd
Stefan Vogel <sv@exept.de>
parents: 9316
diff changeset
  2306
    ^ (self bitAt:1) == 0
4278
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2307
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2308
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2309
     16r112233445566778899 even
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2310
     16r112233445566778800 even
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2311
     1 even
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2312
     2 even
4278
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2313
    "
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2314
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2315
    "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
  2316
!
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2317
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2318
highBit
19600
aca6c5fb9d70 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19553
diff changeset
  2319
    "return the bitIndex of the highest bit set. 
aca6c5fb9d70 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19553
diff changeset
  2320
     The returned bitIndex starts at 1 for the least significant bit.
6481
d5c94e93067c highBit now returns 0 if no bit is set.
Claus Gittinger <cg@exept.de>
parents: 6480
diff changeset
  2321
     Returns 0 if no bit is set."
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2322
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2323
    |byteNr highByte|
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2324
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2325
    byteNr := self digitLength.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  2326
    byteNr == 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2327
        ^ 0
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  2328
    ].
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2329
    highByte := self digitAt:byteNr.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2330
    ^ (byteNr - 1) * 8 + highByte highBit
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2331
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2332
    "
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  2333
     0 highBit
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  2334
     -1 highBit
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2335
     (1 bitShift:1) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2336
     (1 bitShift:30) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2337
     (1 bitShift:31) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2338
     (1 bitShift:32) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2339
     (1 bitShift:33) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2340
     (1 bitShift:64) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2341
     (1 bitShift:1000) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2342
     (1 bitShift:1000) negated highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2343
     ((1 bitShift:64)-1) highBit
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2344
    "
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  2345
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  2346
    "Modified: / 3.5.1999 / 09:20:57 / stefan"
2429
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2347
!
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2348
16071
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2349
leftShift:shiftCount
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2350
    "return the value of the receiver shifted left by shiftCount bits;
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2351
     leftShift if shiftCount > 0; rightShift otherwise.
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2352
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2353
     Notice: the result of bitShift: on negative receivers is not
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2354
             defined in the language standard (since the implementation
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2355
             is free to choose any internal representation for integers)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2356
             However, ST/X preserves the sign."
16071
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2357
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2358
    ^ self bitShift:shiftCount
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2359
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2360
    "
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2361
     16r100000000 leftShift:1
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2362
     16r100000000 negated leftShift:1
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2363
    "
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2364
!
52286691aad5 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16040
diff changeset
  2365
2429
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2366
lowBit
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2367
    "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
  2368
     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
  2369
     Returns 0 if no bit is set."
2429
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2370
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2371
    |maxBytes "{ Class: SmallInteger }"
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2372
     byte|
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2373
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2374
    maxBytes := self digitLength.
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2375
    1 to:maxBytes do:[:byteIndex |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2376
        byte := self digitAt:byteIndex.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2377
        byte ~~ 0 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2378
            ^ (byteIndex-1)*8 + (byte lowBit)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2379
        ].
2429
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2380
    ].
6480
4ff7f2af25fc lowBit now returns 0 if no bit is set.
Claus Gittinger <cg@exept.de>
parents: 6358
diff changeset
  2381
    ^ 0 "/ should not happen
2429
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2382
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2383
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2384
     0 lowBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2385
     1 lowBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2386
     (1 bitShift:1) lowBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2387
     (1 bitShift:1) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2388
     (1 bitShift:30) lowBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2389
     (1 bitShift:30) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2390
     (1 bitShift:31) lowBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2391
     (1 bitShift:31) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2392
     (1 bitShift:32) lowBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2393
     (1 bitShift:32) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2394
     (1 bitShift:33) lowBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2395
     (1 bitShift:33) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2396
     (1 bitShift:64) lowBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2397
     (1 bitShift:64) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2398
     (1 bitShift:1000) lowBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2399
     (1 bitShift:1000) highBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2400
     ((1 bitShift:64)-1) lowBit
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2401
     ((1 bitShift:64)-1) highBit
2429
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2402
    "
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2403
1aeeadaa162e added #lowBit
Claus Gittinger <cg@exept.de>
parents: 2428
diff changeset
  2404
    "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
  2405
!
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2406
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  2407
noMask:aMaskInteger
4643
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  2408
    "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
  2409
17248
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  2410
    ^ (self bitAnd:aMaskInteger) == 0
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  2411
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  2412
    "
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  2413
     2r00001111 noMask:2r00000001
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  2414
     2r00001111 noMask:2r11110000
bfcd59da8904 class: Integer
Claus Gittinger <cg@exept.de>
parents: 17037
diff changeset
  2415
    "
4643
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  2416
!
48ee5b949c81 moved anyMask, allMask ... from SmallInteger.
Claus Gittinger <cg@exept.de>
parents: 4614
diff changeset
  2417
4278
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2418
odd
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2419
    "return true if the receiver is odd"
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2420
9401
65f884297c68 speed up #even and #odd
Stefan Vogel <sv@exept.de>
parents: 9316
diff changeset
  2421
    ^ (self bitAt:1) == 1
4278
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2422
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2423
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2424
     16r112233445566778899 odd
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2425
     16r112233445566778800 odd
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2426
     1 odd
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2427
     2 odd
4278
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2428
    "
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2429
78c34fcd9952 added #odd and #even for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 4169
diff changeset
  2430
    "Created: / 6.6.1999 / 15:00:55 / cg"
5209
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2431
!
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2432
7155
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2433
rightShift:shiftCount
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2434
    "return the value of the receiver shifted right by shiftCount bits;
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2435
     rightShift if shiftCount > 0; leftShift otherwise.
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2436
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2437
     Notice: the result of bitShift: on negative receivers is not
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2438
             defined in the language standard (since the implementation
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2439
             is free to choose any internal representation for integers)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2440
             However, ST/X preserves the sign."
7155
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2441
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2442
    ^ self bitShift:(shiftCount negated)
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2443
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2444
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2445
     16r100000000 rightShift:1
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2446
     16r100000000 negated rightShift:1
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2447
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2448
     16r100000000 rightShift:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2449
     16r100000000 negated rightShift:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2450
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2451
     16r100000000 rightShift:3
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2452
     16r100000000 negated rightShift:3
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2453
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2454
     ((16r100000000 rightShift:1) rightShift:1) rightShift:1
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2455
     ((16r100000000 negated rightShift:1) rightShift:1) rightShift:1
7155
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2456
    "
19053
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2457
! !
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2458
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2459
!Integer methodsFor:'bit operators - indexed'!
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2460
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2461
bitAt:index
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2462
    "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
  2463
     Notice: the result of bitAt: on negative receivers is not
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2464
             defined in the language standard (since the implementation
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2465
             is free to choose any internal representation for integers)"
19053
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2466
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2467
    |i "{Class: SmallInteger}"|
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2468
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2469
    i := index - 1.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2470
    i < 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2471
        ^ SubscriptOutOfBoundsError
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2472
                raiseRequestWith:index
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2473
                errorString:'index out of bounds'
19053
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2474
    ].
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2475
    ^ (self digitAt:(i // 8 + 1)) bitAt:(i \\ 8 + 1)
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2476
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2477
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2478
     1 bitAt:1                     => 1
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2479
     1 bitAt:2                     => 0
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2480
     1 bitAt:0                     index error
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2481
     2r1000100010001000100010001000100010001000100010001000 bitAt:48 => 1
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2482
     2r1000100010001000100010001000100010001000100010001000 bitAt:47 => 0
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2483
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2484
     (1 bitShift:1000) bitAt:1000  => 0
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2485
     (1 bitShift:1000) bitAt:1001  => 1
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2486
     (1 bitShift:1000) bitAt:1002  => 0
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2487
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2488
     (1 bitShift:30) bitAt:30
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2489
     (1 bitShift:30) bitAt:31
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2490
     (1 bitShift:30) bitAt:32
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2491
     (1 bitShift:31) bitAt:31
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2492
     (1 bitShift:31) bitAt:32
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2493
     (1 bitShift:31) bitAt:33
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2494
     (1 bitShift:32) bitAt:32
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2495
     (1 bitShift:32) bitAt:33
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2496
     (1 bitShift:32) bitAt:34
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2497
     (1 bitShift:64) bitAt:64
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2498
     (1 bitShift:64) bitAt:65
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2499
     (1 bitShift:64) bitAt:66
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2500
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2501
!
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2502
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2503
bitIndicesOfOneBitsDo:aBlock
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2504
    "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
  2505
     The index for the least significant bit is 1."
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2506
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2507
    1 to:self digitLength do:[:i8 |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2508
        |byte|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2509
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2510
        byte := self digitAt:i8.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2511
        byte ~~ 0 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2512
            1 to:8 do:[:i |
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2513
                (byte bitAt:i) == 1 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2514
                    aBlock value:(((i8-1)*8) + i).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2515
                ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2516
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2517
        ]
19053
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2518
    ].
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2519
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2520
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2521
     1 bitIndicesOfOneBitsDo:[:i | Transcript showCR:i].
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2522
     2 bitIndicesOfOneBitsDo:[:i | Transcript showCR:i]
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2523
     4 bitIndicesOfOneBitsDo:[:i | Transcript showCR:i]
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2524
     12 bitIndicesOfOneBitsDo:[:i | Transcript showCR:i]
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2525
     127 bitIndicesOfOneBitsDo:[:i | Transcript showCR:i]
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2526
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2527
!
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2528
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2529
bitIndicesOfOneBitsReverseDo:aBlock
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2530
    "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
  2531
     and ending with the lowest bit.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2532
     The index for the least significant bit is 1."
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2533
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2534
    self digitLength downTo:1 do:[:i8 |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2535
        |byte|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2536
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2537
        byte := self digitAt:i8.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2538
        byte ~~ 0 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2539
            8 downTo:1 do:[:i |
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2540
                (byte bitAt:i) == 1 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2541
                    aBlock value:(((i8-1)*8) + i).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2542
                ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2543
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2544
        ]
19053
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2545
    ].
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2546
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2547
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2548
     1 bitIndicesOfOneBitsReverseDo:[:i | Transcript showCR:i].
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2549
     2 bitIndicesOfOneBitsReverseDo:[:i | Transcript showCR:i]
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2550
     4 bitIndicesOfOneBitsReverseDo:[:i | Transcript showCR:i]
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2551
     12 bitIndicesOfOneBitsReverseDo:[:i | Transcript showCR:i]
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2552
     127 bitIndicesOfOneBitsReverseDo:[:i | Transcript showCR:i]
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2553
    "
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
changeBit:index to:aBooleanOrNumber
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2557
    "return a new number where the specified bit is on or off,
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2558
     depending on aBooleanOrNumber.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2559
     Bits are counted from 1 starting with the least significant.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2560
     The method's name may be misleading: the receiver is not changed,
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2561
     but a new number is returned. Should be named #withBit:changedTo:"
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2562
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2563
    (aBooleanOrNumber == 0 or:[aBooleanOrNumber == false]) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2564
        ^ self clearBit:index
19053
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2565
    ].
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2566
    ^ self setBit:index
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2567
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2568
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2569
     (16r3fffffff changeBit:31 to:1) hexPrintString
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2570
     (16r3fffffff asLargeInteger setBit:31) hexPrintString
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2571
    "
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
clearBit:index
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2575
    "return a new integer where the specified bit is off.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2576
     Bits are counted from 1 starting with the least significant.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2577
     The method's name may be misleading: the receiver is not changed,
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2578
     but a new number is returned. Should be named #withBitCleared:"
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2579
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2580
    |n         "{ Class: SmallInteger }"
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2581
     byteIndex "{ Class: SmallInteger }"
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2582
     bitIndex  "{ Class: SmallInteger }"
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2583
     result byte|
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2584
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2585
    index <= 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2586
        ^ SubscriptOutOfBoundsSignal
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2587
                raiseRequestWith:index
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2588
                errorString:'bit index out of bounds'
19053
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2589
    ].
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2590
    byteIndex := ((index - 1) // 8) + 1.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2591
    n := self digitLength.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2592
    byteIndex > n ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2593
        ^ self
19053
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2594
    ].
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2595
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2596
    result := self simpleDeepCopy.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2597
    bitIndex := ((index - 1) \\ 8) + 1.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2598
    byte := (result digitAt:byteIndex) clearBit:bitIndex.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2599
    result digitAt:byteIndex put:byte.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2600
    (byte == 0 or:[n == byteIndex and:[n <= SmallInteger maxBytes]]) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2601
        ^ result compressed
19053
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2602
    ].
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2603
    ^ result
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2604
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2605
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2606
     3111111111 clearBit:1
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
    "Modified: / 28.7.1998 / 18:35:50 / cg"
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2610
!
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2611
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2612
invertBit:index
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2613
    "return a new number where the specified bit is inverted.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2614
     Bits are counted from 1 starting with the least significant.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2615
     The method's name may be misleading: the receiver is not changed,
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2616
     but a new number is returned. Should be named #withBitInverted:"
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2617
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2618
    index <= 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2619
        ^ SubscriptOutOfBoundsSignal
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2620
                raiseRequestWith:index
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2621
                errorString:'index out of bounds'
19053
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2622
    ].
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2623
    ^ self bitXor:(1 bitShift:index-1)
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2624
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2625
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2626
     0 invertBit:3         => 4 (2r100)
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2627
     0 invertBit:48        => 140737488355328 (2r1000.....000)
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2628
     ((0 invertBit:99) invertBit:100) printStringRadix:2
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2629
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2630
!
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2631
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2632
isBitClear:index
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2633
    "return true if the index' bit is clear; false otherwise.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2634
     Bits are counted from 1 starting with the least significant."
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2635
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2636
    ^ (self bitAt:index) == 0
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2637
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2638
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2639
     5 isBitClear:1       => false
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2640
     5 isBitClear:2       => true
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2641
     5 isBitClear:3       => false
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2642
     5 isBitClear:4       => true
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2643
     5 isBitClear:10000   => true
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2644
     2r0101 isBitClear:2  => true
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2645
     2r0101 isBitClear:1  => false
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2646
     2r0101 isBitClear:0  index error
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2647
    "
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
isBitSet:index
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2651
    "return true if the index' bit is set; false otherwise.
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2652
     Bits are counted from 1 starting with the least significant."
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2653
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2654
    ^ (self bitAt:index) ~~ 0
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2655
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2656
    "
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2657
     5 isBitSet:3       => true
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2658
     2r0101 isBitSet:2  => false
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2659
     2r0101 isBitSet:1  => true
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2660
     2r0101 isBitSet:0  index error
6d26eb081cf8 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19040
diff changeset
  2661
    "
7155
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2662
!
8112e11f850a +rightShift:
Claus Gittinger <cg@exept.de>
parents: 7093
diff changeset
  2663
5209
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2664
setBit:index
8937
4f2508548327 comment
Claus Gittinger <cg@exept.de>
parents: 8913
diff changeset
  2665
    "return a new integer, where the specified bit is on.
5209
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2666
     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
  2667
     The method's name may be misleading: the receiver is not changed,
11499
fa02ab9a83f0 comment
Claus Gittinger <cg@exept.de>
parents: 11496
diff changeset
  2668
     but a new number is returned. Should be named #withBitSet:"
5209
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2669
5496
338c81a04468 index bounds in bit operations;
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
  2670
    index <= 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2671
        ^ SubscriptOutOfBoundsSignal
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2672
                raiseRequestWith:index
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2673
                errorString:'index out of bounds'
5496
338c81a04468 index bounds in bit operations;
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
  2674
    ].
5209
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2675
    ^ self bitOr:(1 bitShift:index-1)
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2676
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2677
    "
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2678
     0 setBit:3         => 4 (2r100)
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2679
     0 setBit:48        => 140737488355328 (2r1000.....000)
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2680
     ((0 setBit:99) setBit:100) printStringRadix:2
5209
3a52e2f97ec4 setBit/clearBit.
Claus Gittinger <cg@exept.de>
parents: 5186
diff changeset
  2681
    "
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2682
! !
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2683
3890
a024811ed304 added #digitByteLength
Claus Gittinger <cg@exept.de>
parents: 3884
diff changeset
  2684
!Integer methodsFor:'byte access'!
a024811ed304 added #digitByteLength
Claus Gittinger <cg@exept.de>
parents: 3884
diff changeset
  2685
12784
3bc5946ade11 added: #byteAt:
Stefan Vogel <sv@exept.de>
parents: 12670
diff changeset
  2686
byteAt:anIndex
3bc5946ade11 added: #byteAt:
Stefan Vogel <sv@exept.de>
parents: 12670
diff changeset
  2687
    "compatibility with ByteArrays etc."
3bc5946ade11 added: #byteAt:
Stefan Vogel <sv@exept.de>
parents: 12670
diff changeset
  2688
3bc5946ade11 added: #byteAt:
Stefan Vogel <sv@exept.de>
parents: 12670
diff changeset
  2689
    ^ self digitAt:anIndex
3bc5946ade11 added: #byteAt:
Stefan Vogel <sv@exept.de>
parents: 12670
diff changeset
  2690
3bc5946ade11 added: #byteAt:
Stefan Vogel <sv@exept.de>
parents: 12670
diff changeset
  2691
    "
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2692
        12345678 byteAt:2
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2693
        12345678 digitBytes at:2
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2694
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2695
        -12345678 byteAt:2
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2696
        -12345678 digitBytes at:2
12784
3bc5946ade11 added: #byteAt:
Stefan Vogel <sv@exept.de>
parents: 12670
diff changeset
  2697
    "
3bc5946ade11 added: #byteAt:
Stefan Vogel <sv@exept.de>
parents: 12670
diff changeset
  2698
!
3bc5946ade11 added: #byteAt:
Stefan Vogel <sv@exept.de>
parents: 12670
diff changeset
  2699
19130
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2700
byteSwapped32
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2701
    "a fallback, in case unimplemented in concrete classes.
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2702
     Not actually used"
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2703
    
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2704
    ^ ((self digitAt:1) bitShift:24)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2705
    + ((self digitAt:2) bitShift:16)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2706
    + ((self digitAt:3) bitShift:8)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2707
    + (self digitAt:4)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2708
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2709
    "
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2710
     16r12345678901234567890 byteSwapped32
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2711
    "
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2712
!
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2713
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2714
byteSwapped64
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2715
    "a fallback, in case unimplemented in concrete classes.
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2716
     Not actually used"
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2717
    
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2718
    ^ ((self digitAt:1) bitShift:56)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2719
    + ((self digitAt:2) bitShift:48)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2720
    + ((self digitAt:3) bitShift:40)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2721
    + ((self digitAt:4) bitShift:32)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2722
    + ((self digitAt:5) bitShift:24)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2723
    + ((self digitAt:6) bitShift:16)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2724
    + ((self digitAt:7) bitShift:8)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2725
    + (self digitAt:8)
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2726
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2727
    "
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2728
     16r1234567890123456789 byteSwapped64 hexPrintString
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2729
    "
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2730
!
3a662cab41dd #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19128
diff changeset
  2731
3890
a024811ed304 added #digitByteLength
Claus Gittinger <cg@exept.de>
parents: 3884
diff changeset
  2732
digitByteLength
19327
723b235f0980 #DOCUMENTATION
Stefan Vogel <sv@exept.de>
parents: 19319
diff changeset
  2733
    <resource: #obsolete>
19316
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2734
    "return the number bytes required for a 2's complement
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2735
     binary representation of this Integer."
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2736
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2737
    self obsoleteMethodWarning:'use signedDigitLength - attention: return value fixed'.
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2738
    ^ self signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2739
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2740
    "
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2741
     -127 digitByteLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2742
     -128 digitByteLength
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2743
     -129 digitByteLength
19315
e11b9d45bb9c #DOCUMENTATION
Stefan Vogel <sv@exept.de>
parents: 19276
diff changeset
  2744
     -32769 digitByteLength
e11b9d45bb9c #DOCUMENTATION
Stefan Vogel <sv@exept.de>
parents: 19276
diff changeset
  2745
     32768 digitByteLength
3890
a024811ed304 added #digitByteLength
Claus Gittinger <cg@exept.de>
parents: 3884
diff changeset
  2746
    "
10488
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2747
!
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2748
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2749
digitBytes
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  2750
    "return a byteArray filled with the receiver's bits
10488
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2751
     (8 bits of the absolute value per element),
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2752
     least significant byte is first"
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2753
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2754
    ^ self subclassResponsibility
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2755
!
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2756
15567
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  2757
digitBytesMSB
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  2758
    "return a byteArray filled with the receiver's bits
15567
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  2759
     (8 bits of the absolute value per element),
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  2760
     most significant byte is first"
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  2761
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  2762
    ^ self subclassResponsibility
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  2763
!
7f314ee34dfb new: #digitBytesMSB
Stefan Vogel <sv@exept.de>
parents: 15559
diff changeset
  2764
10488
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2765
digitBytesMSB:msbFlag
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  2766
    "return a byteArray filled with the receiver's bits
10488
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2767
     (8 bits of the absolute value per element),
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2768
     if msbflag = true, most significant byte is first,
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2769
     otherwise least significant byte is first"
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2770
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2771
    msbFlag ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2772
        ^ self digitBytesMSB.
10488
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2773
    ].
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2774
    ^ self digitBytes
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2775
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2776
    "
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2777
      16r12 digitBytesMSB:true
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2778
      16r1234 digitBytesMSB:true
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2779
      16r1234 digitBytesMSB:false
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2780
      16r12345678 digitBytesMSB:true
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2781
      16r12345678 digitBytesMSB:false
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  2782
    "
14166
ea350ed3d6a9 added: #swapBytes
Stefan Vogel <sv@exept.de>
parents: 14098
diff changeset
  2783
!
ea350ed3d6a9 added: #swapBytes
Stefan Vogel <sv@exept.de>
parents: 14098
diff changeset
  2784
19316
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2785
signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2786
    "return the number bytes required for a 2's complement
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2787
     binary representation of this Integer.
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2788
     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
  2789
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2790
    |absLen "{ Class: SmallInteger }" |
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2791
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2792
    self >= 0 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2793
        absLen := self digitLength.
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2794
        (self digitByteAt:absLen) >= 16r80 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2795
            ^ absLen + 1.
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2796
        ].
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2797
        ^ absLen.
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2798
    ].
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2799
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2800
    absLen := self negated digitLength.
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2801
    (self digitByteAt:absLen) < 16r80 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2802
            ^ absLen + 1
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2803
    ].
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2804
    ^ absLen
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2805
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2806
    "
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2807
     0 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2808
     1 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2809
     126 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2810
     127 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2811
     128 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2812
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2813
     255 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2814
     256 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2815
     257 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2816
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2817
     32767 signedDigitLength    
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2818
     32768 signedDigitLength    
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2819
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2820
     -1 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2821
     -127 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2822
     -128 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2823
     -129 signedDigitLength
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2824
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2825
     -32767 signedDigitLength    
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2826
     -32768 signedDigitLength    
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2827
     -32769 signedDigitLength    
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2828
    "
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2829
!
Claus Gittinger <cg@exept.de>
parents: 19315
diff changeset
  2830
14166
ea350ed3d6a9 added: #swapBytes
Stefan Vogel <sv@exept.de>
parents: 14098
diff changeset
  2831
swapBytes
16886
247352d5de0f class: Integer
Stefan Vogel <sv@exept.de>
parents: 16884
diff changeset
  2832
    "swap bytes pair-wise in a positive integer
247352d5de0f class: Integer
Stefan Vogel <sv@exept.de>
parents: 16884
diff changeset
  2833
     i.e. a.b.c.d -> b.a.d.c
247352d5de0f class: Integer
Stefan Vogel <sv@exept.de>
parents: 16884
diff changeset
  2834
     Swapping of negative integers is undefined and therefore not supported."
16884
1d8ce66b2547 class: Integer
Stefan Vogel <sv@exept.de>
parents: 16874
diff changeset
  2835
1d8ce66b2547 class: Integer
Stefan Vogel <sv@exept.de>
parents: 16874
diff changeset
  2836
    |digitBytes|
1d8ce66b2547 class: Integer
Stefan Vogel <sv@exept.de>
parents: 16874
diff changeset
  2837
1d8ce66b2547 class: Integer
Stefan Vogel <sv@exept.de>
parents: 16874
diff changeset
  2838
    self negative ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2839
        RangeError raiseWith:self errorString:'negative numbers are not supported in #swapBytes'.
16884
1d8ce66b2547 class: Integer
Stefan Vogel <sv@exept.de>
parents: 16874
diff changeset
  2840
    ].
1d8ce66b2547 class: Integer
Stefan Vogel <sv@exept.de>
parents: 16874
diff changeset
  2841
    digitBytes := self digitBytes.
1d8ce66b2547 class: Integer
Stefan Vogel <sv@exept.de>
parents: 16874
diff changeset
  2842
    digitBytes size odd ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2843
        "ByteArray<<#swapBytes needs even number of bytes.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2844
         Add 0 to the most significant position (the end)"
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2845
        digitBytes := digitBytes copyWith:0.
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  2846
16884
1d8ce66b2547 class: Integer
Stefan Vogel <sv@exept.de>
parents: 16874
diff changeset
  2847
    ].
1d8ce66b2547 class: Integer
Stefan Vogel <sv@exept.de>
parents: 16874
diff changeset
  2848
    ^ (LargeInteger digitBytes:digitBytes swapBytes) compressed
14166
ea350ed3d6a9 added: #swapBytes
Stefan Vogel <sv@exept.de>
parents: 14098
diff changeset
  2849
ea350ed3d6a9 added: #swapBytes
Stefan Vogel <sv@exept.de>
parents: 14098
diff changeset
  2850
    "
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2851
        16rFFEE2211 swapBytes hexPrintString
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2852
        16rFFEEAA2211 swapBytes hexPrintString
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2853
        16r2211 swapBytes hexPrintString
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2854
        16rFF3FFFFF swapBytes
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2855
        self assert:(SmallInteger maxVal swapBytes swapBytes == SmallInteger maxVal)
14166
ea350ed3d6a9 added: #swapBytes
Stefan Vogel <sv@exept.de>
parents: 14098
diff changeset
  2856
    "
3890
a024811ed304 added #digitByteLength
Claus Gittinger <cg@exept.de>
parents: 3884
diff changeset
  2857
! !
a024811ed304 added #digitByteLength
Claus Gittinger <cg@exept.de>
parents: 3884
diff changeset
  2858
5238
f7a816a660a3 categories
Claus Gittinger <cg@exept.de>
parents: 5210
diff changeset
  2859
!Integer methodsFor:'coercing & converting'!
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2860
1888
463d49ca22e3 fixedPoint support
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2861
asFixedPoint
463d49ca22e3 fixedPoint support
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2862
    "return the receiver as a fixedPoint number"
463d49ca22e3 fixedPoint support
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2863
6640
2de8925ad2cd fixed asFixedPoint (did return int due to reduce).
Claus Gittinger <cg@exept.de>
parents: 6639
diff changeset
  2864
    ^ FixedPoint basicNew
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2865
        setNumerator:self denominator:1 scale:1
1888
463d49ca22e3 fixedPoint support
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2866
463d49ca22e3 fixedPoint support
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2867
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2868
     100 asFixedPoint
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2869
     100 asFixedPoint + 0.1 asFixedPoint
1888
463d49ca22e3 fixedPoint support
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2870
    "
463d49ca22e3 fixedPoint support
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2871
463d49ca22e3 fixedPoint support
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2872
    "Modified: 5.11.1996 / 15:13:17 / cg"
463d49ca22e3 fixedPoint support
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2873
!
463d49ca22e3 fixedPoint support
Claus Gittinger <cg@exept.de>
parents: 1883
diff changeset
  2874
2141
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2875
asFixedPoint:scale
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2876
    "return the receiver as fixedPoint number, with the given number
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2877
     of post-decimal-point digits."
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2878
6639
d88a51b081ae fixed asFixedPoint (did return int due to reduce).
Claus Gittinger <cg@exept.de>
parents: 6635
diff changeset
  2879
    ^ FixedPoint basicNew
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  2880
        setNumerator:self denominator:1 scale:scale
2141
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2881
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2882
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2883
     100 asFixedPoint:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2884
     100 asFixedPoint + (0.1 asFixedPoint:2)
2141
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2885
    "
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2886
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2887
    "Modified: 10.1.1997 / 20:00:08 / cg"
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2888
!
bba0027204fd added #asFixedPoint:
Claus Gittinger <cg@exept.de>
parents: 2133
diff changeset
  2889
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2890
asFloat
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2891
    "return a Float with same value as myself.
11240
4ce9c8fa3d37 comment
Claus Gittinger <cg@exept.de>
parents: 11223
diff changeset
  2892
     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
  2893
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2894
    ^ Float fromInteger:self
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2895
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2896
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2897
     1234567890 asFloat
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2898
     1234567890 asFloat asInteger
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2899
     12345678901234567890 asFloat
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2900
     12345678901234567890 asFloat asInteger
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2901
    "
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2902
!
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2903
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2904
asFraction
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2905
    "return a Fraction with same value as receiver"
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2906
2794
862ee34a4821 when coercing an integer, do not reduce the result.
Claus Gittinger <cg@exept.de>
parents: 2793
diff changeset
  2907
    ^ 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
  2908
862ee34a4821 when coercing an integer, do not reduce the result.
Claus Gittinger <cg@exept.de>
parents: 2793
diff changeset
  2909
    "Modified: 28.7.1997 / 19:26:06 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2910
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2911
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  2912
asInteger
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2913
    "return the receiver truncated towards zero -
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2914
     for integers this is self"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2915
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2916
    ^ self
1337
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  2917
!
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  2918
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2919
asLargeFloat
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2920
    "return a LargeFloat with same value as myself.
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2921
     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
  2922
     doing this.
624d156e698c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22600
diff changeset
  2923
     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
  2924
23055
321a26366ce6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23053
diff changeset
  2925
    ^ (LargeFloat ? LongFloat ? Float) fromInteger:self
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2926
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2927
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2928
     1234567890 asLargeFloat
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2929
     1234567890 asLargeFloat asInteger
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2930
     12345678901234567890 asLargeFloat
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2931
     12345678901234567890 asLargeFloat asInteger
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2932
    "
23053
624d156e698c #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22600
diff changeset
  2933
23055
321a26366ce6 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23053
diff changeset
  2934
    "Modified: / 07-06-2018 / 16:28:16 / Claus Gittinger"
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2935
!
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2936
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2937
asLongFloat
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2938
    "return a LongFloat with same value as myself.
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2939
     Since longFloats have a limited precision, you usually loose bits when
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2940
     doing this."
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2941
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2942
    ^ LongFloat fromInteger:self
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2943
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2944
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2945
     1234567890 asFloat
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2946
     1234567890 asFloat asInteger
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2947
     12345678901234567890 asFloat
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  2948
     12345678901234567890 asFloat asInteger
7444
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
!
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2951
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  2952
asModuloNumber
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  2953
    "return a precomputed modulo number"
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  2954
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  2955
    ^ ModuloNumber modulus:self.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  2956
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  2957
    "Created: / 3.5.1999 / 14:48:03 / stefan"
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  2958
!
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  2959
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2960
asShortFloat
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2961
    "return a ShortFloat with same value as receiver"
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2962
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2963
    ^ ShortFloat fromInteger:self
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2964
!
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  2965
21822
7f00cd69b534 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21774
diff changeset
  2966
coerce:aNumber
7f00cd69b534 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21774
diff changeset
  2967
    "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
  2968
7f00cd69b534 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21774
diff changeset
  2969
    ^ aNumber asInteger
7f00cd69b534 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21774
diff changeset
  2970
!
7f00cd69b534 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21774
diff changeset
  2971
14043
045fd447ab4d added: #signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 13993
diff changeset
  2972
signExtended24BitValue
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  2973
    "return an integer from sign-extending the 24'th bit.
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  2974
     i.e. interprets the lowest 24 bits as a signed integer,
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  2975
     ignoring higher bits.
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  2976
     This may be useful for communication interfaces"
14043
045fd447ab4d added: #signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 13993
diff changeset
  2977
045fd447ab4d added: #signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 13993
diff changeset
  2978
    ^ (self bitAnd:16rFFFFFF) signExtended24BitValue
045fd447ab4d added: #signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 13993
diff changeset
  2979
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  2980
    "
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  2981
     16r800000 signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  2982
     16r7FFFFF signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  2983
     16rFFFFFF signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  2984
    "
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  2985
14043
045fd447ab4d added: #signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 13993
diff changeset
  2986
    "Modified: / 07-05-1996 / 09:31:57 / cg"
045fd447ab4d added: #signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 13993
diff changeset
  2987
    "Created: / 05-03-2012 / 14:37:55 / cg"
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  2988
    "Modified (comment): / 26-02-2016 / 19:39:52 / cg"
14043
045fd447ab4d added: #signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 13993
diff changeset
  2989
!
045fd447ab4d added: #signExtended24BitValue
Claus Gittinger <cg@exept.de>
parents: 13993
diff changeset
  2990
1337
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  2991
signExtendedByteValue
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  2992
    "return an integer from sign-extending the 8'th bit.
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  2993
     i.e. interprets the lowest 8 bits as a signed integer,
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  2994
     ignoring higher bits.
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  2995
     This may be useful for communication interfaces"
1337
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  2996
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  2997
    ^ (self bitAnd:16rFF) signExtendedByteValue
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  2998
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  2999
    "
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3000
     16r80 signExtendedByteValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3001
     16r7F signExtendedByteValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3002
     16rFF signExtendedByteValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3003
    "
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3004
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3005
    "Created: / 07-05-1996 / 09:31:52 / cg"
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3006
    "Modified (comment): / 26-02-2016 / 19:39:46 / cg"
1337
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  3007
!
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  3008
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3009
signExtendedFromBit:bitNr
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3010
    "return an integer from sign-extending the n'th bit.
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3011
     i.e. interprets the lowest n bits as a signed integer,
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3012
     ignoring higher bits.
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3013
     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
  3014
     This may be useful for communication interfaces.
d4ac55497643 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22072
diff changeset
  3015
     (kind of the reverse operation to asUnsigned:)."
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3016
22070
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3017
    ^ self signExtendedFromMaskBit:(1 bitShift:bitNr-1)
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3018
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3019
    "
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3020
     2r111000111 signExtendedFromBit:3 -> 2r11111....111 -> -1 
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3021
     2r111000110 signExtendedFromBit:3 -> 2r11111....110 -> -2 
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3022
     2r111000101 signExtendedFromBit:3 -> 2r11111....101 -> -3   
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3023
     2r111000100 signExtendedFromBit:3 -> 2r11111....100 -> -4 
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3024
     2r111000000 signExtendedFromBit:3 -> 2r00000....000 -> 0   
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3025
     2r111000011 signExtendedFromBit:3 -> 2r00000....011 -> 3  
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3026
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3027
     16r800008 signExtendedFromBit:4 -> -8 
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3028
     16r7FFF07 signExtendedFromBit:4 -> 7 
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3029
     16r7FFF0F signExtendedFromBit:4 -> -1
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3030
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3031
     16rFFFFFF signExtendedFromBit:8 -> -1
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3032
     16rFFFF7F signExtendedFromBit:8 -> 127
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3033
     16rFFFF80 signExtendedFromBit:8 -> -128
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3034
    "
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3035
22073
d4ac55497643 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22072
diff changeset
  3036
    "Modified (comment): / 21-07-2017 / 15:13:55 / cg"
22070
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3037
!
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3038
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3039
signExtendedFromMaskBit:highBitMask
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3040
    "return an integer from sign-extending the bit defined by highMaskBit,
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3041
     which MUST be a single bit (otherwise, you'll get garbage).
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3042
     i.e. interprets the lowest n bits as a signed integer,
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3043
     ignoring higher bits.
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3044
     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
  3045
     signed values"
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3046
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3047
    |masked|
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  3048
22070
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3049
    masked := self bitAnd:(highBitMask-1).
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3050
    (self bitTest:highBitMask) ifTrue:[
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3051
        ^ masked - highBitMask
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  3052
    ].
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3053
    ^ masked
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3054
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3055
    "
22070
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3056
     2r111000111 signExtendedFromMaskBit:2r100 -> 2r11111....111 -> -1 
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3057
     2r111000110 signExtendedFromMaskBit:2r100 -> 2r11111....110 -> -2 
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3058
     2r111000101 signExtendedFromMaskBit:2r100 -> 2r11111....101 -> -3   
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3059
     2r111000100 signExtendedFromMaskBit:2r100 -> 2r11111....100 -> -4 
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3060
     2r111000000 signExtendedFromMaskBit:2r100 -> 2r00000....000 -> 0   
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3061
     2r111000011 signExtendedFromMaskBit:2r100 -> 2r00000....011 -> 3  
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3062
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3063
     16r800008 signExtendedFromMaskBit:2r1000 -> -8 
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3064
     16r7FFF07 signExtendedFromMaskBit:2r1000 -> 7 
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3065
     16r7FFF0F signExtendedFromMaskBit:2r1000 -> -1
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3066
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3067
     16rFFFFFF signExtendedFromMaskBit:2r10000000 -> -1
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3068
     16rFFFF7F signExtendedFromMaskBit:2r10000000 -> 127
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3069
     16rFFFF80 signExtendedFromMaskBit:2r10000000 -> -128
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3070
    "
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3071
9ff5b5333e3e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22069
diff changeset
  3072
    "Created: / 21-07-2017 / 14:52:12 / cg"
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3073
!
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3074
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3075
signExtendedLongLongValue
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3076
    "return an integer from sign-extending the 64'th bit.
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3077
     i.e. interprets the lowest 64 bits as a signed integer,
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3078
     ignoring higher bits.
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3079
     This may be useful for communication interfaces"
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3080
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3081
    (self bitTest:16r8000000000000000) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3082
        ^ (self bitAnd:16rFFFFFFFFFFFFFFFF)-16r10000000000000000
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  3083
    ].
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3084
    ^ (self bitAnd:16r7FFFFFFFFFFFFFFF)
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3085
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3086
    "
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3087
     16r1238000000000000000 signExtendedLongLongValue
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3088
     16r1237FFFFFFFFFFFFFFF signExtendedLongLongValue
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3089
     16r123FFFFFFFFFFFFFFFF signExtendedLongLongValue
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3090
    "
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3091
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3092
    "Modified (comment): / 26-02-2016 / 19:38:55 / cg"
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3093
!
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3094
15084
910b4913067b class: Integer
Claus Gittinger <cg@exept.de>
parents: 14967
diff changeset
  3095
signExtendedLongValue
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3096
    "return an integer from sign-extending the 32'th bit.
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3097
     i.e. interprets the lowest 32 bits as a signed integer,
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3098
     ignoring higher bits.
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3099
     This may be useful for communication interfaces"
15084
910b4913067b class: Integer
Claus Gittinger <cg@exept.de>
parents: 14967
diff changeset
  3100
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3101
    (self bitTest:16r80000000) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3102
        ^ (self bitAnd:16rFFFFFFFF) - 16r100000000
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  3103
    ].
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3104
    ^ (self bitAnd:16r7FFFFFFF)
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3105
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3106
    "
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3107
     16r80000000 signExtendedLongValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3108
     16r7FFFFFFF signExtendedLongValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3109
     16rFFFFFFFF signExtendedLongValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3110
    "
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3111
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3112
    "Modified (comment): / 26-02-2016 / 19:39:09 / cg"
15084
910b4913067b class: Integer
Claus Gittinger <cg@exept.de>
parents: 14967
diff changeset
  3113
!
910b4913067b class: Integer
Claus Gittinger <cg@exept.de>
parents: 14967
diff changeset
  3114
1337
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  3115
signExtendedShortValue
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3116
    "return an integer from sign-extending the 16'th bit.
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3117
     i.e. interprets the lowest 16 bits as a signed integer,
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3118
     ignoring higher bits.
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3119
     This may be useful for communication interfaces"
1337
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  3120
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  3121
    ^ (self bitAnd:16rFFFF) signExtendedShortValue
e5e00eecd4c9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
  3122
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3123
    "
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3124
     16r8000 signExtendedShortValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3125
     16r7FFF signExtendedShortValue
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3126
     16rFFFF signExtendedShortValue
19062
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3127
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3128
     16r1238000 signExtendedShortValue
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3129
     16r1237FFF signExtendedShortValue
ad646a7ec0b9 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19061
diff changeset
  3130
     16r123FFFF signExtendedShortValue
19061
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3131
    "
Claus Gittinger <cg@exept.de>
parents: 19058
diff changeset
  3132
19257
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3133
    "Modified: / 07-05-1996 / 09:31:57 / cg"
f1937ab25bbf #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19252
diff changeset
  3134
    "Modified (comment): / 26-02-2016 / 19:39:37 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3135
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3136
1976
f6e7094cd3e4 Integer>>hash returns a value clamped to the SmallInteger range
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
  3137
!Integer methodsFor:'comparing'!
f6e7094cd3e4 Integer>>hash returns a value clamped to the SmallInteger range
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
  3138
f6e7094cd3e4 Integer>>hash returns a value clamped to the SmallInteger range
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
  3139
hash
f6e7094cd3e4 Integer>>hash returns a value clamped to the SmallInteger range
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
  3140
    "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
  3141
19553
a1e1e8901461 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 19455
diff changeset
  3142
    ^ 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
  3143
3298
bf837fee7a15 Do not return negative hash values.
Stefan Vogel <sv@exept.de>
parents: 3188
diff changeset
  3144
    "
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3145
        -20000000000000 hash
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3146
         20000000000000 hash
3298
bf837fee7a15 Do not return negative hash values.
Stefan Vogel <sv@exept.de>
parents: 3188
diff changeset
  3147
    "
1976
f6e7094cd3e4 Integer>>hash returns a value clamped to the SmallInteger range
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
  3148
3298
bf837fee7a15 Do not return negative hash values.
Stefan Vogel <sv@exept.de>
parents: 3188
diff changeset
  3149
    "Created: / 14.11.1996 / 12:12:27 / cg"
bf837fee7a15 Do not return negative hash values.
Stefan Vogel <sv@exept.de>
parents: 3188
diff changeset
  3150
    "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
  3151
! !
f6e7094cd3e4 Integer>>hash returns a value clamped to the SmallInteger range
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
  3152
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  3153
12978
6899c32d29a9 added: #addDependent:
Claus Gittinger <cg@exept.de>
parents: 12976
diff changeset
  3154
!Integer methodsFor:'dependents access'!
6899c32d29a9 added: #addDependent:
Claus Gittinger <cg@exept.de>
parents: 12976
diff changeset
  3155
6899c32d29a9 added: #addDependent:
Claus Gittinger <cg@exept.de>
parents: 12976
diff changeset
  3156
addDependent:anObject
23556
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3157
    "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
  3158
     Silently ignore ..."
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3159
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3160
"/    Transcript show:'*** trying to make dependent on an integer: '.
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3161
"/    thisContext sender printOn:Transcript. Transcript cr.
12978
6899c32d29a9 added: #addDependent:
Claus Gittinger <cg@exept.de>
parents: 12976
diff changeset
  3162
6899c32d29a9 added: #addDependent:
Claus Gittinger <cg@exept.de>
parents: 12976
diff changeset
  3163
    "Created: / 28-07-2010 / 20:29:00 / cg"
23556
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3164
    "Modified: / 03-12-2018 / 17:48:53 / Stefan Vogel"
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3165
!
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3166
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3167
onChangeSend:selector to:someOne
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3168
    "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
  3169
     Silently ignore ..."
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3170
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3171
"/    Transcript show:'*** trying to make dependent on an integer: '.
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3172
"/    thisContext sender printOn:Transcript. Transcript cr.
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3173
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3174
    "Created: / 30-11-2018 / 18:02:50 / Stefan Vogel"
2e05c6f6d847 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23496
diff changeset
  3175
    "Modified (comment): / 03-12-2018 / 17:49:05 / Stefan Vogel"
12978
6899c32d29a9 added: #addDependent:
Claus Gittinger <cg@exept.de>
parents: 12976
diff changeset
  3176
! !
6899c32d29a9 added: #addDependent:
Claus Gittinger <cg@exept.de>
parents: 12976
diff changeset
  3177
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3178
!Integer methodsFor:'double dispatching'!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3179
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3180
differenceFromFraction:aFraction
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3181
    "sent when a fraction does not know how to subtract the receiver, an integer"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3182
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3183
    |d|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3184
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3185
    d := aFraction denominator.
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3186
    ^ aFraction class
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3187
        numerator:(aFraction numerator - (self * d))
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3188
        denominator:d
2793
e40dedf51177 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2745
diff changeset
  3189
e40dedf51177 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2745
diff changeset
  3190
    "Modified: 28.7.1997 / 19:08:30 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3191
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3192
11517
e949ec17d9fc double dispatch for time-difference
sr
parents: 11510
diff changeset
  3193
differenceFromTimestamp:aTimestamp
e949ec17d9fc double dispatch for time-difference
sr
parents: 11510
diff changeset
  3194
    "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
  3195
     before aTimestamp"
e949ec17d9fc double dispatch for time-difference
sr
parents: 11510
diff changeset
  3196
e949ec17d9fc double dispatch for time-difference
sr
parents: 11510
diff changeset
  3197
    ^ aTimestamp subtractSeconds:self.
e949ec17d9fc double dispatch for time-difference
sr
parents: 11510
diff changeset
  3198
e949ec17d9fc double dispatch for time-difference
sr
parents: 11510
diff changeset
  3199
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3200
     Timestamp now subtractSeconds:100
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3201
     100 differenceFromTimestamp:Timestamp now
11517
e949ec17d9fc double dispatch for time-difference
sr
parents: 11510
diff changeset
  3202
    "
e949ec17d9fc double dispatch for time-difference
sr
parents: 11510
diff changeset
  3203
!
e949ec17d9fc double dispatch for time-difference
sr
parents: 11510
diff changeset
  3204
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3205
equalFromFraction:aFraction
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3206
    "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
  3207
     if resulting from an arithmetic operation.
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3208
     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
  3209
     allows comparing unnormalized fractions as might appear within the fraction class"
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3210
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3211
    |denominator numerator|
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3212
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3213
    denominator := aFraction denominator.
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3214
    numerator := aFraction numerator.
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3215
    (denominator == 1) ifFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3216
        ^ numerator = (self * denominator)
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3217
    ].
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3218
    ^ numerator = self
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3219
!
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3220
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3221
productFromFraction:aFraction
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3222
    "sent when a fraction does not know how to multiply the receiver, an integer"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3223
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3224
    ^ aFraction class
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3225
        numerator:(self * aFraction numerator)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3226
        denominator:aFraction denominator
2793
e40dedf51177 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2745
diff changeset
  3227
e40dedf51177 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2745
diff changeset
  3228
    "Modified: 28.7.1997 / 19:08:27 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3229
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3230
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3231
quotientFromFraction:aFraction
7444
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  3232
    "Return the quotient of the argument, aFraction and the receiver.
e228b1ba6d6a double dispatching
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
  3233
     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
  3234
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3235
    ^ aFraction class
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3236
        numerator:aFraction numerator
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3237
        denominator:(self * aFraction denominator)
2793
e40dedf51177 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2745
diff changeset
  3238
e40dedf51177 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2745
diff changeset
  3239
    "Modified: 28.7.1997 / 19:08:23 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3240
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3241
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3242
sumFromFraction:aFraction
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3243
    "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
  3244
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3245
    |d|
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3246
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3247
    d := aFraction denominator.
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3248
    ^ aFraction class
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3249
        numerator:(aFraction numerator + (self * d))
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3250
        denominator:d
2793
e40dedf51177 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2745
diff changeset
  3251
e40dedf51177 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2745
diff changeset
  3252
    "Modified: 28.7.1997 / 19:08:11 / cg"
10681
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3253
!
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3254
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3255
sumFromTimestamp:aTimestamp
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3256
    "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
  3257
     after aTimestamp"
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3258
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3259
    ^ aTimestamp addSeconds:self.
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3260
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3261
    "
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3262
     Timestamp now addSeconds:100
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3263
     100 sumFromTimestamp:Timestamp now
835be355e638 adding timeDurations to a timeStamp (double dispatch)
sr
parents: 10488
diff changeset
  3264
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3265
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3266
2428
d54efc515824 better gcd for large integers
Claus Gittinger <cg@exept.de>
parents: 2408
diff changeset
  3267
!Integer methodsFor:'helpers'!
d54efc515824 better gcd for large integers
Claus Gittinger <cg@exept.de>
parents: 2408
diff changeset
  3268
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3269
gcd_helper:anInteger
2428
d54efc515824 better gcd for large integers
Claus Gittinger <cg@exept.de>
parents: 2408
diff changeset
  3270
    "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
  3271
     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
  3272
     larger than the arg."
d54efc515824 better gcd for large integers
Claus Gittinger <cg@exept.de>
parents: 2408
diff changeset
  3273
19251
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3274
    | a b aLowBit bLowBit shift t |
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3275
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3276
    a := self.
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3277
    b := anInteger.
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3278
19251
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3279
    aLowBit := a lowBit - 1.
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3280
    bLowBit := b lowBit - 1.
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3281
    shift := aLowBit min:bLowBit.
22213
8b482a0c44a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22166
diff changeset
  3282
    b := b rightShift:bLowBit.
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3283
    [a = 0] whileFalse:[
22213
8b482a0c44a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22166
diff changeset
  3284
        a := a rightShift:aLowBit.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3285
        a < b ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3286
            t := a. a := b. b := t
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3287
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3288
        a := a - b.
19251
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3289
        aLowBit := a lowBit - 1.
2428
d54efc515824 better gcd for large integers
Claus Gittinger <cg@exept.de>
parents: 2408
diff changeset
  3290
    ].
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3291
    ^ b bitShift:shift
2428
d54efc515824 better gcd for large integers
Claus Gittinger <cg@exept.de>
parents: 2408
diff changeset
  3292
22213
8b482a0c44a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22166
diff changeset
  3293
    "Created: / 01-03-1997 / 16:38:17 / cg"
8b482a0c44a1 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22166
diff changeset
  3294
    "Modified: / 25-08-2017 / 12:33:09 / cg"
2428
d54efc515824 better gcd for large integers
Claus Gittinger <cg@exept.de>
parents: 2408
diff changeset
  3295
! !
d54efc515824 better gcd for large integers
Claus Gittinger <cg@exept.de>
parents: 2408
diff changeset
  3296
10027
36281068b212 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9401
diff changeset
  3297
12565
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3298
!Integer methodsFor:'iteration'!
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3299
23594
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3300
timesCollect:aBlock
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3301
    "syntactic sugar; same as (1 to:self) collect:aBlock"
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3302
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3303
    ^ (1 to:self) collect:aBlock
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3304
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3305
    "
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3306
     10 timesCollect:[:i | i squared]
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3307
    "
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3308
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3309
    "Created: / 09-01-2019 / 17:35:14 / Claus Gittinger"
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3310
!
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3311
12565
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3312
to:stop collect:aBlock
16347
ac28cfa26ec2 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16293
diff changeset
  3313
    "syntactic sugar; same as (self to:stop) collect:aBlock"
12565
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3314
23594
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3315
    ^ (self to:stop) collect:aBlock as:Array
12565
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3316
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3317
    "
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3318
     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
  3319
     10 to:20 collect:[:i | i squared]
12565
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3320
     (10 to:20) collect:[:i | i squared]
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3321
    "
23594
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3322
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3323
    "Modified (format): / 09-01-2019 / 17:51:04 / Claus Gittinger"
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3324
!
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3325
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3326
to:stop collect:aBlock as:collectionClass
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3327
    "syntactic sugar; same as (self to:stop) collect:aBlock"
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3328
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3329
    ^ (self to:stop) collect:aBlock as:collectionClass
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3330
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3331
    "
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3332
     1 to:10 collect:[:i | i squared] as:Set
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3333
    "
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3334
ff0d98899172 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23556
diff changeset
  3335
    "Created: / 09-01-2019 / 17:51:17 / Claus Gittinger"
12565
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3336
! !
11eea3f4ef0b added: #to:collect:
Claus Gittinger <cg@exept.de>
parents: 12480
diff changeset
  3337
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3338
!Integer methodsFor:'misc math'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3339
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3340
acker:n
1560
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3341
    "return the value of acker(self, n).
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  3342
     ;-) Do not try with receivers > 3"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3343
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3344
    (self == 0) ifTrue:[^ n + 1].
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3345
    (n == 0) ifTrue:[^ (self - 1) acker: 1].
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3346
    ^ (self - 1) acker:(self acker:(n - 1))
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3347
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3348
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3349
     3 acker:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3350
     3 acker:7
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3351
    "
1560
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3352
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3353
    "Modified: 18.7.1996 / 13:08:16 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3354
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  3355
11491
4920830c3d9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11486
diff changeset
  3356
binco:kIn
13023
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  3357
    "an alternative name for the binomial coefficient for squeak compatibility"
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  3358
11491
4920830c3d9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11486
diff changeset
  3359
    ^ self binomialCoefficient:kIn
13023
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  3360
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  3361
    "Modified: / 17-08-2010 / 17:29:07 / cg"
11491
4920830c3d9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11486
diff changeset
  3362
!
4920830c3d9a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11486
diff changeset
  3363
19040
80a45e8ef510 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19015
diff changeset
  3364
binomialCoefficient:k
80a45e8ef510 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19015
diff changeset
  3365
    "The binomial coefficient (n over k)
11486
6371ea09c6f0 comment
Claus Gittinger <cg@exept.de>
parents: 11485
diff changeset
  3366
11476
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3367
      / n \     with self being n, and 0 <= k <= n.
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3368
      \ k /
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3369
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3370
     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
  3371
     also known as a combination or combinatorial number.
11486
6371ea09c6f0 comment
Claus Gittinger <cg@exept.de>
parents: 11485
diff changeset
  3372
     Sometimes also called C(n,k) (for choose k from n)
6371ea09c6f0 comment
Claus Gittinger <cg@exept.de>
parents: 11485
diff changeset
  3373
6371ea09c6f0 comment
Claus Gittinger <cg@exept.de>
parents: 11485
diff changeset
  3374
     binCo is defined as:
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3375
        n!!
11476
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3376
     ----------
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3377
     k!! (n-k)!!
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3378
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3379
     but there is a faster, recursive formula:
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3380
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3381
      / n \  = / n - 1 \  + / n - 1 \
11476
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3382
      \ k /    \ k - 1 /    \   k   /
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3383
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3384
     with:
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3385
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3386
      / n \  = / n \  =  1
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3387
      \ 0 /    \ n /
11476
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3388
    "
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3389
19040
80a45e8ef510 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19015
diff changeset
  3390
    |kRun acc|
80a45e8ef510 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19015
diff changeset
  3391
80a45e8ef510 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19015
diff changeset
  3392
    k > self ifTrue:[^ 0].
80a45e8ef510 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19015
diff changeset
  3393
80a45e8ef510 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19015
diff changeset
  3394
    kRun := k.
80a45e8ef510 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19015
diff changeset
  3395
    kRun > (self / 2) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3396
        "/ symmetry
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3397
        kRun := self - kRun.
11476
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3398
    ].
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3399
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3400
    acc := 1.
19040
80a45e8ef510 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19015
diff changeset
  3401
    1 to:kRun do:[:i |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3402
        acc := acc * (self - kRun + i) / i.
11476
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3403
    ].
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3404
    ^ acc
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3405
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3406
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3407
     (7 binomialCoefficient:3)
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3408
     (10 binomialCoefficient:5)
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3409
     (100 binomialCoefficient:5)
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3410
     (1000 binomialCoefficient:5)
11486
6371ea09c6f0 comment
Claus Gittinger <cg@exept.de>
parents: 11485
diff changeset
  3411
11476
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3412
     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
  3413
     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
  3414
     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
  3415
     TestCase assert: (10000 binomialCoefficient:78) = (10000 factorial / (78 factorial * (10000-78) factorial))
11486
6371ea09c6f0 comment
Claus Gittinger <cg@exept.de>
parents: 11485
diff changeset
  3416
6371ea09c6f0 comment
Claus Gittinger <cg@exept.de>
parents: 11485
diff changeset
  3417
     Time millisecondsToRun:[ (10000 binomialCoefficient:78) ]                            -> 0
19252
7e0b6ccb0d81 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19251
diff changeset
  3418
     Time millisecondsToRun:[ (10000 factorial / (78 factorial * (10000-78) factorial)) ] -> 130
11486
6371ea09c6f0 comment
Claus Gittinger <cg@exept.de>
parents: 11485
diff changeset
  3419
11476
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3420
    "
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3421
!
bdf0c2c2ef09 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11464
diff changeset
  3422
1842
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3423
divMod:aNumber
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  3424
    "return an array filled with
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3425
        (self // aNumber) and (self \\ aNumber).
17037
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3426
     The returned remainder has the same sign as aNumber.
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3427
     The following is always true:
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3428
        (receiver // something) * something + (receiver \\ something) = receiver
17037
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3429
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3430
     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
  3431
     Especially surprising:
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3432
        -1 \\ 10 -> 9  (because -(1/10) is truncated towards next smaller integer, which is -1,
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3433
                        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
  3434
        -10 \\ 3 -> 2 (because -(10/3) is truncated towards next smaller integer, which is -4,
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3435
                        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
  3436
1842
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3437
     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
  3438
     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
  3439
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3440
    ^ Array
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3441
        with:(self // aNumber)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3442
        with:(self \\ aNumber)
1842
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3443
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3444
    "
17037
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3445
     10 divMod:3       -> #(3 1)   because 3*3 + 1 = 10
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3446
     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
  3447
     -10 divMod:3      -> #(-4 2) because -4*-3 + 2 = -10
17037
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3448
     -10 divMod:-3     -> #(3 -1)  because -3*3 + (-1) = -10
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3449
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3450
     1000000000000000000000 divMod:3   -> #(333333333333333333333 1)
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3451
     1000000000000000000000 divMod:-3  -> #(-333333333333333333334 -2)
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3452
     -1000000000000000000000 divMod:3  -> #(-333333333333333333334 2)
5338279e3c58 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16886
diff changeset
  3453
     -1000000000000000000000 divMod:-3 -> #(333333333333333333333 -1)
1842
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3454
     100 factorial divMod:103
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3455
    "
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3456
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3457
    "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
  3458
!
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3459
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3460
extendedEuclid:tb
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3461
    "return the solution of 'ax + by = gcd(a,b)'.
7356
fe8fb0a571f2 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  3462
     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
  3463
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3464
    |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
  3465
5001
732ea614d36d Comments for #inverseMod: and #extendedEuclid:
Stefan Vogel <sv@exept.de>
parents: 4996
diff changeset
  3466
    self < tb ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3467
        a := self.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3468
        b := tb.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3469
        swap := false.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3470
    ] ifFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3471
        a := tb.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3472
        b := self.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3473
        swap := true.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3474
    ].
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3475
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3476
    shift := ((a lowBit) min:(b lowBit))-1.
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3477
    shift > 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3478
        tmp := shift negated.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3479
        a := a bitShift:tmp.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3480
        b := b bitShift:tmp.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3481
    ].
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3482
9057
13bd29f579c6 Bug 343: #clearBit: changed the receiver (shouldn't do that).
Stefan Vogel <sv@exept.de>
parents: 8937
diff changeset
  3483
    gcd  := a.
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3484
    gcd1 := b.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3485
    u := 1.
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3486
    u1 := 0.
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3487
    v := 0.
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3488
    v1 := 1.
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3489
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3490
    [
19251
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3491
        "/      The following condition is true:
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3492
        "/        (a * u1) + (b * v1) ~= gcd1 ifTrue:[self halt].
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3493
        t := gcd1 divMod:gcd.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3494
        gcd1 := gcd.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3495
        gcd := t at:2.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3496
        t := t at:1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3497
        tmp := v.
19251
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3498
        "/ v1 - (v * t) - v1 + (v * t) ~= 0 ifTrue:[self halt].
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3499
        v := v1 - (v * t).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3500
        v1 := tmp.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3501
        tmp := u.
19251
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3502
        "/ u1 - (u * t) - u1 + (u * t) ~= 0 ifTrue:[self halt].
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3503
        u := u1 - (u * t).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3504
        u1 := tmp.
9057
13bd29f579c6 Bug 343: #clearBit: changed the receiver (shouldn't do that).
Stefan Vogel <sv@exept.de>
parents: 8937
diff changeset
  3505
    gcd > 0] whileTrue.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3506
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3507
    shift > 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3508
        gcd1 := gcd1 bitShift:shift.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3509
    ].
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3510
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3511
    swap ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3512
        ^ Array with:v1 with:u1 with:gcd1.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3513
    ].
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3514
    ^ Array with:u1 with:v1 with:gcd1.
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3515
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3516
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3517
    "
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3518
     14 extendedEuclid:5
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3519
     14 extendedEuclid:2
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3520
     25 extendedEuclid:15
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3521
    "
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3522
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3523
    "Created: / 27.4.1999 / 15:19:22 / stefan"
5001
732ea614d36d Comments for #inverseMod: and #extendedEuclid:
Stefan Vogel <sv@exept.de>
parents: 4996
diff changeset
  3524
    "Modified: / 18.11.1999 / 16:19:24 / stefan"
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3525
!
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  3526
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3527
factorial
19251
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3528
    "return fac(self) (i.e. 1*2*3...*self).
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3529
     This chooses a good algorithm, based on the receiver.
19337
548386843c2e #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19327
diff changeset
  3530
     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
  3531
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3532
    (self <= 20) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3533
        self < 0 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3534
            "/
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3535
            "/ requested factorial of a negative number
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3536
            "/
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3537
            ^ self class
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3538
                raise:#domainErrorSignal
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3539
                receiver:self
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3540
                selector:#factorial
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3541
                arguments:#()
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3542
                errorString:'factorial of negative number'
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3543
        ].
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3544
        ^ #(1 1 2 6 24 120 720 5040 40320 362880 3628800 39916800
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3545
          479001600 6227020800 87178291200 1307674368000 20922789888000 
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3546
          355687428096000 6402373705728000 121645100408832000
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3547
          2432902008176640000) at:self+1
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3548
    ].
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3549
    
19163
b45df3976f74 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19161
diff changeset
  3550
"/    self < 80000 ifTrue:[
b45df3976f74 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19161
diff changeset
  3551
"/        ^ self factorialHalf
b45df3976f74 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19161
diff changeset
  3552
"/    ].    
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3553
    ^ self factorialEvenOdd
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3554
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3555
    "
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3556
     10 factorial
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3557
     100 factorial
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3558
     1000 factorial
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3559
     10000 factorial
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3560
     100000 factorial
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3561
     200000 factorial
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3562
     300000 factorial
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3563
     1000000 factorial
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3564
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3565
     Time millisecondsToRun:[10000 factorial]40
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3566
     Time millisecondsToRun:[100000 factorial]3220
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3567
     Time millisecondsToRun:[1000000 factorial]357120
19164
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3568
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3569
    #(factorialIter factorialHalf factorialEvenOdd factorial)
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3570
    do:[:sel |
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3571
      #( (10000 10) 
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3572
         (20000 10)
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3573
         (50000 10)
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3574
         (70000 10)
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3575
         (100000 5)
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3576
         (200000 3)
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3577
         (300000 3)
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3578
         (400000 3)) pairsDo:[:n :repeat |
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3579
         |times|
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3580
        times := (1 to:repeat) collect:[:i |
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3581
                Time millisecondsToRun:[ n perform:sel]
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3582
               ].
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3583
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3584
        Transcript printf:'%12s %6d: %5d\n' with:sel with:n with:times min 
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3585
      ]
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3586
    ].
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3587
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3588
    factorialIter  10000:    30
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3589
    factorialIter  20000:   130
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3590
    factorialIter  50000:   790
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3591
    factorialIter  70000:  1710
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3592
    factorialIter 100000:  4880
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3593
    factorialIter 200000: 24980
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3594
    factorialIter 300000: 60060
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3595
    factorialIter 400000: 112310
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3596
    factorialHalf  10000:    20
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3597
    factorialHalf  20000:   100
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3598
    factorialHalf  50000:   690
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3599
    factorialHalf  70000:  1430
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3600
    factorialHalf 100000:  3220
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3601
    factorialHalf 200000: 28340
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3602
    factorialHalf 300000: 68740
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3603
    factorialHalf 400000: 127490
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3604
    factorialEvenOdd  10000:    10
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3605
    factorialEvenOdd  20000:    60
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3606
    factorialEvenOdd  50000:   390
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3607
    factorialEvenOdd  70000:   810
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3608
    factorialEvenOdd 100000:  2020
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3609
    factorialEvenOdd 200000:  9960
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3610
    factorialEvenOdd 300000: 24480
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3611
    factorialEvenOdd 400000: 45340
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3612
    factorial  10000:    20
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3613
    factorial  20000:   100
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3614
    factorial  50000:   680
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3615
    factorial  70000:  1400
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3616
    factorial 100000:  2040
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3617
    factorial 200000: 10130
16e88ae992a1 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19163
diff changeset
  3618
    factorial 300000: 24670
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3619
    "
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3620
!
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3621
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3622
factorialEvenOdd
22166
a12fdc37c2cf #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22118
diff changeset
  3623
    "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
  3624
     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
  3625
     more but smaller multiplications makes a noticable difference"
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3626
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3627
    |pO i s2 t stop|
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3628
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3629
    (self <= 20) ifTrue:[
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3630
        ^ #(1 1 2 6 24 120 720 5040 40320 362880 3628800 39916800
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3631
          479001600 6227020800 87178291200 1307674368000 20922789888000 
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3632
          355687428096000 6402373705728000 121645100408832000
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3633
          2432902008176640000) at:self+1
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3634
    ].
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3635
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3636
    "/
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3637
    "/ 3 * 4 * 5 * 6 *7 * 8 .... * n
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3638
    "/ odd numbers:
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3639
    "/   3 5 7 9 ... n
19251
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3640
    "/ even numbers:
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3641
    "/   2 4 6 8 ... n
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3642
    "/   1 2 3 4 ... n//2
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3643
    "/ is (n/2)!! << n-1
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3644
                 
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3645
    pO := 1.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3646
    i := 3.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3647
 
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3648
    "/ odds only in pairs as
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3649
    "/      i * (i + 2)
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3650
    "/ to get to the next pair,
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3651
    "/      (i+4)(i+6)
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3652
    "/ we add: 8i + 24
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3653
    "/ (i+4)(i+6)-(i*(i+2))
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3654
    "/ i^2 + 10i + 24 - i^2 - 2i
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3655
    "/ 8i + 24
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3656
    stop := self-2.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3657
    t := i*(i+2).
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3658
    [i <= stop] whileTrue:[
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3659
        "/ odd*next odd
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3660
        pO := pO * t.
19163
b45df3976f74 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19161
diff changeset
  3661
        t := t + ((i*8) + 24).
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3662
        i := i + 4.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3663
    ].
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3664
    
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3665
    [i <= self] whileTrue:[
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3666
        "/ odd
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3667
        pO := pO * i.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3668
        i := i + 2.
1842
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  3669
    ].
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3670
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3671
    "/ the factorial of the evens...
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3672
    s2 := (self//2).
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3673
    ^ (s2 factorialEvenOdd * pO) << s2.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3674
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3675
    "
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3676
     (6 to:2000) conform:[:i | i factorialIter = i factorialEvenOdd]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3677
     
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3678
     Time millisecondsToRun:[20000 factorialIter]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3679
     Time millisecondsToRun:[50000 factorialIter]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3680
     Time millisecondsToRun:[70000 factorialIter]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3681
     Time millisecondsToRun:[100000 factorialIter]
23646
efcbc4fd9032 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23594
diff changeset
  3682
     Time millisecondsToRun:[200000 factorialIter] 16190
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3683
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3684
     Time millisecondsToRun:[20000 factorialEvenOdd]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3685
     Time millisecondsToRun:[50000 factorialEvenOdd]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3686
     Time millisecondsToRun:[70000 factorialEvenOdd]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3687
     Time millisecondsToRun:[100000 factorialEvenOdd]
23646
efcbc4fd9032 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23594
diff changeset
  3688
     Time millisecondsToRun:[200000 factorialEvenOdd] 2910
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3689
    "
22166
a12fdc37c2cf #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22118
diff changeset
  3690
a12fdc37c2cf #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22118
diff changeset
  3691
    "Modified (comment): / 05-07-2017 / 16:41:41 / cg"
23646
efcbc4fd9032 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23594
diff changeset
  3692
    "Modified (comment): / 26-01-2019 / 08:48:12 / Claus Gittinger"
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3693
!
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3694
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3695
factorialHalf
19251
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3696
    "an algorithm, which does it with half the number of multiplications.
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3697
     this is faster than factorialPM to roughly 60000."
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3698
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3699
    |p i d|
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3700
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3701
    i := self.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3702
    self odd ifTrue:[
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3703
        i := i - 1.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3704
    ].
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  3705
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3706
    p := i.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3707
    d := i - 2.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3708
    [d >= 2] whileTrue:[
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3709
        i := i + d.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3710
        p := p * i.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3711
        d := d - 2.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3712
    ].
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3713
    self odd ifTrue:[
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3714
        p := p * self
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  3715
    ].
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3716
    ^ p
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3717
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3718
    "
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3719
     10 factorial 3628800
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3720
     10 factorialHalf 3628800
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  3721
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3722
     11 factorial 39916800
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3723
     11 factorialHalf 39916800
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3724
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3725
     12 factorial 479001600
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  3726
     12 factorialHalf 479001600
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3727
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3728
     10000 factorial = 10000 factorialHalf
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3729
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3730
     (6 to:2000) conform:[:i | i factorialIter = i factorialHalf]
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  3731
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3732
     Time microsecondsToRun:[30 factorialIter]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3733
     Time microsecondsToRun:[30 factorialHalf]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3734
     Time microsecondsToRun:[50 factorialIter]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3735
     Time microsecondsToRun:[50 factorialHalf]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3736
     Time microsecondsToRun:[75 factorialIter]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3737
     Time microsecondsToRun:[75 factorialHalf]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3738
     Time microsecondsToRun:[100 factorialIter]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3739
     Time microsecondsToRun:[100 factorialHalf]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3740
     Time microsecondsToRun:[500 factorialIter]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3741
     Time microsecondsToRun:[500 factorialHalf]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3742
     Time microsecondsToRun:[1000 factorialIter]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3743
     Time microsecondsToRun:[1000 factorialHalf]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3744
     Time microsecondsToRun:[2000 factorialIter]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3745
     Time microsecondsToRun:[2000 factorialHalf]
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3746
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3747
     Time microsecondsToRun:[500 factorial]118 120 120
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3748
     Time microsecondsToRun:[1000 factorial]339 355 406
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3749
     Time microsecondsToRun:[5000 factorial]15703 13669 7715
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3750
     Time millisecondsToRun:[10000 factorial]40 30 50
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3751
     Time millisecondsToRun:[20000 factorial]140 150 150
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3752
     Time millisecondsToRun:[40000 factorial]600 570 560 570
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3753
     Time millisecondsToRun:[60000 factorial]1220 1240 1340
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3754
     Time millisecondsToRun:[80000 factorial]2600 2580 2540
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3755
     Time millisecondsToRun:[100000 factorial]4680 4810 5280
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3756
     Time millisecondsToRun:[120000 factorial]8100 8010 7920
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3757
     Time millisecondsToRun:[150000 factorial]13830 14040 13360
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  3758
     Time millisecondsToRun:[200000 factorial]23880 23740
19161
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 microsecondsToRun:[500 factorialHalf]150 142 192
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3761
     Time microsecondsToRun:[1000 factorialHalf]383 527 684
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3762
     Time microsecondsToRun:[5000 factorialHalf]6654 9221 4629
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3763
     Time millisecondsToRun:[10000 factorialHalf]20 30 20
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3764
     Time millisecondsToRun:[20000 factorialHalf]110 110 110
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3765
     Time millisecondsToRun:[40000 factorialHalf]490 490 490
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3766
     Time millisecondsToRun:[60000 factorialHalf]1100 1090 1070
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3767
     Time millisecondsToRun:[80000 factorialHalf]1920 1920 1880
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3768
     Time millisecondsToRun:[100000 factorialHalf]3030 3010 3000
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3769
     Time millisecondsToRun:[120000 factorialHalf]4830 4770 4760
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3770
     Time millisecondsToRun:[150000 factorialHalf]14510 13940 13900
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  3771
     Time millisecondsToRun:[200000 factorialHalf]28730 28160
19161
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3772
    "
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3773
!
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3774
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3775
factorialIter
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3776
    "return fac(self) (i.e. 1*2*3...*self) using an iterative algorithm.
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3777
     This is slightly faster than the recursive algorithm, and does not
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3778
     suffer from stack overflow problems (with big receivers)"
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3779
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3780
    |p i|
a7f0570d0c3a #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19159
diff changeset
  3781
1560
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3782
    p := 2.
2745
bdf76e380d27 errorString to DomainError
Claus Gittinger <cg@exept.de>
parents: 2458
diff changeset
  3783
    i := 3.
bdf76e380d27 errorString to DomainError
Claus Gittinger <cg@exept.de>
parents: 2458
diff changeset
  3784
    [i <= self] whileTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3785
        p := p * i.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3786
        i := i + 1.
1560
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3787
    ].
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3788
    ^ p
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3789
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3790
    "
1560
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3791
     10 factorial
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3792
     1000 factorial
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3793
     10000 factorial
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3794
     10000 factorialR
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3795
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3796
     Time millisecondsToRun:[2000 factorial]
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3797
     Time millisecondsToRun:[2000 factorialR]
2745
bdf76e380d27 errorString to DomainError
Claus Gittinger <cg@exept.de>
parents: 2458
diff changeset
  3798
     -1 factorial
1560
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3799
    "
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3800
10027
36281068b212 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9401
diff changeset
  3801
    "Modified: / 04-10-2006 / 14:31:12 / cg"
1560
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3802
!
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3803
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3804
factorialR
3908
b893f399f517 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  3805
    "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
  3806
3908
b893f399f517 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  3807
     This is included to demonstration purposes - if you really need
19251
92366c6c52aa #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19231
diff changeset
  3808
     factorial numbers, use the tuned #factorial, which is
3908
b893f399f517 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  3809
     faster and does not suffer from stack overflow problems (with big receivers)."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3810
356
claus
parents: 345
diff changeset
  3811
    (self >= 2) ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3812
        ^ self * (self - 1) factorialR
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3813
    ].
356
claus
parents: 345
diff changeset
  3814
    ^ 1
212
3edd10edefaf *** empty log message ***
claus
parents: 202
diff changeset
  3815
3edd10edefaf *** empty log message ***
claus
parents: 202
diff changeset
  3816
    "
1560
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3817
     10 factorialR
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3818
     1000 factorialR
4158
e04b61500e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3819
     Time millisecondsToRun:[10000 factorial]
212
3edd10edefaf *** empty log message ***
claus
parents: 202
diff changeset
  3820
    "
1560
f5ffcc5c3834 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
  3821
3908
b893f399f517 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3890
diff changeset
  3822
    "Created: / 18.7.1996 / 12:48:36 / cg"
4158
e04b61500e51 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4151
diff changeset
  3823
    "Modified: / 8.5.1999 / 18:40:13 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3824
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3825
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3826
fib
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3827
    "compute the fibionacci number for the receiver.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3828
        fib(0) := 0
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3829
        fib(1) := 1
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3830
        fib(n) := fib(n-1) + fib(n-2)"
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3831
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3832
    self <= 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3833
        self == 0 ifTrue:[^ 0].
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3834
    ].
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3835
    ^ self fib_helper
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3836
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3837
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
  3838
     30 fib
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3839
     60 fib
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3840
     1000 fib
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3841
    "
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3842
!
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3843
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3844
fib_helper
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3845
    "compute the fibionacci number for the receiver.
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3846
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3847
        Fib(n) = Fib(n-1) + Fib(n-2)
13023
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  3848
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  3849
     Knuth:
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3850
        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
  3851
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  3852
     This is about 3 times faster than fib_iterative.
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3853
    "
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3854
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3855
    |fibUsingDict dict|
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3856
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3857
    dict := Dictionary new:100.
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3858
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3859
    fibUsingDict := [:x |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3860
        |n fib fibN fibNp1 fibNm1 fibXm1 fibXm2 fibXp1|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3861
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3862
        x <= 30 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3863
                "/ 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
  3864
            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
  3865
                     ) at:x
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3866
        ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3867
            fib := dict at:x ifAbsent:nil.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3868
            fib isNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3869
                fibXm1 := dict at:(x-1) ifAbsent:nil.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3870
                fibXm1 notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3871
                    fibXm2 := dict at:(x-2) ifAbsent:nil.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3872
                    fibXm2 notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3873
                        fib := fibXm1 + fibXm2.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3874
                    ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3875
                        fibXp1 := dict at:(x+1) ifAbsent:nil.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3876
                        fibXp1 notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3877
                            fib := fibXp1 - fibXm1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3878
                        ]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3879
                    ]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3880
                ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3881
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3882
                fib isNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3883
                    n := x // 2.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3884
                    x odd ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3885
                        "/ m is set to n+1; therefore:
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3886
                        "/ Fib(x) = Fib(n+n+1)      ; x odd; setting n = (x-1)/2
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3887
                        "/ using Knuth:
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3888
                        "/ 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
  3889
                        "/            = (Fib(n+1) ^ 2) + (Fib(n) ^ 2)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3890
                        fibN   := fibUsingDict value:n.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3891
                        fibNp1 := fibUsingDict value:(n+1).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3892
                        fib := fibN squared + fibNp1 squared
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3893
                    ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3894
                        "/ as
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3895
                        "/    Fib(n+1) = Fib(n) + Fib(n-1)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3896
                        "/ therefore:
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3897
                        "/    Fib(n) = Fib(n+1) - Fib(n-1)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3898
                        "/ 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
  3899
                        "/ This gives us:
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3900
                        "/    Fib(x) = Fib(x+1) - Fib(x-1)      ; x even; setting n = x/2
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3901
                        "/           = Fib(n+n+1) - Fib(n+n-1)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3902
                        "/           = Fib(n+n+1) - Fib((n-1)+(n-1)+1)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3903
                        "/           = ((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
  3904
                        "/           = (Fib(n+1)^2) + (Fib(n)^2) - (Fib(n)^2) - (Fib((n-1))^2)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3905
                        "/           = (Fib(n+1)^2) - (Fib((n-1))^2)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3906
                        fibNm1 := fibUsingDict value:(n-1).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3907
                        fibNp1 := fibUsingDict value:(n+1).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3908
                        fib := fibNp1 squared - fibNm1 squared
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3909
                    ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3910
                ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3911
                dict at:x put:fib.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3912
            ]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3913
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3914
        fib
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3915
    ].
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3916
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3917
    ^ fibUsingDict value:self
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3918
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3919
    "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
  3920
     (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
  3921
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3922
     Time millisecondsToRun:[50000 fib_iterative]  312    (DUO 1.7Ghz CPU)
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3923
     Time millisecondsToRun:[50000 fib_helper]     109
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3924
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
  3925
     Time millisecondsToRun:[100000 fib_iterative] 1248
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3926
     Time millisecondsToRun:[100000 fib_helper]    374
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3927
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
  3928
     Time millisecondsToRun:[200000 fib_iterative] 4758
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3929
     Time millisecondsToRun:[200000 fib_helper]    1544
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3930
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
  3931
     Time millisecondsToRun:[400000 fib_iterative] 18892
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3932
     Time millisecondsToRun:[400000 fib_helper]    6084
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3933
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3934
     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
  3935
     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
  3936
    "
13023
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  3937
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  3938
    "Modified: / 17-08-2010 / 17:29:34 / cg"
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3939
!
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  3940
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3941
gcd:anInteger
2428
d54efc515824 better gcd for large integers
Claus Gittinger <cg@exept.de>
parents: 2408
diff changeset
  3942
    "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
  3943
     Euclids & Knuths algorithm."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3944
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3945
    |a b t|
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3946
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3947
    a := self abs.
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3948
    b := anInteger abs.
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3949
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3950
    a < b ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3951
        t := a.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3952
        a := b.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3953
        b := t.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3954
    ].
52
cf23b8901602 *** empty log message ***
claus
parents: 49
diff changeset
  3955
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3956
    b = 0 ifTrue: [^ a].
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3957
    a := a \\ b.
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3958
    a = 0 ifTrue:[^ b].
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3959
    ^ b gcd_helper:a
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  3960
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3961
    "
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  3962
     3141589999999999 gcd:1000000000000000
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3963
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3964
     Time millisecondsToRun:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3965
        10000 timesRepeat:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3966
           123456789012345678901234567890 gcd: 9876543210987654321
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  3967
        ]
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  3968
     ]
3060
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3969
    "
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3970
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3971
    "Modified: / 25.10.1997 / 16:08:45 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3972
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3973
21938
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3974
integerLog10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3975
    "return the floor of log10 of the receiver.
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3976
     This is the same as (self log:10) floor.
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3977
     Used to find out the number of digits needed
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3978
     to print a number/and for conversion to a LargeInteger."
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3979
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3980
    ^ self asFloat log10 floor
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3981
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3982
    "
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3983
      10 integerLog10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3984
      1000 integerLog10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3985
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3986
      10000000000000000.0 log:10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3987
      10000000000000000 integerLog10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3988
      100000000000000000 integerLog10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3989
      1000000000000000000 integerLog10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3990
      10000000000000000000 integerLog10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3991
      100000000000000000000 integerLog10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3992
      1000000000000000000000 integerLog10 -> 21
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3993
      1000000000000000000000000000000 integerLog10 -> 30
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3994
      10000000000000000000000000000000000000000 integerLog10 -> 40
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3995
      
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3996
      1 to:10000 by:10 do:[:i |
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3997
        self assert:(i factorial printString size == (i factorial integerLog10+1))
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3998
      ].
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  3999
      21 factorial printString size
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4000
      21 factorial integerLog10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4001
      51 factorial printString size
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4002
      51 factorial integerLog10
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4003
    "
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4004
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4005
    "Created: / 02-07-2017 / 01:20:49 / cg"
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4006
    "Modified: / 02-07-2017 / 10:16:40 / cg"
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4007
!
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4008
14097
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4009
integerLog2
14491
97b9228d2464 changed: #integerLog2
Claus Gittinger <cg@exept.de>
parents: 14448
diff changeset
  4010
    "return the floor of log2 of the receiver.
97b9228d2464 changed: #integerLog2
Claus Gittinger <cg@exept.de>
parents: 14448
diff changeset
  4011
     This is the same as (self log:2) floor."
14097
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4012
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4013
    self <= 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4014
        ^ self class
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4015
            raise:#domainErrorSignal
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4016
            receiver:self
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4017
            selector:#integerLog2
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4018
            arguments:#()
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4019
            errorString:'logarithm of negative integer'
14097
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4020
    ].
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4021
    ^ self highBit - 1.
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4022
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4023
    "
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4024
      2  log:2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4025
      2  integerLog2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4026
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4027
      3  log:2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4028
      3  integerLog2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4029
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4030
      4  log:2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4031
      4  integerLog2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4032
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4033
      64  integerLog2
14097
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4034
      100 integerLog2
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4035
      100 log:2
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4036
      999 integerLog2
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4037
      999 log:2
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4038
      120000 integerLog2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4039
      120000 log:2
14097
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4040
      -1 integerLog2
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4041
      50 factorial integerLog2
14767
157f37c1a7f9 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14680
diff changeset
  4042
      50 factorial log:2
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4043
      1000 factorial integerLog2
14767
157f37c1a7f9 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14680
diff changeset
  4044
      1000 factorial log:2       -- float error!!
14097
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4045
    "
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4046
!
Stefan Vogel <sv@exept.de>
parents: 14043
diff changeset
  4047
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4048
integerReciprocal
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4049
    "return an integer representing 1/self * 2**n.
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4050
     Where an integer is one bit longer than self.
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4051
     This is a helper for modulu numbers"
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4052
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  4053
    |b "{Class: SmallInteger}" rem result digitBytes|
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4054
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4055
    b := self highBit.
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4056
    rem := 1 bitShift:b.
10488
8c254af93816 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10030
diff changeset
  4057
    result := LargeInteger basicNew numberOfDigits:(b // 8)+1.
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  4058
    digitBytes := result digitBytes.
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  4059
    b+1 to:1 by:-1 do:[:idx|
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4060
        rem >= self ifTrue:[
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  4061
            rem := rem - self.
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  4062
            digitBytes bitSetAt:idx.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4063
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4064
        rem := rem mul2.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4065
    ].
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4066
    ^ result compressed.
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4067
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4068
    "
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4069
     333 integerReciprocal                (2 raisedTo:18) // 333
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4070
     393 integerReciprocal
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
  4071
     8 integerReciprocal
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11938
diff changeset
  4072
     15 integerReciprocal
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4073
     15112233445566 integerReciprocal
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4074
     10239552311579 integerReciprocal
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4075
   "
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4076
13023
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  4077
    "Modified: / 03-05-1999 / 14:27:18 / stefan"
c7b914e6ed2b comment/format
Claus Gittinger <cg@exept.de>
parents: 13022
diff changeset
  4078
    "Modified: / 17-08-2010 / 17:30:22 / cg"
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4079
!
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4080
12588
fa4fb7a41047 added: #integerSqrt
Claus Gittinger <cg@exept.de>
parents: 12586
diff changeset
  4081
integerSqrt
21931
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4082
    "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
  4083
     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
  4084
     (which actually fails for very large numbers)
12586
1b8a0ecda4f2 changed: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12585
diff changeset
  4085
     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
  4086
     (and also in cryptography). 
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4087
     Uses Newton's method"
12586
1b8a0ecda4f2 changed: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12585
diff changeset
  4088
1b8a0ecda4f2 changed: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12585
diff changeset
  4089
    |guess prevGuess guessSquared|
12581
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4090
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  4091
    self negative ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4092
        ^ self class
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4093
            raise:#imaginaryResultSignal
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4094
            receiver:self
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4095
            selector:#integerSqrt
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4096
            arguments:#()
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4097
            errorString:'bad (negative) receiver in sqrt'
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  4098
    ].
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4099
    self == 0 ifTrue:[^ 0].
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  4100
12582
7afa0bb19bbe comment/format in: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12581
diff changeset
  4101
    guess := (1 bitShift:(self highBit // 2)).
12581
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4102
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4103
    [
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4104
        prevGuess ~= guess
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4105
        and:[ ((guessSquared := guess squared) - self) abs >= guess ]
12581
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4106
    ] whileTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4107
        prevGuess := guess.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4108
        guess := (guess + (self / guess)) // 2.
12581
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4109
    ].
12586
1b8a0ecda4f2 changed: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12585
diff changeset
  4110
    guessSquared > self ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4111
        guess := guess - 1.
12581
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4112
    ].
12585
e8ce2be6049a changed: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12582
diff changeset
  4113
    "/ self assert:(guess squared <= self).
e8ce2be6049a changed: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12582
diff changeset
  4114
    "/ self assert:((guess + 1) squared > self).
12581
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4115
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4116
    ^ guess.
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4117
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4118
    "
22107
7cb478fcbdfa #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22073
diff changeset
  4119
     333 sqrt -> 18.2482875908947
7cb478fcbdfa #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22073
diff changeset
  4120
     324 sqrt -> 18.0
7cb478fcbdfa #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22073
diff changeset
  4121
     323 sqrt -> 17.9722007556114
7cb478fcbdfa #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22073
diff changeset
  4122
7cb478fcbdfa #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22073
diff changeset
  4123
     333 integerSqrt -> 18
7cb478fcbdfa #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22073
diff changeset
  4124
     325 integerSqrt -> 18
7cb478fcbdfa #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22073
diff changeset
  4125
     324 integerSqrt -> 18
7cb478fcbdfa #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22073
diff changeset
  4126
     323 integerSqrt -> 17
21931
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4127
     
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4128
     10239552004900 integerSqrt
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4129
     10239552004900 sqrt
12588
fa4fb7a41047 added: #integerSqrt
Claus Gittinger <cg@exept.de>
parents: 12586
diff changeset
  4130
     10239552311579 integerSqrt
21931
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4131
     10239552311579 sqrt
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4132
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4133
     5397346292805549782720214077673687804022210808238353958670041357153884304 integerSqrt squared
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4134
     5397346292805549782720214077673687804022210808238353958670041357153884304 sqrt squared
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4135
12588
fa4fb7a41047 added: #integerSqrt
Claus Gittinger <cg@exept.de>
parents: 12586
diff changeset
  4136
     5397346292805549782720214077673687806275517530364350655459511599582614290 integerSqrt
21931
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4137
     5397346292805549782720214077673687806275517530364350655459511599582614290 sqrt
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  4138
     1000 factorial integerSqrt
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4139
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  4140
     1000 factorial - 1000 factorial integerSqrt squared
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  4141
     1000 factorial - (1000 factorial integerSqrt + 1) squared
21931
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4142
     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
  4143
   "
21931
ef85a23c6c15 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21903
diff changeset
  4144
22107
7cb478fcbdfa #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22073
diff changeset
  4145
    "Modified (comment): / 25-07-2017 / 17:52:14 / cg"
12581
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4146
!
3ce7fc818873 added: #integerSquareRoot
Claus Gittinger <cg@exept.de>
parents: 12565
diff changeset
  4147
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4148
inverseMod:n
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4149
    "find the modular inverse for myself to n.
11896
1c504810ba9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11858
diff changeset
  4150
     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
  4151
     This is a helper for modulu numbers"
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4152
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4153
    |e ret|
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4154
5001
732ea614d36d Comments for #inverseMod: and #extendedEuclid:
Stefan Vogel <sv@exept.de>
parents: 4996
diff changeset
  4155
    "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
  4156
     (self * x) + (n * y) = self gcd:n"
732ea614d36d Comments for #inverseMod: and #extendedEuclid:
Stefan Vogel <sv@exept.de>
parents: 4996
diff changeset
  4157
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4158
    e := self extendedEuclid:n.
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4159
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4160
    (e at:3) == 1 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4161
        ret := e at:1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4162
        ret negative ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4163
            ^ ret + n
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4164
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4165
        ^ ret.
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4166
    ].
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4167
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4168
    ^ 0
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4169
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4170
    "
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4171
     14 inverseMod:5      -> 4
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4172
     5 inverseMod:14      -> 3
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4173
     14 inverseMod:11     -> 4                (4 * 14) \\ 11
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4174
     11 inverseMod:14     -> 9                (9 * 11) \\ 14
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4175
     79 inverseMod:3220   -> 1019
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4176
     3220 inverseMod:79   -> 54               (54 * 3220) \\ 79
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4177
     1234567891 inverseMod:1111111111119
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4178
                          -> 148726663534     (148726663534*1234567891) \\ 1111111111119
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4179
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4180
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4181
     14 extendedEuclid:11
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4182
     5 extendedEuclid:14
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4183
     14 extendedEuclid:2
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4184
     3220 extendedEuclid:79
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4185
    "
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4186
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4187
    "Created: / 27.4.1999 / 15:19:22 / stefan"
5001
732ea614d36d Comments for #inverseMod: and #extendedEuclid:
Stefan Vogel <sv@exept.de>
parents: 4996
diff changeset
  4188
    "Modified: / 18.11.1999 / 16:21:37 / stefan"
4136
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4189
!
8c8bfa5808a3 Optimisations and modulo arithmethic
Stefan Vogel <sv@exept.de>
parents: 4039
diff changeset
  4190
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4191
lcm:anInteger
52
cf23b8901602 *** empty log message ***
claus
parents: 49
diff changeset
  4192
    "return the least common multiple (using gcd:)"
cf23b8901602 *** empty log message ***
claus
parents: 49
diff changeset
  4193
cf23b8901602 *** empty log message ***
claus
parents: 49
diff changeset
  4194
    ^ (self * anInteger) abs // (self gcd: anInteger)
cf23b8901602 *** empty log message ***
claus
parents: 49
diff changeset
  4195
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4196
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4197
     65 lcm:15
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4198
     3 lcm:15
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4199
    "
3188
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4200
!
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4201
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4202
primeFactors
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4203
    "return a collection of prime factors of the receiver.
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4204
     For prime numbers, an empty collection is returned.
13021
1cbf4cdfc288 comment/format
Claus Gittinger <cg@exept.de>
parents: 12978
diff changeset
  4205
     Can take a long time for big numbers"
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4206
11508
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4207
    ^ self primeFactorsUpTo:nil
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4208
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4209
    "
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4210
     2 to:10000 do:[:n |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4211
        self assert:((n isPrime and:[ n primeFactors isEmpty])
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4212
                    or:[ n isPrime not and:[n primeFactors product = n]])
11508
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4213
     ]
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4214
     3 to:10000 do:[:n |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4215
        self assert:(n factorial primeFactors product = n factorial)
11508
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4216
     ]
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4217
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4218
     13195 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4219
     12 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4220
     2 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4221
     3 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4222
     5 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4223
     14 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4224
     13423453625634765 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4225
     13423453625634765 isPrime
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4226
     13423453625634765 gcd:(3 * 5 * 19 * 29)
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4227
     13423453625634765 / 8265
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4228
     1624132320101 isPrime
11508
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4229
     1624132320101 gcd: 8265
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4230
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4231
     1000000 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4232
     100000000 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4233
     1000000000 primeFactors
11508
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4234
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4235
     Time millisecondsToRun:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4236
        1000 timesRepeat:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4237
            10000000000000000000000000000000000000 primeFactors
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4238
        ]
11508
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4239
     ]   421
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4240
    "
13021
1cbf4cdfc288 comment/format
Claus Gittinger <cg@exept.de>
parents: 12978
diff changeset
  4241
1cbf4cdfc288 comment/format
Claus Gittinger <cg@exept.de>
parents: 12978
diff changeset
  4242
    "Modified: / 17-08-2010 / 17:27:33 / cg"
11508
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4243
!
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4244
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4245
primeFactorsUpTo:limitArgOrNil
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4246
    "return a collection of prime factors of the receiver.
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4247
     For prime numbers, an empty collection is returned.
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4248
     Can take a long time for big numbers
13021
1cbf4cdfc288 comment/format
Claus Gittinger <cg@exept.de>
parents: 12978
diff changeset
  4249
     (win a nobel price, if you find something quick (*)
1cbf4cdfc288 comment/format
Claus Gittinger <cg@exept.de>
parents: 12978
diff changeset
  4250
1cbf4cdfc288 comment/format
Claus Gittinger <cg@exept.de>
parents: 12978
diff changeset
  4251
     (*):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
  4252
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  4253
    "See comment in initializePrimeCacheUpTo:limit"
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  4254
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  4255
    |rest n factors limit wellKnownPrimes lastPrime checkThisFactor nextTry|
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4256
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4257
    factors := Bag new.
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4258
    rest := self.
11508
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4259
    limit := (rest // 2).
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4260
    limitArgOrNil notNil ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4261
        limit := limit min:limitArgOrNil.
11508
d1ed91142715 prime stuff printing fix.
Claus Gittinger <cg@exept.de>
parents: 11505
diff changeset
  4262
    ].
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4263
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4264
    "/ try to get the number down fast:
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4265
    n := rest lowBit.
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4266
    n ~~ 1 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4267
        self == 2 ifTrue:[^ #() ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4268
        factors add:2 withOccurrences:(n-1).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4269
        rest := rest rightShift:(n-1).
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4270
    ].
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4271
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  4272
    checkThisFactor :=
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  4273
        [:prime |
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  4274
            (prime*prime) > rest ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4275
                (rest ~~ 1 and:[factors notEmpty]) ifTrue:[ factors add:rest ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4276
                ^ factors.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4277
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4278
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4279
            [rest \\ prime == 0] whileTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4280
                factors add:prime.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4281
                rest := rest // prime.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4282
                rest == 1 ifTrue:[^ factors].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4283
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4284
            lastPrime := prime.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4285
        ].
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4286
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  4287
    wellKnownPrimes := Integer primesUpTo5000.
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  4288
    limit <= (wellKnownPrimes last+1) ifTrue:[
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  4289
        wellKnownPrimes do:checkThisFactor.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4290
        ^ factors
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4291
    ].
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4292
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4293
    "/ 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
  4294
    "/ 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
  4295
    "/ which may slow things down quite a bit.
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4296
    "/ (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
  4297
    "/ a few millions).
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4298
11938
79dcaf7ae7ad changed #primeFactorsUpTo:
Claus Gittinger <cg@exept.de>
parents: 11936
diff changeset
  4299
    Integer primesUpTo:(limit min:(1000000 max:Integer primeCacheSize)) do:checkThisFactor.
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4300
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4301
    nextTry := lastPrime + 2.
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4302
    [ nextTry <= limit ] whileTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4303
        "/ now, we are beyond the list of pre-generated primes.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4304
        "/ change our strategy to: see if it divides an odd number;
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4305
        "/ if so, add the divisor's prime factors.
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  4306
        (nextTry*nextTry) > rest ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4307
            (rest ~~ 1 and:[factors notEmpty]) ifTrue:[ factors add:rest ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4308
            ^ factors.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4309
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4310
        [(rest \\ nextTry) == 0] whileTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4311
            "/ can only happen relatively late after the last prime,
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4312
            "/ because otherwise, the primeFactors of nextTry would already have
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4313
            "/ been found as divisors.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4314
            "/ first chance is: (lastPrime + 2) squared
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4315
            nextTry < lastPrime squared ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4316
                "/ nextTry is a prime !!
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4317
                factors add:nextTry
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4318
            ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4319
                factors addAll:(nextTry primeFactors).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4320
            ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4321
            rest := rest // nextTry.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4322
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4323
        nextTry := nextTry + 2.
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4324
    ].
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4325
    ^ factors
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4326
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4327
    "
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4328
     2 to:10000 do:[:n |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4329
        self assert:((n isPrime and:[ n primeFactors isEmpty])
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4330
                    or:[ n isPrime not and:[n primeFactors product = n]])
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4331
     ]
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4332
     3 to:10000 do:[:n |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4333
        self assert:(n factorial primeFactors product = n factorial)
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4334
     ]
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4335
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4336
     13195 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4337
     12 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4338
     2 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4339
     3 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4340
     5 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4341
     14 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4342
     13423453625634765 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4343
     13423453625634765 isPrime
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4344
     13423453625634765 gcd:(3 * 5 * 19 * 29)
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4345
     13423453625634765 / 8265
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4346
     1624132320101 isPrime
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4347
     1624132320101 gcd: 8265
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4348
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4349
     1000000 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4350
     100000000 primeFactors
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4351
     1000000000 primeFactors
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4352
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4353
     Time millisecondsToRun:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4354
        1000 timesRepeat:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4355
            10000000000000000000000000000000000000 primeFactors
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4356
        ]
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4357
     ]   421
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4358
    "
13021
1cbf4cdfc288 comment/format
Claus Gittinger <cg@exept.de>
parents: 12978
diff changeset
  4359
13022
43a439f72615 comment/format
Claus Gittinger <cg@exept.de>
parents: 13021
diff changeset
  4360
    "Modified: / 17-08-2010 / 17:28:05 / cg"
11496
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4361
!
74c8c4d468d7 prime stuff
Claus Gittinger <cg@exept.de>
parents: 11495
diff changeset
  4362
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4363
raisedTo:exp mod:mod
12280
b2bbbfd2444e added: #raisedTo:modulo:
Stefan Vogel <sv@exept.de>
parents: 12255
diff changeset
  4364
    "return the modulo (remainder) of
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4365
     the receiver raised to exp (an Integer) and mod (another Integer)"
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4366
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4367
    |result m t
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4368
     eI   "{Class: SmallInteger}"
5816
ce15ce5294b4 Cleanup unused method vars
Stefan Vogel <sv@exept.de>
parents: 5799
diff changeset
  4369
     bits "{Class: SmallInteger}"|
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4370
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4371
    "use the addition chaining algorithm"
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4372
8335
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4373
    exp == 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4374
        ^ 1
8335
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4375
    ].
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4376
    exp == 1 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4377
        mod isNumber ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4378
            ^ self \\ mod.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4379
        ]
8335
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4380
    ].
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4381
    exp negative ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4382
        ^ self class
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4383
            raise:#domainErrorSignal
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4384
            receiver:self
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4385
            selector:#raisedTo:mod:
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4386
            arguments:(Array with:exp with:mod)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4387
            errorString:'modulo arithmethic with negative exponent'
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4388
    ].
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4389
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4390
    m := mod asModuloNumber.
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4391
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4392
    result := 1.
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4393
    t := m modulusOf:self.
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4394
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4395
    (exp class == SmallInteger) ifTrue:[
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4396
        eI := exp.
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4397
        [eI ~~ 0] whileTrue:[
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4398
            (eI bitAnd:1) == 1 ifTrue:[
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4399
                result := m modulusOf:(result * t).
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4400
            ].
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4401
            eI := eI bitShift:-1.
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4402
            eI ~~ 0 ifTrue:[
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4403
                t := m modulusOf:(t * t).
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4404
            ].
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4405
        ].
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4406
        ^ result.
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4407
    ].
8335
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4408
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4409
    bits := exp highBit.
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4410
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4411
    1 to:bits-1 do:[:i|
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4412
        (exp bitAt:i) == 1 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4413
            result := m modulusOf:(result * t).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4414
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4415
        t := m modulusOf:(t * t).
8335
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4416
    ].
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4417
    result := m modulusOf:(result * t).
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4418
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4419
    ^ result
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4420
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4421
    "
22561
bdaee5e2bf96 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22469
diff changeset
  4422
     Time millisecondsToRun: [100000 timesRepeat: [12345678907 raisedTo: 3 modulo: 12345678917]]
bdaee5e2bf96 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22469
diff changeset
  4423
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4424
     2 raisedTo:2 mod:3
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4425
      20000000000000 raisedTo:200 mod:190  ->  30
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4426
     (20000000000000 raisedTo:200) \\ 190
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4427
8335
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4428
      Time millisecondsToRun:[10000 timesRepeat:[
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4429
                                200000000000000000000000 raisedTo:65537 mod:1900000000000000000000000
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4430
                              ]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4431
                             ]
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4432
8335
e7fa7779b1b9 Fix #raisedTo:mod: for expontents 1 and 0
Stefan Vogel <sv@exept.de>
parents: 8289
diff changeset
  4433
     Time millisecondsToRun:[1000 timesRepeat:[
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4434
                                (200000000000000000000000 raisedTo:65537) \\ 1900000000000000000000000
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4435
                             ]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4436
                            ]
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4437
    "
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4438
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4439
    "Created: / 27.4.1999 / 15:19:22 / stefan"
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4440
    "Modified: / 5.5.1999 / 11:18:20 / stefan"
6195
9e60c38d1d61 #raise:receiver:selector...
Claus Gittinger <cg@exept.de>
parents: 6055
diff changeset
  4441
    "Modified: / 16.11.2001 / 14:15:21 / cg"
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4442
!
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4443
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4444
raisedToCrtModP:p q:q ep:ep eq:eq u:u
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4445
    "Application of the Chinese Remainder Theorem (CRT).
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4446
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4447
     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
  4448
     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
  4449
     modulus, the Chinese Remainder Theorem to do the computation mod p and
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4450
     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
  4451
     precomputed values, but does not actually require the modulus n or the
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4452
     exponent e.
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4453
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4454
     expout = expin ^ e mod (p*q).
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4455
     We form this by evaluating
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4456
     p2 = (expin ^ e) mod p and
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4457
     q2 = (expin ^ e) mod q
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4458
     and then combining the two by the CRT.
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4459
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4460
     Two optimisations of this are possible.  First, we can reduce expin
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4461
     modulo p and q before starting.
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4462
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4463
     Second, since we know the factorisation of p and q (trivially derived
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4464
     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
  4465
     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
  4466
     to throw away multiples of phi(p) or phi(q) in e.
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4467
     Letting ep = e mod phi(p) and
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4468
              eq = e mod phi(q)
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4469
     then combining these two speedups, we only need to evaluate
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4470
     p2 = ((expin mod p) ^ ep) mod p and
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4471
     q2 = ((expin mod q) ^ eq) mod q.
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4472
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4473
     Now we need to apply the CRT.  Starting with
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4474
     expout = p2 (mod p) and
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4475
     expout = q2 (mod q)
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4476
     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
  4477
     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
  4478
     (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
  4479
     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
  4480
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4481
     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
  4482
     Since we want 0 <= k < q, we can thus find k as
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4483
     k = (u * (q2-p2)) mod q.
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4484
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4485
     Once we have k, evaluating p2 + p * k is easy, and
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4486
     that gives us the result
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4487
    "
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4488
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4489
    |result t mp mq|
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4490
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4491
    mp := p asModuloNumber.
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4492
    result := self raisedTo:ep mod:mp.
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4493
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4494
    mq := q asModuloNumber.
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  4495
    t := self raisedTo:eq mod:mq.
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4496
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4497
    "now p2 is in result, q2 in t"
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4498
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  4499
    t := t - result.
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  4500
    t negative ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4501
        t := t + q.
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4502
    ].
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  4503
    t := t * u.
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4504
    t := mq modulusOf:t.
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  4505
    t := t * p.
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  4506
    result := result + t.
4973
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4507
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4508
    ^ result.
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4509
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4510
    "Created: / 30.4.1999 / 15:53:15 / stefan"
2bbd09250179 Fix CRT
Stefan Vogel <sv@exept.de>
parents: 4972
diff changeset
  4511
    "Modified: / 5.5.1999 / 11:01:15 / stefan"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4512
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4513
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4514
!Integer methodsFor:'printing & storing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4515
16038
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4516
asBCD
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4517
    "return an integer which represents the BCD encoded value of the receiver;
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4518
     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
  4519
     of the result. (aka 162 -> 0x162).
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4520
     This conversion is useful for some communication protocols,
16040
4708e4544528 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16038
diff changeset
  4521
     or control systems, which represent numbers this way...
4708e4544528 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16038
diff changeset
  4522
     This fallback code is not particularily tuned or optimized for speed."
16038
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4523
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4524
    |rest twoDigits hi lo shift out|
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4525
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4526
    out := 0. shift := 0.
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4527
    rest := self.
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4528
    [rest > 0] whileTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4529
        twoDigits := rest \\ 100.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4530
        rest := rest // 100.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4531
        hi := twoDigits // 10.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4532
        lo := twoDigits \\ 10.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4533
        out := out bitOr:(((hi bitShift:4)+lo) bitShift:shift).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4534
        shift := shift + 8.
16038
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4535
    ].
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4536
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4537
    ^ out
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4538
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4539
    "
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4540
     (100 factorial) asBCD
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4541
     999999999 asBCD
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4542
     100000000 asBCD
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4543
     123456789 asBCD
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4544
     99999999 asBCD
16038
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4545
     12345678 asBCD
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4546
     12345678 asBCD
16038
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4547
     12345678 asBCD hexPrintString
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4548
     12345678901234567890 asBCD
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4549
    "
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4550
!
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4551
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4552
asBCDBytes
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4553
    "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
  4554
     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
  4555
     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
  4556
     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
  4557
     or control systems, which represent big numbers this way...
16038
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4558
     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
  4559
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4560
    |s rest twoDigits hi lo|
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4561
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4562
    self == 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4563
        ^ #[ 16r00 ]
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4564
    ].
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4565
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4566
    "/ 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
  4567
    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
  4568
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4569
    rest := self.
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4570
    [rest > 0] whileTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4571
        twoDigits := rest \\ 100.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4572
        rest := rest // 100.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4573
        hi := twoDigits \\ 10.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4574
        lo := twoDigits // 10.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4575
        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
  4576
    ].
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4577
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4578
    ^ s contents reverse
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4579
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4580
    "
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4581
     12345678 asBCDBytes
16038
0de5f1f2a740 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16015
diff changeset
  4582
     12345678 asBCDBytes hexPrintString
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4583
     12345678901234567890 asBCDBytes
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4584
    "
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4585
!
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  4586
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4587
errorPrintHex
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4588
    "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
  4589
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4590
     (self printStringRadix:16) errorPrint
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4591
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4592
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4593
hexPrintString
23382
e11a8bed0f9e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23119
diff changeset
  4594
    "return a hex string representation of the receiver.
e11a8bed0f9e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23119
diff changeset
  4595
     Notice: this is not padded in any way"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4596
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4597
    ^ self printStringRadix:16
3874
a04715e25340 comment
Claus Gittinger <cg@exept.de>
parents: 3683
diff changeset
  4598
a04715e25340 comment
Claus Gittinger <cg@exept.de>
parents: 3683
diff changeset
  4599
    "
23382
e11a8bed0f9e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23119
diff changeset
  4600
     9 hexPrintString
3874
a04715e25340 comment
Claus Gittinger <cg@exept.de>
parents: 3683
diff changeset
  4601
     127 hexPrintString
a04715e25340 comment
Claus Gittinger <cg@exept.de>
parents: 3683
diff changeset
  4602
     -1 hexPrintString
a04715e25340 comment
Claus Gittinger <cg@exept.de>
parents: 3683
diff changeset
  4603
    "
a04715e25340 comment
Claus Gittinger <cg@exept.de>
parents: 3683
diff changeset
  4604
23382
e11a8bed0f9e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23119
diff changeset
  4605
    "Modified: / 11-10-1998 / 01:15:43 / cg"
e11a8bed0f9e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23119
diff changeset
  4606
    "Modified (comment): / 23-09-2018 / 03:48:57 / Claus Gittinger"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4607
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4608
2408
fd31506f31ef added #hexPrintString:
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
  4609
hexPrintString:size
fd31506f31ef added #hexPrintString:
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
  4610
    "return a hex string representation of the receiver,
fd31506f31ef added #hexPrintString:
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
  4611
     padded to size characters"
fd31506f31ef added #hexPrintString:
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
  4612
5799
547c417b23cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5782
diff changeset
  4613
"/    ^ (self printStringRadix:16) leftPaddedTo:size with:$0
547c417b23cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5782
diff changeset
  4614
    ^ self printStringRadix:16 size:size fill:$0
547c417b23cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5782
diff changeset
  4615
547c417b23cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5782
diff changeset
  4616
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4617
     12345 hexPrintString:4
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4618
     123 hexPrintString:4
5799
547c417b23cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5782
diff changeset
  4619
    "
2408
fd31506f31ef added #hexPrintString:
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
  4620
fd31506f31ef added #hexPrintString:
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
  4621
    "Created: 18.2.1997 / 13:32:33 / cg"
fd31506f31ef added #hexPrintString:
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
  4622
!
fd31506f31ef added #hexPrintString:
Claus Gittinger <cg@exept.de>
parents: 2141
diff changeset
  4623
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4624
printHex
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4625
    "print the receiver as a hex number on the standard output stream"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4626
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4627
     (self printStringRadix:16) print
21938
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4628
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4629
    "
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4630
     16rAFFE printStringRadix:16
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4631
    "
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4632
95ff2af6355f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21931
diff changeset
  4633
    "Modified (comment): / 02-07-2017 / 10:20:59 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4634
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4635
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4636
printOn:aStream base:base showRadix:showRadix
5988
Claus Gittinger <cg@exept.de>
parents: 5882
diff changeset
  4637
    "append a string representation of the receiver in the specified numberBase to aStream
Claus Gittinger <cg@exept.de>
parents: 5882
diff changeset
  4638
     (if showRadix is true, with initial XXr)
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4639
     The base argument should be between 2 and 36.
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4640
     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
  4641
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4642
    |absBase num s divMod mod r r2 r4 nD numN string|
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4643
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4644
    (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
  4645
        ConversionError raiseRequestWith:self errorString:' - invalid base: ', absBase printString.
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4646
        absBase := 10.
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 52
diff changeset
  4647
    ].
06dbdeeed4f9 *** empty log message ***
claus
parents: 52
diff changeset
  4648
5988
Claus Gittinger <cg@exept.de>
parents: 5882
diff changeset
  4649
    showRadix ifTrue:[
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4650
        absBase printOn:aStream.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4651
        aStream nextPut:$r.
5988
Claus Gittinger <cg@exept.de>
parents: 5882
diff changeset
  4652
    ].
Claus Gittinger <cg@exept.de>
parents: 5882
diff changeset
  4653
3188
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4654
    (self = 0) ifTrue:[aStream nextPut:$0. ^ self].
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4655
    self negative ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4656
        aStream nextPut:$- .
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4657
        num := self negated.
3188
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4658
    ] ifFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4659
        num := self.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4660
    ].
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4661
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4662
    "
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4663
     claus: changed it from a recursive algorithm;
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  4664
     (it used to trigger stack-overflow exceptions when printing 3000 factorial ...)
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4665
    "
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  4666
    "/    leftPart := num // base.
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  4667
    "/    (leftPart ~= 0) ifTrue:[
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  4668
    "/        leftPart printOn:aStream base:base.
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  4669
    "/        aStream nextPut:(Character digitValue:(num \\ base).
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  4670
    "/        ^ self
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  4671
    "/    ].
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  4672
    "/    aStream nextPut:(Character digitValue:num).
2951
256e90eee7f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2816
diff changeset
  4673
3121
91de0211651c even faster largeInt printString, by doing it in bigger junks (8digits a time)
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  4674
    "/ 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
  4675
    "/ 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
  4676
    "/ 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
  4677
    "/ 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
  4678
    "/ 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
  4679
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4680
    r2 := absBase*absBase.   "/ radix^2
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  4681
    r4 := r2*r2.        "/ radix^4
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4682
    absBase <= 10 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4683
        r := r4*r2.     "/ radix^6 (chunks of 6 digits)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4684
        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
  4685
    ] ifFalse:[
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4686
        r := r4*absBase.    "/ radix^5 (chunks of 5 digits)
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4687
        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
  4688
    ].
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  4689
    SmallInteger maxBits >= 63 ifTrue:[
19159
c92bc53e745e #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19131
diff changeset
  4690
        r := r*r2.    "/ radix^7 (chunks of 6 digits)
c92bc53e745e #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19131
diff changeset
  4691
        nD := nD + 2.
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  4692
    ].
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4693
3188
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4694
    "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
  4695
     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
  4696
     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
  4697
    "
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  4698
    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
  4699
3121
91de0211651c even faster largeInt printString, by doing it in bigger junks (8digits a time)
Claus Gittinger <cg@exept.de>
parents: 3060
diff changeset
  4700
    [num >= r] whileTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4701
        "/
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4702
        "/ chop off nD digits.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4703
        "/
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4704
        divMod := num divMod:r.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4705
        num := divMod at:1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4706
        numN := divMod at:2.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4707
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4708
        "/ process them
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4709
        nD timesRepeat:[
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4710
            divMod := numN divMod:absBase.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4711
            numN := divMod at:1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4712
            mod := divMod at:2.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4713
            s nextPut:(Character digitValue:mod).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4714
        ].
2951
256e90eee7f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2816
diff changeset
  4715
    ].
1842
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  4716
19089
82c431661f59 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19078
diff changeset
  4717
    [num ~~ 0] whileTrue:[
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4718
        divMod := num divMod:absBase.
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4719
        num := divMod at:1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4720
        mod := divMod at:2.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4721
        s nextPut:(Character digitValue:mod).
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4722
    ].
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4723
    string := s contents reverse.
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4724
    base < 0 ifTrue:[
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4725
        string := string asLowercase.
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4726
    ].
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4727
    aStream nextPutAll:string.
3188
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4728
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4729
    "
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4730
        3000 factorial printOn:Transcript base:10
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4731
        10 printOn:Transcript base:3
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4732
        31 printOn:Transcript base:3
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4733
        10 printOn:Transcript base:2
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4734
        31 printOn:Transcript base:2
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4735
        -28  printOn:Transcript base:16
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4736
        -28  printOn:Transcript base:-16
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4737
        -20  printOn:Transcript base:10
19159
c92bc53e745e #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19131
diff changeset
  4738
        Time millisecondsToRun:[10000 factorial printString]
c92bc53e745e #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19131
diff changeset
  4739
        '%012d' printf:{  (2 raisedTo:20) }
12976
a12aab15ce5a changed: #printOn:base:showRadix:
Claus Gittinger <cg@exept.de>
parents: 12875
diff changeset
  4740
    "
a12aab15ce5a changed: #printOn:base:showRadix:
Claus Gittinger <cg@exept.de>
parents: 12875
diff changeset
  4741
a12aab15ce5a changed: #printOn:base:showRadix:
Claus Gittinger <cg@exept.de>
parents: 12875
diff changeset
  4742
    "Modified: / 20-01-1998 / 18:05:02 / stefan"
a12aab15ce5a changed: #printOn:base:showRadix:
Claus Gittinger <cg@exept.de>
parents: 12875
diff changeset
  4743
    "Created: / 07-09-2001 / 13:51:33 / cg"
a12aab15ce5a changed: #printOn:base:showRadix:
Claus Gittinger <cg@exept.de>
parents: 12875
diff changeset
  4744
    "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
  4745
!
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4746
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  4747
printOn:aStream base:baseInteger size:sz
15775
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4748
    "print a string representation of the receiver in the specified
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4749
     base. The string is padded on the left with fillCharacter to make
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4750
     its size as specified in sz."
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4751
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4752
    self printOn:aStream base:baseInteger size:sz fill:$0
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4753
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4754
    "
20268
e700943eea09 #DOCUMENTATION by mawalch
mawalch
parents: 20140
diff changeset
  4755
     1024 printOn:Transcript base:16 size:4.
15775
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4756
     1024 printOn:Transcript base:2 size:16.
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4757
     1024 printOn:Transcript base:16 size:8.
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4758
    "
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4759
!
94bd832a355e class: Integer
Claus Gittinger <cg@exept.de>
parents: 15765
diff changeset
  4760
7173
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4761
printOn:aStream base:baseInteger size:sz fill:fillCharacter
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4762
    "print a string representation of the receiver in the specified
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4763
     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
  4764
     its size as specified in sz."
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4765
20140
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4766
    |string actualSize|
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4767
bba1c52b0978 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 20130
diff changeset
  4768
    string := self printStringRadix:baseInteger.
7173
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4769
    actualSize := string size.
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4770
    actualSize < sz ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4771
        aStream next:sz-actualSize put:fillCharacter.
7173
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4772
    ].
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4773
    aStream nextPutAll:string.
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4774
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4775
    "
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  4776
     1024 printOn:Transcript base:16 size:4 fill:$0.
7173
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4777
     1024 printOn:Transcript base:2 size:16 fill:$.
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4778
     1024 printOn:Transcript base:16 size:8 fill:Character space.
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4779
    "
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4780
!
a1d65d39dbfb *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7155
diff changeset
  4781
3188
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4782
printOn:aStream radix:base
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4783
    "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
  4784
     The receiver is printed in radix base (instead of the default, 10).
5988
Claus Gittinger <cg@exept.de>
parents: 5882
diff changeset
  4785
     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
  4786
8897
da8d205a93aa Mark obsolete method as obsolete
Stefan Vogel <sv@exept.de>
parents: 8892
diff changeset
  4787
    <resource: #obsolete>
da8d205a93aa Mark obsolete method as obsolete
Stefan Vogel <sv@exept.de>
parents: 8892
diff changeset
  4788
3188
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4789
    self printOn:aStream base:base
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4790
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4791
    "Modified: / 20.1.1998 / 14:10:45 / stefan"
5988
Claus Gittinger <cg@exept.de>
parents: 5882
diff changeset
  4792
    "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
  4793
!
301eaf46b9e4 Use #printOn: instead of #printString as base method.
Stefan Vogel <sv@exept.de>
parents: 3162
diff changeset
  4794
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4795
printRomanOn:aStream
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4796
    "print the receiver as roman number to the receiver, aStream.
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4797
     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
  4798
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4799
    ^ self printRomanOn:aStream naive:false
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4800
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4801
    "
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4802
     1 to:10 do:[:i | i printRomanOn:Transcript. Transcript cr.].
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4803
     1999 printRomanOn:Transcript. Transcript cr.
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4804
     Date today year printRomanOn:Transcript. Transcript cr.
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4805
    "
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4806
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4807
    "test all between 1 and 9999:
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4808
      1 to:9999 do:[:n |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4809
        |romanString|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4810
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4811
        romanString := String streamContents:[:stream | n printRomanOn:stream].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4812
        (Integer readFromRomanString:romanString onError:nil) ~= n ifTrue:[self halt].
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4813
     ]
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4814
    "
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4815
!
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4816
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4817
printRomanOn:aStream naive:naive
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4818
    "print the receiver as roman number to the receiver, aStream.
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4819
     The naive argument controls if the conversion is
6682
9a97f4deb836 more on roman numbers
Claus Gittinger <cg@exept.de>
parents: 6673
diff changeset
  4820
     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
  4821
     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
  4822
     The naive version is often used for page numbers in documents."
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4823
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4824
    |restValue spec|
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4825
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4826
    restValue := self.
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4827
    restValue > 0 ifFalse:[self error:'negative roman'].
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4828
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4829
    naive ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4830
        spec := #(
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4831
                " value string repeat "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4832
                   1000 'M'    true
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4833
                    500 'D'    false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4834
                    100 'C'    true
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4835
                     50 'L'    false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4836
                     10 'X'    true
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4837
                      5 'V'    false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4838
                      1 'I'    true
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4839
                 ).
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4840
    ] ifFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4841
        spec := #(
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4842
                " value string repeat "
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4843
                   1000 'M'    true
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4844
                    900 'CM'   false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4845
                    500 'D'    false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4846
                    400 'CD'   false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4847
                    100 'C'    true
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4848
                     90 'XC'   false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4849
                     50 'L'    false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4850
                     40 'XL'   false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4851
                     10 'X'    true
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4852
                      9 'IX'   false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4853
                      5 'V'    false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4854
                      4 'IV'   false
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4855
                      1 'I'    true
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4856
                 ).
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4857
    ].
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4858
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4859
    spec
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4860
        inGroupsOf:3
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4861
        do:[:rValue :rString :repeatFlag |
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4862
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4863
            [
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4864
                (restValue >= rValue) ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4865
                    aStream nextPutAll:rString.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4866
                    restValue := restValue - rValue.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4867
                ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4868
            ] doWhile:[ repeatFlag and:[ restValue >= rValue] ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4869
        ].
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4870
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4871
    "
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4872
     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
  4873
     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
  4874
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4875
     1999 printRomanOn:Transcript. Transcript cr.
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4876
     Date today year printRomanOn:Transcript. Transcript cr.
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4877
    "
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4878
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4879
    "test all between 1 and 9999:
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4880
      1 to:9999 do:[:n |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4881
        |romanString|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4882
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4883
        romanString := String streamContents:[:stream | n printRomanOn:stream naive:false].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4884
        (Integer readFromRomanString:romanString onError:nil) ~= n ifTrue:[self halt].
6673
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4885
     ]
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4886
    "
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4887
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4888
    "test naive all between 1 and 9999:
34547f06c5c7 roman numbers revisited
Claus Gittinger <cg@exept.de>
parents: 6640
diff changeset
  4889
      1 to:9999 do:[:n |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4890
        |romanString|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4891
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4892
        romanString := String streamContents:[:stream | n printRomanOn:stream naive:true].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  4893
        (Integer readFromRomanString:romanString onError:nil) ~= n ifTrue:[self halt].
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4894
     ]
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4895
    "
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4896
!
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4897
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4898
printStringRadix:aRadix size:sz fill:fillCharacter
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4899
    "return a string representation of the receiver in the specified
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4900
     radix. The string is padded on the left with fillCharacter to make
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4901
     its size as specified in sz."
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4902
2951
256e90eee7f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2816
diff changeset
  4903
    |s actualSize|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4904
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4905
    s := self printStringRadix:aRadix.
2951
256e90eee7f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2816
diff changeset
  4906
    actualSize := s size.
256e90eee7f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2816
diff changeset
  4907
    actualSize < sz ifTrue:[
23980
6644ef2d4826 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23944
diff changeset
  4908
        ^ (String new:(sz - actualSize) withAll:fillCharacter) , s
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4909
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4910
    ^ s
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4911
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4912
    "
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  4913
     1024 printStringRadix:16 size:4 fill:$0.
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4914
     1024 printStringRadix:2 size:16 fill:$.
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4915
     1024 printStringRadix:16 size:8 fill:(Character space)
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  4916
    "
23980
6644ef2d4826 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23944
diff changeset
  4917
6644ef2d4826 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23944
diff changeset
  4918
    "Modified: / 26-03-2019 / 11:54:52 / Claus Gittinger"
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4919
!
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
  4920
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4921
romanPrintString
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4922
    "return a roman number representation of the receiver as a string"
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4923
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4924
    ^ String streamContents:[:stream | self printRomanOn:stream].
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4925
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4926
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  4927
     1999 romanPrintString.
6635
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4928
     Date today year romanPrintString.
3b5525d83d5d roman numbers
Claus Gittinger <cg@exept.de>
parents: 6534
diff changeset
  4929
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4930
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4931
23496
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4932
!Integer methodsFor:'private'!
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4933
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4934
numberOfDigits:n8BitDigits
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4935
    "initialize the instance to store n8BitDigits"
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4936
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4937
    ^ self subclassResponsibility.
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4938
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4939
    "Created: / 01-11-2018 / 11:28:56 / Stefan Vogel"
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4940
!
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4941
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4942
numberOfDigits:n8BitDigits sign:newSign
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4943
    "initialize the instance to store n8BitDigits and sign"
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4944
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4945
    ^ self subclassResponsibility.
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4946
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4947
    "Created: / 01-11-2018 / 12:12:56 / Stefan Vogel"
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4948
!
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4949
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4950
setSign:aNumber
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4951
    "private: for protocol completeness with LargeIntegers.
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4952
     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
  4953
     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
  4954
     but a new number is returned."
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4955
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4956
    |absVal|
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4957
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4958
    aNumber == 0 ifTrue:[
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4959
        ^ 0
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4960
    ].
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4961
    absVal := self abs.
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4962
    aNumber < 0 ifTrue:[
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4963
        ^ absVal negated
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4964
    ].
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4965
    ^ absVal
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4966
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4967
    "
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4968
     -4 sign:-1
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4969
     -4 sign:0
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4970
     -4 sign:1
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4971
     -4 sign:-1
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4972
     -4 sign:0
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4973
     -4 sign:1
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4974
    "
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4975
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4976
    "Modified (format): / 01-11-2018 / 12:22:48 / Stefan Vogel"
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4977
!
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4978
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4979
sign:aNumber
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4980
    <resource: #obsolete>
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4981
    "destructively change the sign of the receiver"
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4982
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4983
    ^ self setSign:aNumber
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4984
! !
c1ef03a844f8 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23382
diff changeset
  4985
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4986
!Integer methodsFor:'queries'!
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 159
diff changeset
  4987
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  4988
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
  4989
    "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
  4990
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  4991
    self subclassResponsibility
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  4992
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  4993
    "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
  4994
     concrete subclasses."
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 159
diff changeset
  4995
6055
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  4996
"/    |num count|
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  4997
"/
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  4998
"/    num := self.
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  4999
"/    count := n.
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5000
"/    [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
  5001
"/        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
  5002
"/        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
  5003
"/    ].
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5004
"/    ^ num \\ 256
159
514c749165c3 *** empty log message ***
claus
parents: 132
diff changeset
  5005
514c749165c3 *** empty log message ***
claus
parents: 132
diff changeset
  5006
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5007
     16r44332211 digitAt:1
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5008
     16r44332211 digitAt:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5009
     16r44332211 digitAt:3
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5010
     16r44332211 digitAt:4
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5011
     16r44332211 digitAt:5
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5012
     16r00332211 digitAt:4
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5013
     16r00332211 digitAt:5
159
514c749165c3 *** empty log message ***
claus
parents: 132
diff changeset
  5014
    "
6055
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5015
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5016
    "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
  5017
!
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5018
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5019
digitByteAt:n
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5020
    "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
  5021
     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
  5022
     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
  5023
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5024
    self subclassResponsibility
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5025
e4d5016bad38 no need for #digitAt: here - it ought to be redefined in ALL
Claus Gittinger <cg@exept.de>
parents: 5988
diff changeset
  5026
    "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
  5027
    "Modified: / 26.9.2001 / 21:20:19 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5028
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5029
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5030
digitLength
19319
88ea441f7071 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19316
diff changeset
  5031
    "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
  5032
     For negative receivers, the result is not defined by the language standard.
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  5033
     This method is redefined in concrete classes
19319
88ea441f7071 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19316
diff changeset
  5034
     - the fallback here is actually never used."
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5035
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5036
    ^ (self log:256) ceiling asInteger
2816
62edd11b5e66 commentary
Claus Gittinger <cg@exept.de>
parents: 2794
diff changeset
  5037
62edd11b5e66 commentary
Claus Gittinger <cg@exept.de>
parents: 2794
diff changeset
  5038
    "Modified: 31.7.1997 / 13:19:06 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5039
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5040
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5041
exponent
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5042
    "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
  5043
     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
  5044
     This assumes that the mantissa is normalized to
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5045
     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
  5046
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5047
    ^ self abs highBit
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5048
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5049
    "
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5050
     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
  5051
     self assert:( 2.0 exponent = 2 exponent ).
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5052
     self assert:( 3.0 exponent = 3 exponent ).
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5053
     self assert:( 4.0 exponent = 4 exponent ).
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5054
     self assert:( 12345.0 exponent = 12345 exponent ).
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5055
     self assert:( 0.0 exponent = 0 exponent ).
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5056
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5057
     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
  5058
     self assert:( -2.0 exponent = -2 exponent ).
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5059
     self assert:( -3.0 exponent = -3 exponent ).
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5060
     self assert:( -4.0 exponent = -4 exponent ).
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5061
     self assert:( -12345.0 exponent = -12345 exponent ).
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5062
    "
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5063
!
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5064
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5065
isInteger
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5066
    "return true, if the receiver is some kind of integer number"
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5067
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5068
    ^ true
3036
f2d332547db7 added #isPowerOf2
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5069
!
f2d332547db7 added #isPowerOf2
Claus Gittinger <cg@exept.de>
parents: 2951
diff changeset
  5070
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5071
isLiteral
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5072
    "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
  5073
     (i.e. can be used in constant arrays)"
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5074
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5075
    ^ true
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5076
!
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5077
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5078
isPerfectSquare
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5079
    "return true if I am a perfect square.
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5080
     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
  5081
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5082
    |intSqrt realSqrt|
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5083
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5084
    self strictlyPositive ifFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5085
        self == 0 ifTrue:[^ true].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5086
        "/ should we raise a domain error for negative receivers?
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5087
        ^ false
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5088
    ].
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5089
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5090
    "/ 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
  5091
    self < 400 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5092
        ^ #(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
  5093
    ].
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5094
    self < 1024 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5095
        ^ #(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
  5096
    ].
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5097
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5098
    "/ try powers of 2
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5099
    self isPowerOfTwo ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5100
        ^ self lowBit odd
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5101
    ].
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5102
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5103
    "/ guess
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5104
    realSqrt := self sqrt.
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5105
    realSqrt isFinite ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5106
        realSqrt = realSqrt truncated ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5107
            "/ still have to check due to rounding errors.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5108
            intSqrt := realSqrt truncated asInteger.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5109
            ^ intSqrt squared = self
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5110
        ].
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5111
    ].
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5112
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5113
    "/ slow code
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5114
    intSqrt := self integerSqrt.
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5115
    ^ intSqrt squared = self
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5116
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5117
    "
19058
Claus Gittinger <cg@exept.de>
parents: 19053
diff changeset
  5118
     0 isPerfectSquare
Claus Gittinger <cg@exept.de>
parents: 19053
diff changeset
  5119
     3 isPerfectSquare
Claus Gittinger <cg@exept.de>
parents: 19053
diff changeset
  5120
     4 isPerfectSquare
Claus Gittinger <cg@exept.de>
parents: 19053
diff changeset
  5121
     9 isPerfectSquare
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5122
     (1 to:1000000) count:[:n | n isPerfectSquare] 1000
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5123
     12345678987654321234567 isPerfectSquare
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5124
     123123123432 squared isPerfectSquare
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5125
     (123123123432 raisedTo:7) isPerfectSquare
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5126
     ((123456789123456789 raisedTo:7)) isPerfectSquare
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5127
     ((123456789123456789 raisedTo:7)-1) isPerfectSquare
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5128
     Time microsecondsToRun:[12345678987654321234567 isPerfectSquare]
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5129
    "
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5130
!
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5131
9134
98d5bfd1cc51 +isPowerOf:
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  5132
isPowerOf:p
98d5bfd1cc51 +isPowerOf:
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  5133
    "return true, if the receiver is a power of p"
98d5bfd1cc51 +isPowerOf:
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  5134
98d5bfd1cc51 +isPowerOf:
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  5135
    p == 2 ifTrue:[ ^ self isPowerOfTwo].
98d5bfd1cc51 +isPowerOf:
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  5136
98d5bfd1cc51 +isPowerOf:
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  5137
    "/ the following is a q&d hack, using existing code.
98d5bfd1cc51 +isPowerOf:
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  5138
    ^ (Integer
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5139
        readFromString:(self printStringRadix:p)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5140
        radix:2
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5141
        onError:-1) isPowerOfTwo
9134
98d5bfd1cc51 +isPowerOf:
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  5142
98d5bfd1cc51 +isPowerOf:
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  5143
    "
19058
Claus Gittinger <cg@exept.de>
parents: 19053
diff changeset
  5144
     0 isPowerOf:2
Claus Gittinger <cg@exept.de>
parents: 19053
diff changeset
  5145
     1 isPowerOf:2
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5146
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5147
     16r0000000000000000 isPowerOf:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5148
     16r0000004000000000 isPowerOf:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5149
     16r0000004000000001 isPowerOf:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5150
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5151
     16r0000000000000001 isPowerOf:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5152
     16r0000000000000002 isPowerOf:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5153
     16r0000000000000004 isPowerOf:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5154
     16r0000000000000008 isPowerOf:2
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5155
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5156
     16r0000000000000001 isPowerOf:4
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5157
     16r0000000000000002 isPowerOf:4
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5158
     16r0000000000000004 isPowerOf:4
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5159
     16r0000000000000008 isPowerOf:4
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5160
     16r0000000000000010 isPowerOf:4
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5161
     16r0000000000000020 isPowerOf:4
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5162
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5163
     3r0000000000000001 isPowerOf:3
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5164
     3r0000000000000010 isPowerOf:3
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5165
     3r0000000000000100 isPowerOf:3
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5166
     3r0000000000001000 isPowerOf:3
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5167
     3r0000000000001001 isPowerOf:3
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5168
     3r0000000000002000 isPowerOf:3
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5169
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5170
     10 isPowerOf:10
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5171
     20 isPowerOf:10
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5172
     100 isPowerOf:10
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5173
     110 isPowerOf:10
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5174
     200 isPowerOf:10
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5175
     1000 isPowerOf:10
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5176
     10000 isPowerOf:10
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5177
     100000 isPowerOf:10
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  5178
     100001 isPowerOf:10
9134
98d5bfd1cc51 +isPowerOf:
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  5179
 "
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5180
!
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5181
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5182
isPowerOfTwo
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5183
    "return true, if the receiver is a power of 2"
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5184
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5185
    "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
  5186
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5187
    |maxBytes "{ Class: SmallInteger }"|
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5188
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5189
    maxBytes := self digitLength.
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5190
    (self digitAt:maxBytes) isPowerOfTwo ifFalse:[^ false].
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5191
    1 to:maxBytes-1 do:[:byteIndex |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5192
        (self digitAt:byteIndex) ~~ 0 ifTrue:[^ false].
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5193
    ].
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5194
    ^ true
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5195
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5196
    "
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5197
     10000 factorial isPowerOfTwo
24099
b01e81fcd293 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24005
diff changeset
  5198
     |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
  5199
    "
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5200
    "
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5201
     (2 raisedTo:10000) isPowerOfTwo
24099
b01e81fcd293 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24005
diff changeset
  5202
     |n| n := (2 raisedTo:10000). Time millisecondsToRun:[10000 timesRepeat:[ n isPowerOfTwo]]
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5203
    "
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5204
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5205
    "Modified: / 20-06-2011 / 12:43:05 / cg"
24099
b01e81fcd293 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24005
diff changeset
  5206
    "Modified (comment): / 30-04-2019 / 23:13:25 / Claus Gittinger"
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5207
!
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5208
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5209
isPrime
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5210
    "return true if I am a prime Number.
22114
94a519213339 #BUGFIX by mawalch
mawalch
parents: 22107
diff changeset
  5211
     Pre-condition: I am positive.
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5212
     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
  5213
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5214
    |limit firstFewPrimes|
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5215
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5216
    self even ifTrue:[^ self == 2 ].
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5217
    self == 1 ifTrue:[^ false ].
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5218
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5219
    "/ See comment in initializePrimeCacheUpTo:limit
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5220
    "/      Integer initializePrimeCacheUpTo:(10 raisedTo:7)
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5221
    "/      Integer flushPrimeCache
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5222
    "/
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5223
    "/ by default, no primeCache is used.
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5224
    "/ 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
  5225
    "/      Integer initializePrimeCacheUpTo:1000000
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5226
    "/ and when done, cleanup with flushPrimeCache
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5227
    PrimeCache notNil ifTrue:[
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5228
        self <= (PrimeCache size*2) ifTrue:[
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5229
            ^ PrimeCache at:self//2.
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5230
        ].
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5231
    ].
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  5232
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5233
    firstFewPrimes := self class primesUpTo5000.
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5234
    limit := firstFewPrimes last + 1.
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5235
    self < (limit*limit) ifTrue:[
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5236
        limit := self sqrt asInteger.
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  5237
    ].
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5238
    firstFewPrimes do:[:p |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5239
        p > limit ifTrue:[^ true].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5240
        (self \\ p) == 0 ifTrue:[ ^ false ].
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5241
    ].
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5242
19118
c49679d75a5d #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19094
diff changeset
  5243
    PrimeNumberGenerator notNil ifTrue:[    "from exept:libcrypt"
c49679d75a5d #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19094
diff changeset
  5244
        "speed up a lot for large primes"
c49679d75a5d #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19094
diff changeset
  5245
        ^ PrimeNumberGenerator isPrime:self.
c49679d75a5d #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19094
diff changeset
  5246
    ].
c49679d75a5d #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19094
diff changeset
  5247
22114
94a519213339 #BUGFIX by mawalch
mawalch
parents: 22107
diff changeset
  5248
    "/ Not absolutely correct, but was broken much worse before.
22118
bb1fee4735ae #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 22114
diff changeset
  5249
    limit := self integerSqrt.
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5250
    (firstFewPrimes last+2) to:limit by:2 do:[:i |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5251
        (self \\ i) == 0 ifTrue:[ ^ false ].
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5252
    ].
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5253
    ^ true
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5254
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5255
    "
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5256
     Integer primesUpTo:1000
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5257
     (1 to:1000000) count:[:n | n isPrime] 78498
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5258
     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
  5259
     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
  5260
     Time millisecondsToRun:[ (1 to:1000000) count:[:n | n isPrime]] 343    with primeCache
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5261
    "
22114
94a519213339 #BUGFIX by mawalch
mawalch
parents: 22107
diff changeset
  5262
94a519213339 #BUGFIX by mawalch
mawalch
parents: 22107
diff changeset
  5263
    "Modified (comment): / 26-07-2017 / 12:58:45 / mawalch"
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5264
!
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5265
23119
8ca65ffe917f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23118
diff changeset
  5266
nextMultipleOf:n
14680
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5267
    "return the multiple of n at or above the receiver.
23119
8ca65ffe917f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23118
diff changeset
  5268
     (?? The name of this method may be a bit misleading,
8ca65ffe917f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23118
diff changeset
  5269
      as it returns the receiver iff it is already a multiple)
16800
45ef192ee95f class: Integer
Claus Gittinger <cg@exept.de>
parents: 16723
diff changeset
  5270
     Useful for padding, aligning or rounding,
21774
c6fb8f0b4597 #OTHER by mawalch
mawalch
parents: 21637
diff changeset
  5271
     especially when reading aligned binary data."
14677
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5272
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5273
    |rest|
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5274
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5275
    rest := self \\ n.
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5276
    rest == 0 ifTrue:[ ^ self ].
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5277
    ^ self + (n - rest)
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5278
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5279
    "
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5280
     0 nextMultipleOf: 4 -> 0
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5281
     1 nextMultipleOf: 4 -> 4
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5282
     2 nextMultipleOf: 4 -> 4 
20269
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  5283
     3 nextMultipleOf: 4 -> 4
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  5284
     4 nextMultipleOf: 4 -> 4
0d108b055dfc #DOCUMENTATION by mawalch
mawalch
parents: 20268
diff changeset
  5285
     5 nextMultipleOf: 4 -> 8
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5286
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5287
     22 nextMultipleOf: 4
19128
0d9e7097fce7 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 19125
diff changeset
  5288
     100 factorial nextMultipleOf: 4
14677
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5289
    "
21774
c6fb8f0b4597 #OTHER by mawalch
mawalch
parents: 21637
diff changeset
  5290
c6fb8f0b4597 #OTHER by mawalch
mawalch
parents: 21637
diff changeset
  5291
    "Modified (comment): / 29-05-2017 / 15:40:45 / mawalch"
23119
8ca65ffe917f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23118
diff changeset
  5292
    "Modified (comment): / 20-06-2018 / 15:36:33 / Claus Gittinger"
14677
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5293
!
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  5294
14680
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5295
nextPowerOf2
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5296
    "return the power of 2 at or above the receiver.
18769
Claus Gittinger <cg@exept.de>
parents: 18380
diff changeset
  5297
     Useful for padding.
19058
Claus Gittinger <cg@exept.de>
parents: 19053
diff changeset
  5298
     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
  5299
     Also notice, that (because it is used for padding),
19058
Claus Gittinger <cg@exept.de>
parents: 19053
diff changeset
  5300
     0 is returned for zero."
14680
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5301
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5302
    |x t sh|
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5303
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5304
    x := self - 1.
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5305
    x := x bitOr: (x bitShift: -1).
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5306
    x := x bitOr: (x bitShift: -2).
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5307
    x := x bitOr: (x bitShift: -4).
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5308
    x := x bitOr: (x bitShift: -8).
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5309
    x := x bitOr: (t := x bitShift: -16).
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5310
    t == 0 ifFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5311
        sh := -32.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5312
        [
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5313
            x := x bitOr: (t := x bitShift: sh).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5314
            sh := sh + sh.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5315
        ] doWhile: [t ~~ 0]
14680
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5316
    ].
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5317
    ^ x + 1
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5318
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5319
    "
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5320
     0 nextPowerOf2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5321
     1 nextPowerOf2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5322
     2 nextPowerOf2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5323
     3 nextPowerOf2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5324
     4 nextPowerOf2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5325
     5 nextPowerOf2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5326
     6 nextPowerOf2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5327
     7 nextPowerOf2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5328
     8 nextPowerOf2
14680
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5329
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5330
     22 nextPowerOf2
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5331
     12 factorial nextPowerOf2  isPowerOf:2
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5332
     100 factorial nextPowerOf2  isPowerOf:2
18905
256565ff9803 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18865
diff changeset
  5333
     1000 factorial nextPowerOf2  isPowerOf:2
256565ff9803 #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18865
diff changeset
  5334
     Time millisecondsToRun:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5335
         |v|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5336
         v := 1000 factorial.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5337
         1000 timesRepeat:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5338
            v nextPowerOf2
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5339
         ]
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5340
     ]
14680
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5341
    "
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5342
!
eb312d015dd6 class: Integer
Claus Gittinger <cg@exept.de>
parents: 14677
diff changeset
  5343
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5344
nextPrime
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5345
    "return the next prime after the receiver"
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5346
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5347
    |num|
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5348
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5349
    num := self + 1.
19015
8cce2933467a #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18981
diff changeset
  5350
    num <= 2 ifTrue:[^ 2].
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5351
    num even ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5352
        num := num + 1
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5353
    ].
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5354
    [num isPrime] whileFalse:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5355
        num := num + 2
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5356
    ].
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5357
    ^ num
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5358
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5359
    "
19015
8cce2933467a #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18981
diff changeset
  5360
     0 nextPrime
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5361
     1 nextPrime
19015
8cce2933467a #BUGFIX
Claus Gittinger <cg@exept.de>
parents: 18981
diff changeset
  5362
     2 nextPrime
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5363
     22 nextPrime
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5364
     37 nextPrime
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5365
     36 nextPrime
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5366
     3456737 nextPrime
18865
1e6e937f7cf0 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18851
diff changeset
  5367
     1000 factorial nextPrime
13815
a03b833fb6f8 category of:
Claus Gittinger <cg@exept.de>
parents: 13725
diff changeset
  5368
    "
13905
7eb024efb58a added: #parity
Claus Gittinger <cg@exept.de>
parents: 13815
diff changeset
  5369
!
7eb024efb58a added: #parity
Claus Gittinger <cg@exept.de>
parents: 13815
diff changeset
  5370
13906
5543bafd72a9 added: #parityOdd
Claus Gittinger <cg@exept.de>
parents: 13905
diff changeset
  5371
parityOdd
13914
725916ddad3f comment/format
Claus Gittinger <cg@exept.de>
parents: 13907
diff changeset
  5372
    "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
  5373
     (i.e. true for odd parity)
7eb024efb58a added: #parity
Claus Gittinger <cg@exept.de>
parents: 13815
diff changeset
  5374
     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
  5375
7eb024efb58a added: #parity
Claus Gittinger <cg@exept.de>
parents: 13815
diff changeset
  5376
    ^ self bitCount odd
7eb024efb58a added: #parity
Claus Gittinger <cg@exept.de>
parents: 13815
diff changeset
  5377
7eb024efb58a added: #parity
Claus Gittinger <cg@exept.de>
parents: 13815
diff changeset
  5378
    "
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5379
     0 parityOdd
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5380
     1 parityOdd
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5381
     2 parityOdd
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5382
     4 parityOdd
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5383
     5 parityOdd
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5384
     7 parityOdd
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5385
     33 parityOdd
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5386
     6 parityOdd
13905
7eb024efb58a added: #parity
Claus Gittinger <cg@exept.de>
parents: 13815
diff changeset
  5387
7eb024efb58a added: #parity
Claus Gittinger <cg@exept.de>
parents: 13815
diff changeset
  5388
     1 to:1000000 do:[:n |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5389
        self assert:(n parityOdd = ((n printStringRadix:2) occurrencesOf:$1) odd).
13905
7eb024efb58a added: #parity
Claus Gittinger <cg@exept.de>
parents: 13815
diff changeset
  5390
     ]
13906
5543bafd72a9 added: #parityOdd
Claus Gittinger <cg@exept.de>
parents: 13905
diff changeset
  5391
5543bafd72a9 added: #parityOdd
Claus Gittinger <cg@exept.de>
parents: 13905
diff changeset
  5392
     0 to:255 do:[:n |
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5393
        |p|
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5394
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5395
        p :=
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5396
            (((((((((n rightShift: 7)
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5397
            bitXor: (n rightShift: 6))
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5398
                bitXor: (n rightShift: 5))
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5399
                    bitXor: (n rightShift: 4))
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5400
                        bitXor: (n rightShift: 3))
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5401
                            bitXor: (n rightShift: 2))
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5402
                                bitXor: (n rightShift: 1))
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5403
                                    bitXor: n) bitAnd:1) == 1.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5404
        self assert:(n parityOdd = p).
13906
5543bafd72a9 added: #parityOdd
Claus Gittinger <cg@exept.de>
parents: 13905
diff changeset
  5405
     ]
5543bafd72a9 added: #parityOdd
Claus Gittinger <cg@exept.de>
parents: 13905
diff changeset
  5406
    "
5543bafd72a9 added: #parityOdd
Claus Gittinger <cg@exept.de>
parents: 13905
diff changeset
  5407
5543bafd72a9 added: #parityOdd
Claus Gittinger <cg@exept.de>
parents: 13905
diff changeset
  5408
    "Created: / 09-01-2012 / 17:18:06 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5409
! !
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 159
diff changeset
  5410
23944
1f8b8f9e755f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23930
diff changeset
  5411
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5412
!Integer methodsFor:'special modulo arithmetic'!
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5413
12605
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5414
add_32:anInteger
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5415
    "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
  5416
     Both must be either Small- or LargeIntegers.
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5417
     Returns a signed 32bit number.
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5418
     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
  5419
     modulu operations with C semantics."
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5420
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5421
%{  /* NOCONTEXT */
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5422
    int val1, val2, rslt;
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5423
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5424
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5425
        val1 = __intVal(self);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5426
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5427
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5428
        if (!val1) goto bad;
12605
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5429
    }
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5430
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5431
        val2 = __intVal(anInteger);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5432
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5433
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5434
        if (!val2) goto bad;
12605
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5435
    }
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5436
    rslt = val1 + val2;
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5437
    RETURN(__MKINT(rslt));
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5438
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5439
  bad: ;
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5440
%}.
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5441
    self primitiveFailed.
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5442
!
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5443
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5444
add_32u:anInteger
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5445
    "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
  5446
     Both must be either Small- or LargeIntegers.
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5447
     Returns an unsigned 32bit number.
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5448
     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
  5449
     modulu operations with C semantics."
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5450
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5451
%{  /* NOCONTEXT */
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5452
    int val1, val2, rslt;
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5453
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5454
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5455
        val1 = __intVal(self);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5456
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5457
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5458
        if (!val1) goto bad;
12605
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5459
    }
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5460
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5461
        val2 = __intVal(anInteger);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5462
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5463
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5464
        if (!val2) goto bad;
12605
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5465
    }
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5466
    rslt = val1 + val2;
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5467
    RETURN(__MKUINT((unsigned)rslt));
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5468
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5469
  bad: ;
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5470
%}.
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5471
    self primitiveFailed.
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5472
!
9bf77c63d4b2 added:8 methods for 32bit modulu arithmetic
Claus Gittinger <cg@exept.de>
parents: 12588
diff changeset
  5473
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5474
mul_32:anInteger
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5475
    "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
  5476
     Both must be either Small- or LargeIntegers.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5477
     Returns a signed 32bit number.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5478
     This (nonstandard) specialized method is provided to allow simulation of
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5479
     modulu operations with C semantics."
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5480
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5481
%{  /* NOCONTEXT */
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5482
    int val1, val2, rslt;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5483
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5484
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5485
        val1 = __intVal(self);
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5486
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5487
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5488
        if (!val1) goto bad;
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5489
    }
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5490
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5491
        val2 = __intVal(anInteger);
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5492
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5493
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5494
        if (!val2) goto bad;
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5495
    }
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5496
    rslt = val1 * val2;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5497
    RETURN(__MKINT(rslt));
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5498
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5499
  bad: ;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5500
%}.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5501
    self primitiveFailed.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5502
!
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5503
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5504
mul_32u:anInteger
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5505
    "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
  5506
     Both must be either Small- or LargeIntegers.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5507
     Returns an unsigned 32bit number.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5508
     This (nonstandard) specialized method is provided to allow simulation of
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5509
     modulu operations with C semantics."
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5510
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5511
%{  /* NOCONTEXT */
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5512
    int val1, val2, rslt;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5513
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5514
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5515
        val1 = __intVal(self);
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5516
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5517
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5518
        if (!val1) goto bad;
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5519
    }
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5520
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5521
        val2 = __intVal(anInteger);
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5522
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5523
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5524
        if (!val2) goto bad;
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5525
    }
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5526
    rslt = val1 * val2;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5527
    RETURN(__MKUINT((unsigned)rslt));
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5528
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5529
  bad: ;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5530
%}.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5531
    self primitiveFailed.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5532
!
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5533
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5534
sub_32:anInteger
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5535
    "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
  5536
     Both must be either Small- or LargeIntegers.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5537
     Returns a signed 32bit number.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5538
     This (nonstandard) specialized method is provided to allow simulation of
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5539
     modulu operations with C semantics."
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5540
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5541
%{  /* NOCONTEXT */
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5542
    int val1, val2, rslt;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5543
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5544
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5545
        val1 = __intVal(self);
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5546
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5547
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5548
        if (!val1) goto bad;
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5549
    }
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5550
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5551
        val2 = __intVal(anInteger);
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5552
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5553
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5554
        if (!val2) goto bad;
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5555
    }
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5556
    rslt = val1 - val2;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5557
    RETURN(__MKINT(rslt));
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5558
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5559
  bad: ;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5560
%}.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5561
    self primitiveFailed.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5562
!
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5563
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5564
sub_32u:anInteger
19076
6765dbf123d8 now compilable with NUMBER-as-binexpr fix
Claus Gittinger <cg@exept.de>
parents: 19071
diff changeset
  5565
    "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
  5566
     Both must be either Small- or LargeIntegers.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5567
     Returns an unsigned 32bit number.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5568
     This (nonstandard) specialized method is provided to allow simulation of
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5569
     modulu operations with C semantics."
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5570
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5571
%{  /* NOCONTEXT */
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5572
    int val1, val2, rslt;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5573
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5574
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5575
        val1 = __intVal(self);
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5576
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5577
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5578
        if (!val1) goto bad;
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5579
    }
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5580
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5581
        val2 = __intVal(anInteger);
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5582
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5583
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5584
        if (!val2) goto bad;
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5585
    }
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5586
    rslt = val1 - val2;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5587
    RETURN(__MKUINT((unsigned)rslt));
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5588
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5589
  bad: ;
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5590
%}.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5591
    self primitiveFailed.
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5592
! !
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5593
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5594
!Integer methodsFor:'special modulo bit operators'!
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5595
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5596
asSigned32
23930
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5597
    "return a 32-bit integer with my bit-pattern. 
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5598
     For protocol completeness."
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5599
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5600
    ^ self
23930
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5601
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5602
    "Modified (comment): / 17-03-2019 / 12:08:09 / Claus Gittinger"
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5603
!
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5604
22069
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5605
asUnsigned128
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5606
    "return a 128-bit integer with my bit-pattern, but positive.
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5607
     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
  5608
     convert C numbers.
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5609
     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
  5610
     may have to do a bitwise-and on the result"
22069
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5611
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5612
    self < 0 ifTrue:[
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5613
        ^ 16r1000000000000000000000000000000000 + self
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5614
    ].
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5615
    ^ self
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5616
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5617
    "
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5618
     (-1 asUnsigned128) hexPrintString
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5619
     1 asUnsigned128
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5620
     (SmallInteger minVal asUnsigned128) hexPrintString
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5621
     (SmallInteger maxVal asUnsigned128) hexPrintString
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5622
    "
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5623
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5624
    "Created: / 21-07-2017 / 14:44:19 / cg"
23930
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5625
    "Modified (comment): / 17-03-2019 / 12:20:59 / Claus Gittinger"
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5626
!
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5627
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5628
asUnsigned16
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5629
    "return a 16-bit integer with my bit-pattern, but positive.
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5630
     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
  5631
     convert C/Java numbers.
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5632
     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
  5633
     may have to do a bitwise-and on the result"
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5634
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5635
    self < 0 ifTrue:[
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5636
        ^ 16r10000 + self
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5637
    ].
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5638
    ^ self
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5639
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5640
    "
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5641
     (-1 asUnsigned16) hexPrintString
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5642
     1 asUnsigned16
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5643
     (SmallInteger minVal asUnsigned16) hexPrintString
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5644
     (SmallInteger maxVal asUnsigned16) hexPrintString
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5645
    "
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5646
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5647
    "Created: / 17-03-2019 / 12:07:23 / Claus Gittinger"
22069
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5648
!
1898747d4358 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21993
diff changeset
  5649
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5650
asUnsigned32
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5651
    "return a 32-bit integer with my bit-pattern, but positive.
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5652
     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
  5653
     convert C/Java numbers.
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5654
     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
  5655
     may have to do a bitwise-and on the result"
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5656
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5657
    self < 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5658
        ^ 16r100000000 + self
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5659
    ].
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5660
    ^ self
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5661
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5662
    "
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5663
     (-1 asUnsigned32) hexPrintString
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5664
     1 asUnsigned32
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5665
     (SmallInteger minVal asUnsigned32) hexPrintString
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5666
     (SmallInteger maxVal asUnsigned32) hexPrintString
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5667
    "
23930
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5668
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5669
    "Modified (comment): / 17-03-2019 / 12:20:48 / Claus Gittinger"
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5670
!
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5671
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5672
asUnsigned64
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5673
    "return a 64-bit integer with my bit-pattern, but positive.
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5674
     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
  5675
     convert C/Java numbers.
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5676
     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
  5677
     may have to do a bitwise-and on the result"
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5678
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5679
    self < 0 ifTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5680
        ^ 16r10000000000000000 + self
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5681
    ].
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5682
    ^ self
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5683
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5684
    "
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5685
     (-1 asUnsigned64) hexPrintString
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5686
     1 asUnsigned64
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5687
     (SmallInteger minVal asUnsigned64) hexPrintString
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5688
     (SmallInteger maxVal asUnsigned64) hexPrintString
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5689
    "
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5690
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5691
    "Created: / 26-07-2013 / 13:45:11 / cg"
23930
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5692
    "Modified (comment): / 17-03-2019 / 12:20:54 / Claus Gittinger"
16293
0eb93c6dd384 class: Integer
Claus Gittinger <cg@exept.de>
parents: 16120
diff changeset
  5693
!
13725
90db4d7613ee category of:15 methods
Claus Gittinger <cg@exept.de>
parents: 13718
diff changeset
  5694
22072
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5695
asUnsigned:numBits
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5696
    "return a numBits integer with my bit-pattern, but positive.
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5697
     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
  5698
     convert C/Java numbers, or to generate bitfields from signed numbers
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5699
     (kind of the reverse operation to signExtenedFromBit:).
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5700
     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
  5701
     may have to do a bitwise-and on the result"
22072
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5702
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5703
    self < 0 ifTrue:[
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5704
        ^ (1 bitShift:numBits) + self
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5705
    ].
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5706
    ^ self
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5707
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5708
    "
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5709
     (-1 asUnsigned:64) hexPrintString
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5710
     1 asUnsigned:64
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5711
     (SmallInteger minVal asUnsigned:64) hexPrintString
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5712
     (SmallInteger maxVal asUnsigned:64) hexPrintString
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5713
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5714
     (-1 asUnsigned:4) hexPrintString
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5715
     (-7 asUnsigned:4) hexPrintString
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5716
     (-8 asUnsigned:4) hexPrintString
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5717
     1 asUnsigned:4
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5718
    "
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5719
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5720
    "Created: / 21-07-2017 / 15:11:40 / cg"
23930
4a6dd956e708 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23646
diff changeset
  5721
    "Modified (comment): / 17-03-2019 / 12:21:15 / Claus Gittinger"
22072
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5722
!
c436a53aa43d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22071
diff changeset
  5723
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5724
bitAnd_32:anInteger
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5725
    "return a C-semantic 32bit locical-and of the receiver and
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5726
     the argument. Both must be either Small- or LargeIntegers.
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5727
     Returns a signed 32bit number.
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5728
     This (nonstandard) specialized method is provided to allow simulation of
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5729
     bit operations with C semantics."
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5730
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5731
%{  /* NOCONTEXT */
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5732
    int val1, val2, rslt;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5733
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5734
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5735
        val1 = __intVal(self);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5736
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5737
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5738
        if (!val1) goto bad;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5739
    }
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5740
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5741
        val2 = __intVal(anInteger);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5742
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5743
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5744
        if (!val2) goto bad;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5745
    }
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5746
    rslt = val1 & val2;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5747
    RETURN(__MKINT(rslt));
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5748
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5749
  bad: ;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5750
%}.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5751
    self primitiveFailed.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5752
!
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5753
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5754
bitAnd_32u:anInteger
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5755
    "return a C-semantic 32bit locical-and of the receiver and
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5756
     the argument. Both must be either Small- or LargeIntegers.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5757
     Returns an unsigned 32bit number.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5758
     This (nonstandard) specialized method is provided to allow simulation of
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5759
     bit operations with C semantics."
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5760
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5761
%{  /* NOCONTEXT */
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5762
    int val1, val2, rslt;
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5763
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5764
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5765
        val1 = __intVal(self);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5766
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5767
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5768
        if (!val1) goto bad;
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5769
    }
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5770
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5771
        val2 = __intVal(anInteger);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5772
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5773
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5774
        if (!val2) goto bad;
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5775
    }
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5776
    rslt = val1 & val2;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5777
    RETURN(__MKUINT(rslt));
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5778
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5779
  bad: ;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5780
%}.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5781
    self primitiveFailed.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5782
!
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5783
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5784
bitInvert_32
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5785
    "return a C-semantic 32bit complement of the receiver,
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5786
     which must be either Small- or LargeIntegers.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5787
     Returns a signed 32bit number.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5788
     This (nonstandard) specialized method is provided to allow simulation of
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5789
     bit operations with C semantics."
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5790
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5791
%{  /* NOCONTEXT */
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5792
    int val, rslt;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5793
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5794
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5795
        val = __intVal(self);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5796
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5797
        val = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5798
        if (!val) goto bad;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5799
    }
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5800
    rslt = ~val;
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5801
    RETURN(__MKINT(rslt));
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5802
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5803
  bad: ;
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5804
%}.
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5805
    self primitiveFailed.
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5806
!
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5807
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5808
bitInvert_32u
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5809
    "return a C-semantic 32bit complement of the receiver,
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5810
     which must be either Small- or LargeIntegers.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5811
     Returns an unsigned 32bit number.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5812
     This (nonstandard) specialized method is provided to allow simulation of
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5813
     bit operations with C semantics."
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5814
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5815
%{  /* NOCONTEXT */
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5816
    int val, rslt;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5817
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5818
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5819
        val = __intVal(self);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5820
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5821
        val = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5822
        if (!val) goto bad;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5823
    }
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5824
    rslt = ~val;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5825
    RETURN(__MKUINT(rslt));
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5826
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5827
  bad: ;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5828
%}.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5829
    self primitiveFailed.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5830
!
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5831
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5832
bitOr_32:anInteger
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5833
    "return a C-semantic 32bit locical-or of the receiver and
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5834
     the argument. Both must be either Small- or LargeIntegers.
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5835
     Returns a signed 32bit number.
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5836
     This (nonstandard) specialized method is provided to allow simulation of
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5837
     bit operations with C semantics."
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5838
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5839
%{  /* NOCONTEXT */
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5840
    int val1, val2, rslt;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5841
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5842
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5843
        val1 = __intVal(self);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5844
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5845
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5846
        if (!val1) goto bad;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5847
    }
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5848
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5849
        val2 = __intVal(anInteger);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5850
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5851
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5852
        if (!val2) goto bad;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5853
    }
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5854
    rslt = val1 | val2;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5855
    RETURN(__MKINT(rslt));
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5856
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5857
  bad: ;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5858
%}.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5859
    self primitiveFailed.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5860
!
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5861
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5862
bitOr_32u:anInteger
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5863
    "return a C-semantic 32bit locical-or of the receiver and
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5864
     the argument. Both must be either Small- or LargeIntegers.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5865
     Returns an unsigned 32bit number.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5866
     This (nonstandard) specialized method is provided to allow simulation of
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5867
     bit operations with C semantics."
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5868
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5869
%{  /* NOCONTEXT */
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5870
    int val1, val2, rslt;
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5871
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5872
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5873
        val1 = __intVal(self);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5874
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5875
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5876
        if (!val1) goto bad;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5877
    }
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5878
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5879
        val2 = __intVal(anInteger);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5880
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5881
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5882
        if (!val2) goto bad;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5883
    }
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5884
    rslt = val1 | val2;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5885
    RETURN(__MKUINT(rslt));
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5886
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5887
  bad: ;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5888
%}.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5889
    self primitiveFailed.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5890
!
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5891
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5892
bitXor_32:anInteger
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5893
    "return a C-semantic 32bit locical-xor of the receiver and
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5894
     the argument. Both must be either Small- or LargeIntegers.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5895
     Returns a signed 32bit number.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5896
     This (nonstandard) specialized method is provided to allow simulation of
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5897
     bit operations with C semantics."
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5898
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5899
%{  /* NOCONTEXT */
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5900
    int val1, val2, rslt;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5901
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5902
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5903
        val1 = __intVal(self);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5904
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5905
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5906
        if (!val1) goto bad;
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5907
    }
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5908
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5909
        val2 = __intVal(anInteger);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5910
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5911
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5912
        if (!val2) goto bad;
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5913
    }
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5914
    rslt = val1 ^ val2;
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5915
    RETURN(__MKINT(rslt));
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5916
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5917
  bad: ;
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5918
%}.
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5919
    self primitiveFailed.
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5920
!
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5921
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5922
bitXor_32u:anInteger
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5923
    "return a C-semantic 32bit locical-xor of the receiver and
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5924
     the argument. Both must be either Small- or LargeIntegers.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5925
     Returns an unsigned 32bit number.
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5926
     This (nonstandard) specialized method is provided to allow simulation of
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5927
     bit operations with C semantics."
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5928
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5929
%{  /* NOCONTEXT */
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5930
    int val1, val2, rslt;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5931
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5932
    if (__isSmallInteger(self)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5933
        val1 = __intVal(self);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5934
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5935
        val1 = __longIntVal(self);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5936
        if (!val1) goto bad;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5937
    }
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5938
    if (__isSmallInteger(anInteger)) {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5939
        val2 = __intVal(anInteger);
12652
840f87f12979 changed:14 methods
Claus Gittinger <cg@exept.de>
parents: 12605
diff changeset
  5940
    } else {
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5941
        val2 = __longIntVal(anInteger);
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  5942
        if (!val2) goto bad;
12255
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5943
    }
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5944
    rslt = val1 ^ val2;
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5945
    RETURN(__MKUINT(rslt));
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5946
80362b5e0067 added:6 methods
Claus Gittinger <cg@exept.de>
parents: 12147
diff changeset
  5947
  bad: ;
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
    self primitiveFailed.
2458
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5950
! !
4f29a9dd12fe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2457
diff changeset
  5951
4653
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  5952
!Integer methodsFor:'tracing'!
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  5953
4682
4158042a9c8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4653
diff changeset
  5954
traceInto:aRequestor level:level from:referrer
4653
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  5955
    "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
  5956
4682
4158042a9c8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4653
diff changeset
  5957
    ^ aRequestor traceInteger:self level:level from:referrer
4653
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  5958
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  5959
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  5960
! !
b3d38149fbde added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4643
diff changeset
  5961
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5962
!Integer methodsFor:'truncation & rounding'!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5963
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5964
ceiling
1558
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  5965
    "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
  5966
     For integers, this is the receiver itself."
345
claus
parents: 328
diff changeset
  5967
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5968
    ^ self
1558
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  5969
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  5970
    "Modified: 18.7.1996 / 12:44:06 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5971
!
345
claus
parents: 328
diff changeset
  5972
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5973
compressed
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  5974
    "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
  5975
     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
  5976
     zeros removed. This method is redefined in LargeInteger."
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5977
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  5978
    ^ self
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  5979
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  5980
    "Modified: 5.11.1996 / 14:07:41 / cg"
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 159
diff changeset
  5981
!
40ca7cc6fb9c *** empty log message ***
claus
parents: 159
diff changeset
  5982
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5983
floor
1558
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  5984
    "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
  5985
     For integers, this is the receiver itself."
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5986
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5987
    ^ self
1558
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  5988
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  5989
    "Modified: 18.7.1996 / 12:44:00 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  5990
!
202
40ca7cc6fb9c *** empty log message ***
claus
parents: 159
diff changeset
  5991
1866
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  5992
fractionPart
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  5993
    "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
  5994
     (i.e. the receiver minus its truncated value)
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  5995
     Since integers have no fraction, return 0 here."
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  5996
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  5997
    ^ 0
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  5998
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  5999
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  6000
     1234.56789 fractionPart
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  6001
     1.2345e6 fractionPart
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  6002
     1000 fractionPart
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  6003
     10000000000000000 fractionPart
1866
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6004
    "
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6005
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6006
    "Modified: 4.11.1996 / 20:27:44 / cg"
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6007
!
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6008
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6009
integerPart
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6010
    "return a number with value from digits before the decimal point.
18851
11fd28f8c61e #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18769
diff changeset
  6011
     (i.e. the receiver's truncated value)
1866
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6012
     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
  6013
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6014
    ^ self
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6015
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6016
    "
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  6017
     1234.56789 integerPart
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  6018
     1.2345e6 integerPart
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  6019
     1000 integerPart
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  6020
     10000000000000000 integerPart
1866
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6021
    "
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6022
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6023
    "Modified: 4.11.1996 / 20:28:22 / cg"
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6024
!
225afe414934 added fractionPart & integerPart for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 1842
diff changeset
  6025
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6026
normalize
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  6027
    "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
  6028
     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
  6029
     zeros removed.
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  6030
     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
  6031
     renamed to #compressed for ST-80 compatibility."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  6032
9261
275c3c6392ed mark obsolete method
Stefan Vogel <sv@exept.de>
parents: 9141
diff changeset
  6033
    <resource: #obsolete>
275c3c6392ed mark obsolete method
Stefan Vogel <sv@exept.de>
parents: 9141
diff changeset
  6034
1883
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  6035
    ^ self compressed
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  6036
d3fbf4b36be7 renamed #normalize to #compressed (ST_80 compat)
Claus Gittinger <cg@exept.de>
parents: 1866
diff changeset
  6037
    "Modified: 5.11.1996 / 14:08:24 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6038
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  6039
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6040
rounded
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6041
    "return the receiver rounded toward the next Integer -
1558
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  6042
     for integers this is the receiver itself."
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6043
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6044
    ^ self
1558
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  6045
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  6046
    "Modified: 18.7.1996 / 12:44:24 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6047
!
69
4564b6328136 *** empty log message ***
claus
parents: 54
diff changeset
  6048
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6049
truncated
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  6050
    "return the receiver truncated towards zero as Integer
1558
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  6051
     for integers this is the receiver itself."
159
514c749165c3 *** empty log message ***
claus
parents: 132
diff changeset
  6052
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6053
    ^ self
1558
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  6054
864bddaf96e8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  6055
    "Modified: 18.7.1996 / 12:44:33 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 569
diff changeset
  6056
! !
569
7134eb78cf48 readFrom:onError: can now also read from a string
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
  6057
8394
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8335
diff changeset
  6058
!Integer methodsFor:'visiting'!
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8335
diff changeset
  6059
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8335
diff changeset
  6060
acceptVisitor:aVisitor with:aParameter
16723
12737e7310ae comment/format only
Claus Gittinger <cg@exept.de>
parents: 16379
diff changeset
  6061
    "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
  6062
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8335
diff changeset
  6063
    ^ aVisitor visitInteger:self with:aParameter
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8335
diff changeset
  6064
! !
da194de43766 Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8335
diff changeset
  6065
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6066
!Integer::ModuloNumber class methodsFor:'documentation'!
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6067
4803
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6068
copyright
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6069
"
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6070
 COPYRIGHT (c) 1999 by eXept Software AG
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6071
              All Rights Reserved
4803
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6072
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6073
 This software is furnished under a license and may be used
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6074
 only in accordance with the terms of that license and with the
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6075
 inclusion of the above copyright notice.   This software may not
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6076
 be provided or otherwise made available to, or used by, any
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6077
 other person.  No title to or ownership of the software is
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6078
 hereby transferred.
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6079
"
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6080
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6081
!
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6082
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6083
documentation
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6084
"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6085
    This is a helper class to perform fast computation of the modulus.
4609
6a1819c7a743 comment
Claus Gittinger <cg@exept.de>
parents: 4522
diff changeset
  6086
    (with big numbers, this does make a difference)
4803
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6087
47355eb08e99 comment
Claus Gittinger <cg@exept.de>
parents: 4801
diff changeset
  6088
    WARNING: this does only work with numbers which have no common
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6089
             divisor (which is true for cryptographic applications).
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6090
             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
  6091
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6092
    [author:]
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6093
        Stefan Vogel
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6094
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6095
    [see also:]
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6096
        Integer SmallInteger LargeInsteger
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6097
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6098
    [instance variables:]
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6099
        modulus       the modulus
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6100
        reciprocal    reciprocal of the modulus
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6101
        shift         shift count to cut off some bits
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6102
"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6103
!
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6104
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6105
examples
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6106
"
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6107
                                                                [exBegin]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6108
        17 asModuloNumber modulusOf:38
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6109
                                                                [exEnd]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6110
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6111
                                                                [exBegin]
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6112
        38 \\ 17
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6113
                                                                [exEnd]
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6114
"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6115
! !
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6116
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6117
!Integer::ModuloNumber class methodsFor:'instance creation'!
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6118
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6119
modulus:anInteger
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6120
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6121
    ^ self new modulus:anInteger
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6122
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6123
    "Created: / 3.5.1999 / 11:13:15 / stefan"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6124
    "Modified: / 3.5.1999 / 11:18:37 / stefan"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6125
! !
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6126
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6127
!Integer::ModuloNumber methodsFor:'accessing'!
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6128
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6129
modulus
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6130
    "return the modulus"
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6131
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6132
    ^ modulus
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6133
!
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6134
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6135
modulus:n
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6136
    "set the modulus"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6137
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6138
    modulus := n.
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6139
    reciprocal := n integerReciprocal.
4971
aed19001173f Fix ModuloNumber for large numbers.
Stefan Vogel <sv@exept.de>
parents: 4952
diff changeset
  6140
    shift := n highBit negated.
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6141
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6142
    "Created: / 3.5.1999 / 10:02:39 / stefan"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6143
    "Modified: / 3.5.1999 / 14:30:49 / stefan"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6144
! !
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6145
5238
f7a816a660a3 categories
Claus Gittinger <cg@exept.de>
parents: 5210
diff changeset
  6146
!Integer::ModuloNumber methodsFor:'arithmetic'!
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6147
19125
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6148
modulusOf:dividend
4971
aed19001173f Fix ModuloNumber for large numbers.
Stefan Vogel <sv@exept.de>
parents: 4952
diff changeset
  6149
    "compute the aNumber modulo myself.
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6150
     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
  6151
     (When doing arithmethic modulo something).
aed19001173f Fix ModuloNumber for large numbers.
Stefan Vogel <sv@exept.de>
parents: 4952
diff changeset
  6152
     Otherwise do it the long way"
aed19001173f Fix ModuloNumber for large numbers.
Stefan Vogel <sv@exept.de>
parents: 4952
diff changeset
  6153
19125
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6154
    |e t cnt abs isNegative|
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6155
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6156
    isNegative := dividend negative.
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6157
    isNegative ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6158
        abs := dividend negated.
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6159
    ] ifFalse:[
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6160
        abs := dividend.
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6161
    ].
19874
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  6162
    abs < modulus ifTrue:[
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  6163
        ^ abs.
799e9018b187 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19600
diff changeset
  6164
    ].
19125
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6165
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6166
"/    self assert:dividend < (modulus * modulus)
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6167
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6168
    "throw off low nbits(modulus)"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6169
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6170
    e := (abs bitShift:shift) * reciprocal.
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6171
    e := (e bitShift:shift) * modulus.
19125
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6172
    e := abs - e.
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6173
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6174
    "this subtract is done max 2 times"
4971
aed19001173f Fix ModuloNumber for large numbers.
Stefan Vogel <sv@exept.de>
parents: 4952
diff changeset
  6175
    cnt := 2.
aed19001173f Fix ModuloNumber for large numbers.
Stefan Vogel <sv@exept.de>
parents: 4952
diff changeset
  6176
    [(t := e - modulus) >= 0] whileTrue:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6177
        e := t.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6178
        cnt == 0 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6179
            "shortcut didn't work, do it the long way"
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6180
            ^ e \\ modulus.
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6181
        ].
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6182
        cnt := cnt - 1.
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6183
    ].
19125
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6184
    isNegative ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6185
        ^ modulus - e.
Stefan Vogel <sv@exept.de>
parents: 19118
diff changeset
  6186
    ].
4971
aed19001173f Fix ModuloNumber for large numbers.
Stefan Vogel <sv@exept.de>
parents: 4952
diff changeset
  6187
    ^ e.
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6188
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6189
    "
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6190
     |m|
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6191
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6192
     m := self new modulus:7.
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6193
     m modulusOf:55.
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6194
    "
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6195
4971
aed19001173f Fix ModuloNumber for large numbers.
Stefan Vogel <sv@exept.de>
parents: 4952
diff changeset
  6196
    "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
  6197
     |m|
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6198
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6199
     m := self new modulus:7.
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6200
     m modulusOf:123456789901398721398721931729371293712943794254034548369328469438562948623498659238469234659823469823658423659823658.
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6201
    "
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6202
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6203
    "SLOW (using standard \\ operation):
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6204
     |m|
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6205
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6206
     m := 123456789901398721398721931729371293712943794254034548369328469438562948623498659238469234659823469823658423659823658.
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6207
     Time millisecondsToRun:[
19078
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6208
        100000 timesRepeat:[
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6209
            874928459437598375937451931729371293712943794254034548369328469438562948623498659238469234659823469823658423659823658 \\ m
Claus Gittinger <cg@exept.de>
parents: 19076
diff changeset
  6210
        ]
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6211
     ]
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  6212
    "
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6213
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6214
    "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
  6215
     |m|
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6216
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6217
     m := self new modulus:123456789901398721398721931729371293712943794254034548369328469438562948623498659238469234659823469823658423659823658.
19231
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6218
     Time millisecondsToRun:[
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6219
        100000 timesRepeat:[
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6220
            m modulusOf:874928459437598375937451931729371293712943794254034548369328469438562948623498659238469234659823469823658423659823658.
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6221
        ]
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6222
    ].
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6223
89380e45244b #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 19164
diff changeset
  6224
10730930127807326146398409623772237722337234475792709784029183368622308259008044569184592041059181058049458041058052 
11587
deec7da18100 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11582
diff changeset
  6225
    "
4801
edf02501d5e2 comment about divisor-size vs. dividend-size in ModuloNumber
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6226
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6227
    "Modified: / 3.5.1999 / 14:30:32 / stefan"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6228
! !
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6229
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6230
!Integer::ModuloNumber methodsFor:'converting'!
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6231
19405
Stefan Vogel <sv@exept.de>
parents: 19337
diff changeset
  6232
asInteger
Stefan Vogel <sv@exept.de>
parents: 19337
diff changeset
  6233
    "return the modulus"
Stefan Vogel <sv@exept.de>
parents: 19337
diff changeset
  6234
Stefan Vogel <sv@exept.de>
parents: 19337
diff changeset
  6235
    ^ modulus
Stefan Vogel <sv@exept.de>
parents: 19337
diff changeset
  6236
!
Stefan Vogel <sv@exept.de>
parents: 19337
diff changeset
  6237
4142
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6238
asModuloNumber
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6239
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6240
    ^ self
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6241
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6242
    "Created: / 3.5.1999 / 14:48:27 / stefan"
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6243
! !
a881cc4bfaec Make ModuloNumber a private class.
Stefan Vogel <sv@exept.de>
parents: 4141
diff changeset
  6244
1842
b28609c73839 added divMod: for faster largeNumber printString generation.
Claus Gittinger <cg@exept.de>
parents: 1700
diff changeset
  6245
!Integer class methodsFor:'documentation'!
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
version
18769
Claus Gittinger <cg@exept.de>
parents: 18380
diff changeset
  6248
    ^ '$Header$'
12122
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  6249
!
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  6250
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  6251
version_CVS
18769
Claus Gittinger <cg@exept.de>
parents: 18380
diff changeset
  6252
    ^ '$Header$'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  6253
! !
6858
13919a7544b6 raisedToInteger pushed up
Claus Gittinger <cg@exept.de>
parents: 6682
diff changeset
  6254
14677
9f2ca6ba577f class: Integer
Claus Gittinger <cg@exept.de>
parents: 14491
diff changeset
  6255
4996
c3716cebe47b added a bcdConversionErrorSignal
Claus Gittinger <cg@exept.de>
parents: 4973
diff changeset
  6256
Integer initialize!