Float.st
author Claus Gittinger <cg@exept.de>
Tue, 09 Jul 2019 20:55:17 +0200
changeset 24417 03b083548da2
parent 24328 e16d587ddbd6
child 24440 aa298221eb96
permissions -rw-r--r--
#REFACTORING by exept class: Smalltalk class changed: #recursiveInstallAutoloadedClassesFrom:rememberIn:maxLevels:noAutoload:packageTop:showSplashInLevels: Transcript showCR:(... bindWith:...) -> Transcript showCR:... with:...
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
24326
de53dbf87153 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24320
diff changeset
     1
"{ Encoding: utf8 }"
de53dbf87153 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24320
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
175
82ba8d2e3569 *** empty log message ***
claus
parents: 142
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
"
5411
c396c6640868 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5357
diff changeset
    14
"{ Package: 'stx:libbasic' }"
c396c6640868 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5357
diff changeset
    15
17384
36f55cb89897 class: Float
Stefan Vogel <sv@exept.de>
parents: 17226
diff changeset
    16
"{ NameSpace: Smalltalk }"
36f55cb89897 class: Float
Stefan Vogel <sv@exept.de>
parents: 17226
diff changeset
    17
54
06dbdeeed4f9 *** empty log message ***
claus
parents: 47
diff changeset
    18
LimitedPrecisionReal variableByteSubclass:#Float
1198
284eeba6b719 docu & limited shortFloat support
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
    19
	instanceVariableNames:''
21870
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
    20
	classVariableNames:'DefaultPrintFormat DefaultPrintfFormat E Epsilon Halfpi
21904
a873a020a6cb #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21877
diff changeset
    21
		HalfpiNegative Ln10 Ln2 MaxSmallInteger NaN NegativeInfinity Pi
a873a020a6cb #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21877
diff changeset
    22
		PositiveInfinity RadiansPerDegree Sqrt2 Twopi'
1198
284eeba6b719 docu & limited shortFloat support
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
    23
	poolDictionaries:''
284eeba6b719 docu & limited shortFloat support
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
    24
	category:'Magnitude-Numbers'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    25
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    26
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
    27
!Float primitiveDefinitions!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
    28
%{
14751
991d38458125 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 14728
diff changeset
    29
#include <stdio.h>
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
    30
#include <errno.h>
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
    31
3127
590c7d2bb4b9 fixes isNAN (on linux); added #isInfinite
Claus Gittinger <cg@exept.de>
parents: 3118
diff changeset
    32
#ifndef __OPTIMIZE__
590c7d2bb4b9 fixes isNAN (on linux); added #isInfinite
Claus Gittinger <cg@exept.de>
parents: 3118
diff changeset
    33
# define __OPTIMIZE__
590c7d2bb4b9 fixes isNAN (on linux); added #isInfinite
Claus Gittinger <cg@exept.de>
parents: 3118
diff changeset
    34
#endif
4825
4c77d43433d1 nan trouble with new suse
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
    35
4c77d43433d1 nan trouble with new suse
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
    36
#define __USE_ISOC9X 1
8980
abee9fcb0385 cleanup isfinite() and isnan() - usage (HPUX)
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
    37
#define __USE_ISOC99 1
3127
590c7d2bb4b9 fixes isNAN (on linux); added #isInfinite
Claus Gittinger <cg@exept.de>
parents: 3118
diff changeset
    38
#include <math.h>
590c7d2bb4b9 fixes isNAN (on linux); added #isInfinite
Claus Gittinger <cg@exept.de>
parents: 3118
diff changeset
    39
16669
8488266c39e5 class: Float
Stefan Vogel <sv@exept.de>
parents: 16667
diff changeset
    40
#ifndef INT64
8488266c39e5 class: Float
Stefan Vogel <sv@exept.de>
parents: 16667
diff changeset
    41
# ifdef HAS_LONGLONG
8488266c39e5 class: Float
Stefan Vogel <sv@exept.de>
parents: 16667
diff changeset
    42
#  define INT64 long long int
8488266c39e5 class: Float
Stefan Vogel <sv@exept.de>
parents: 16667
diff changeset
    43
# else
8488266c39e5 class: Float
Stefan Vogel <sv@exept.de>
parents: 16667
diff changeset
    44
# define INT64 __int64
8488266c39e5 class: Float
Stefan Vogel <sv@exept.de>
parents: 16667
diff changeset
    45
# endif
8488266c39e5 class: Float
Stefan Vogel <sv@exept.de>
parents: 16667
diff changeset
    46
#endif
8488266c39e5 class: Float
Stefan Vogel <sv@exept.de>
parents: 16667
diff changeset
    47
8488266c39e5 class: Float
Stefan Vogel <sv@exept.de>
parents: 16667
diff changeset
    48
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
    49
/*
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
    50
 * on some systems errno is a macro ... check for it here
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
    51
 */
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
    52
#ifndef errno
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
    53
 extern errno;
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
    54
#endif
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
    55
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19616
diff changeset
    56
#if !defined (__win32__)
14672
8abd84f0951a setlocale once only in stxmain
Claus Gittinger <cg@exept.de>
parents: 14630
diff changeset
    57
# include <locale.h>
8abd84f0951a setlocale once only in stxmain
Claus Gittinger <cg@exept.de>
parents: 14630
diff changeset
    58
#endif
8abd84f0951a setlocale once only in stxmain
Claus Gittinger <cg@exept.de>
parents: 14630
diff changeset
    59
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19616
diff changeset
    60
#if defined (__aix__)
2394
475f415ad893 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2393
diff changeset
    61
# include <float.h>
475f415ad893 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2393
diff changeset
    62
#endif
4825
4c77d43433d1 nan trouble with new suse
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
    63
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19616
diff changeset
    64
#if defined(__irix__)
2395
e83076fa0a3f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2394
diff changeset
    65
# include <nan.h>
e83076fa0a3f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2394
diff changeset
    66
#endif
4825
4c77d43433d1 nan trouble with new suse
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
    67
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19616
diff changeset
    68
#if defined(__linux__)
4825
4c77d43433d1 nan trouble with new suse
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
    69
# ifndef NAN
5822
4e56f8aadda5 Get nan.h from bits/nan.h for Linux
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
    70
#  include <bits/nan.h>
4825
4c77d43433d1 nan trouble with new suse
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
    71
# endif
2396
646ea118eaf8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2395
diff changeset
    72
#endif
4825
4c77d43433d1 nan trouble with new suse
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
    73
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19616
diff changeset
    74
#if defined(__solaris__) || defined(__sunos__)
2398
652c9f2a13fe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2397
diff changeset
    75
# include <nan.h>
652c9f2a13fe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2397
diff changeset
    76
#endif
2394
475f415ad893 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2393
diff changeset
    77
3129
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
    78
/*
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
    79
 * sigh - some systems define that stuff; others dont.
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
    80
 * (AIX even declares them as macros, so an external decl
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
    81
 *  will not work below ...
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
    82
 */
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
    83
#if !defined(__aix__) && !defined(__NEXT3__)
3129
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
    84
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
    85
# ifdef acos
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
    86
  double acos();
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
    87
# endif
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
    88
# ifdef asin
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
    89
  double asin();
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
    90
# endif
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
    91
# ifndef atan
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
    92
  double atan();
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
    93
# endif
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
    94
# ifndef cos
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
    95
  double cos();
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
    96
# endif
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
    97
# ifndef sin
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
    98
  double sin();
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
    99
# endif
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
   100
# ifndef pow
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
   101
  double pow();
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
   102
# endif
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
   103
# ifndef log
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
   104
  double log();
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
   105
# endif
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
   106
# ifndef exp
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
   107
  double exp();
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
   108
# endif
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
   109
# ifndef sqrt
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
   110
  double sqrt();
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
   111
# endif
17199
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
   112
# ifndef cbrt
17200
3f919ff62213 cbrt is not avail in win32's math library
Claus Gittinger <cg@exept.de>
parents: 17199
diff changeset
   113
#  ifndef WIN32
17199
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
   114
  double cbrt();
17200
3f919ff62213 cbrt is not avail in win32's math library
Claus Gittinger <cg@exept.de>
parents: 17199
diff changeset
   115
#  endif
17199
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
   116
# endif
3129
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
   117
# ifndef tan
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
   118
  double tan();
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
   119
# endif
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
   120
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
   121
#endif /* not AIX */
d38fc293dbf9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3128
diff changeset
   122
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19616
diff changeset
   123
#ifdef __win32__
3198
4f930c1c96e7 care for systems which do not define finite() / isnan() - sigh
Claus Gittinger <cg@exept.de>
parents: 3194
diff changeset
   124
/*
4f930c1c96e7 care for systems which do not define finite() / isnan() - sigh
Claus Gittinger <cg@exept.de>
parents: 3194
diff changeset
   125
 * no finite(x) ?
4f930c1c96e7 care for systems which do not define finite() / isnan() - sigh
Claus Gittinger <cg@exept.de>
parents: 3194
diff changeset
   126
 * no isnan(x) ?
4f930c1c96e7 care for systems which do not define finite() / isnan() - sigh
Claus Gittinger <cg@exept.de>
parents: 3194
diff changeset
   127
 */
7420
633c9331da21 isnan for Win32
Claus Gittinger <cg@exept.de>
parents: 7411
diff changeset
   128
# ifndef isnan
633c9331da21 isnan for Win32
Claus Gittinger <cg@exept.de>
parents: 7411
diff changeset
   129
#  define isnan(x)      \
17199
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
   130
	((((unsigned int *)(&x))[0] == 0x00000000) && \
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
   131
	 (((unsigned int *)(&x))[1] == 0xFFF80000))
7420
633c9331da21 isnan for Win32
Claus Gittinger <cg@exept.de>
parents: 7411
diff changeset
   132
# endif
633c9331da21 isnan for Win32
Claus Gittinger <cg@exept.de>
parents: 7411
diff changeset
   133
633c9331da21 isnan for Win32
Claus Gittinger <cg@exept.de>
parents: 7411
diff changeset
   134
# ifndef isPositiveInfinity
633c9331da21 isnan for Win32
Claus Gittinger <cg@exept.de>
parents: 7411
diff changeset
   135
#  define isPositiveInfinity(x) \
17199
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
   136
	((((unsigned int *)(&x))[0] == 0x00000000) && \
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
   137
	 (((unsigned int *)(&x))[1] == 0x7FF00000))
3198
4f930c1c96e7 care for systems which do not define finite() / isnan() - sigh
Claus Gittinger <cg@exept.de>
parents: 3194
diff changeset
   138
# endif
7420
633c9331da21 isnan for Win32
Claus Gittinger <cg@exept.de>
parents: 7411
diff changeset
   139
633c9331da21 isnan for Win32
Claus Gittinger <cg@exept.de>
parents: 7411
diff changeset
   140
# ifndef isNegativeInfinity
14931
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14926
diff changeset
   141
#  define isNegativeInfinity(x) \
17199
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
   142
	((((unsigned int *)(&x))[0] == 0x00000000) && \
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
   143
	 (((unsigned int *)(&x))[1] == 0xFFF00000))
3198
4f930c1c96e7 care for systems which do not define finite() / isnan() - sigh
Claus Gittinger <cg@exept.de>
parents: 3194
diff changeset
   144
# endif
7420
633c9331da21 isnan for Win32
Claus Gittinger <cg@exept.de>
parents: 7411
diff changeset
   145
633c9331da21 isnan for Win32
Claus Gittinger <cg@exept.de>
parents: 7411
diff changeset
   146
# ifndef isinf
633c9331da21 isnan for Win32
Claus Gittinger <cg@exept.de>
parents: 7411
diff changeset
   147
#  define isinf(x) \
17199
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
   148
	((((unsigned int *)(&x))[0] == 0x00000000) && \
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
   149
	 ((((unsigned int *)(&x))[1] & 0x7FF00000) == 0x7FF00000))
7420
633c9331da21 isnan for Win32
Claus Gittinger <cg@exept.de>
parents: 7411
diff changeset
   150
# endif
633c9331da21 isnan for Win32
Claus Gittinger <cg@exept.de>
parents: 7411
diff changeset
   151
8980
abee9fcb0385 cleanup isfinite() and isnan() - usage (HPUX)
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
   152
# ifndef isfinite
abee9fcb0385 cleanup isfinite() and isnan() - usage (HPUX)
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
   153
#  define isfinite(x) (!isinf(x) && !isnan(x))
7420
633c9331da21 isnan for Win32
Claus Gittinger <cg@exept.de>
parents: 7411
diff changeset
   154
# endif
633c9331da21 isnan for Win32
Claus Gittinger <cg@exept.de>
parents: 7411
diff changeset
   155
7411
45c19db66503 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7410
diff changeset
   156
# define NO_ASINH
45c19db66503 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7410
diff changeset
   157
# define NO_ACOSH
45c19db66503 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7410
diff changeset
   158
# define NO_ATANH
14931
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14926
diff changeset
   159
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14926
diff changeset
   160
# ifdef __MINGW__
22491
e3e465028518 string.h handling (OSX)
Claus Gittinger <cg@exept.de>
parents: 22301
diff changeset
   161
#  ifndef _STRING_H_INCLUDED_
e3e465028518 string.h handling (OSX)
Claus Gittinger <cg@exept.de>
parents: 22301
diff changeset
   162
#   include <string.h>
e3e465028518 string.h handling (OSX)
Claus Gittinger <cg@exept.de>
parents: 22301
diff changeset
   163
#   define _STRING_H_INCLUDED_
e3e465028518 string.h handling (OSX)
Claus Gittinger <cg@exept.de>
parents: 22301
diff changeset
   164
#  endif
14931
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14926
diff changeset
   165
# endif
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14926
diff changeset
   166
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19616
diff changeset
   167
#endif /* __win32__ */
8984
ddf3bff73452 isfinite() et.al. for Solaris
Stefan Vogel <sv@exept.de>
parents: 8980
diff changeset
   168
ddf3bff73452 isfinite() et.al. for Solaris
Stefan Vogel <sv@exept.de>
parents: 8980
diff changeset
   169
#ifdef solaris
ddf3bff73452 isfinite() et.al. for Solaris
Stefan Vogel <sv@exept.de>
parents: 8980
diff changeset
   170
# ifndef isfinite
ddf3bff73452 isfinite() et.al. for Solaris
Stefan Vogel <sv@exept.de>
parents: 8980
diff changeset
   171
#  define isfinite(f) finite((double)(f))
ddf3bff73452 isfinite() et.al. for Solaris
Stefan Vogel <sv@exept.de>
parents: 8980
diff changeset
   172
# endif
3198
4f930c1c96e7 care for systems which do not define finite() / isnan() - sigh
Claus Gittinger <cg@exept.de>
parents: 3194
diff changeset
   173
#endif
4f930c1c96e7 care for systems which do not define finite() / isnan() - sigh
Claus Gittinger <cg@exept.de>
parents: 3194
diff changeset
   174
3414
d9aefd18c10d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3399
diff changeset
   175
#ifdef realIX
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
   176
# ifndef isfinite
8980
abee9fcb0385 cleanup isfinite() and isnan() - usage (HPUX)
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
   177
#  define isfinite(x)     1
3414
d9aefd18c10d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3399
diff changeset
   178
# endif
d9aefd18c10d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3399
diff changeset
   179
#endif
d9aefd18c10d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3399
diff changeset
   180
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
   181
#ifndef __NEXT3__
3241
259bdd31694b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   182
# ifndef ceil
259bdd31694b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   183
double ceil();
259bdd31694b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   184
double floor();
259bdd31694b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   185
# endif
259bdd31694b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   186
#endif
259bdd31694b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3240
diff changeset
   187
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   188
%}
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   189
! !
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   190
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
   191
!Float class methodsFor:'documentation'!
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   192
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
   193
copyright
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
   194
"
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
   195
 COPYRIGHT (c) 1988 by Claus Gittinger
175
82ba8d2e3569 *** empty log message ***
claus
parents: 142
diff changeset
   196
	      All Rights Reserved
88
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
   197
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
   198
 This software is furnished under a license and may be used
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
   199
 only in accordance with the terms of that license and with the
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
   200
 inclusion of the above copyright notice.   This software may not
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
   201
 be provided or otherwise made available to, or used by, any
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
   202
 other person.  No title to or ownership of the software is
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
   203
 hereby transferred.
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
   204
"
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
   205
!
81dacba7a63a *** empty log message ***
claus
parents: 85
diff changeset
   206
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   207
documentation
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   208
"
15016
27471b4d9776 class: Float
Claus Gittinger <cg@exept.de>
parents: 15013
diff changeset
   209
    Floats represent rational numbers with limited precision.
17218
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
   210
    They use the C-compilers 'double' format, which is usually the 8byte IEEE double float format.
7380
c704ff45bb80 documentation
Claus Gittinger <cg@exept.de>
parents: 7373
diff changeset
   211
c704ff45bb80 documentation
Claus Gittinger <cg@exept.de>
parents: 7373
diff changeset
   212
    Floats give you 64 bit floats.
15016
27471b4d9776 class: Float
Claus Gittinger <cg@exept.de>
parents: 15013
diff changeset
   213
    In contrast to ShortFloats (32bit) and LongFloats (>=64bit).
7380
c704ff45bb80 documentation
Claus Gittinger <cg@exept.de>
parents: 7373
diff changeset
   214
c704ff45bb80 documentation
Claus Gittinger <cg@exept.de>
parents: 7373
diff changeset
   215
    WARNING:
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   216
	The layout of Float instances is known by the runtime system and the compiler;
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   217
	you may not add instance variables here.
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   218
	Also, subclassing is complicated by the fact, that the VM creates floats/shortFloats,
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   219
	and does some float-checks by an identity compare with the Float-class.
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   220
	(i.e. your subclasses instances may not be recognized as float-like objects,
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   221
	 thus mixed mode arithmetic will always coerce them, effectively slowing things down).
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   222
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   223
    Notice, that Floats are defined as Byte-array to prevent the garbage collector
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   224
    from going into the value ... otherwise I needed a special case in many places.
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   225
16632
871ced71895b class: Float
Stefan Vogel <sv@exept.de>
parents: 16447
diff changeset
   226
    Also notice, that ST/X Floats are what Doubles are in ST-80. The reason for doing this
871ced71895b class: Float
Stefan Vogel <sv@exept.de>
parents: 16447
diff changeset
   227
    was to be compatible to both Digitalk, Squeak AND ParcPlace smalltalk implementations
6674
c383bfa3dc8c documentation comment
Claus Gittinger <cg@exept.de>
parents: 6574
diff changeset
   228
    (ParcPlace uses a 4-byte Float and an 8-byte Double class, in contrast to
15016
27471b4d9776 class: Float
Claus Gittinger <cg@exept.de>
parents: 15013
diff changeset
   229
     Digitalk and Squeak, which have an 8-byte Float class).
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
   230
    Thus, by providing an 8-byte Float class, code would not loose precicion
7380
c704ff45bb80 documentation
Claus Gittinger <cg@exept.de>
parents: 7373
diff changeset
   231
    (although some memory is wasted when porting from VW).
6674
c383bfa3dc8c documentation comment
Claus Gittinger <cg@exept.de>
parents: 6574
diff changeset
   232
    Notice that ST/X provides an alias called Double, and an extra ShortFloat class, which has 4-byte
c383bfa3dc8c documentation comment
Claus Gittinger <cg@exept.de>
parents: 6574
diff changeset
   233
    instances.
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   234
1892
d3564145c15c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1879
diff changeset
   235
    Mixed mode arithmetic:
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   236
	float op float       -> float
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   237
	float op fix         -> float
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   238
	float op fraction    -> float
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   239
	float op integer     -> float
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   240
	float op shortFloat  -> float
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   241
	float op longFloat   -> longFloat
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   242
	float op complex     -> complex
1892
d3564145c15c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1879
diff changeset
   243
7405
9b0334a4591b comments
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
   244
    Representation:
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   245
	    64bit double precision IEEE floats
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   246
	    53 bit mantissa,
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   247
	    11 bit exponent,
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   248
	    15 decimal digits (approx)
7405
9b0334a4591b comments
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
   249
9b0334a4591b comments
Claus Gittinger <cg@exept.de>
parents: 7403
diff changeset
   250
    Range and Precision of Storage Formats: see LimitedPrecisionReal >> documentation
85
claus
parents: 77
diff changeset
   251
7380
c704ff45bb80 documentation
Claus Gittinger <cg@exept.de>
parents: 7373
diff changeset
   252
    [author:]
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   253
	Claus Gittinger
7380
c704ff45bb80 documentation
Claus Gittinger <cg@exept.de>
parents: 7373
diff changeset
   254
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1264
diff changeset
   255
    [see also:]
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   256
	Number
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   257
	ShortFloat LongFloat Fraction FixedPoint Integer Complex
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   258
	FloatArray DoubleArray
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   259
"
2215
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
   260
!
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
   261
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
   262
errorHandling
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
   263
"
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
   264
    Floating point error handling and signalling depends on the systems
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
   265
    (actually: the C-runtime systems) ability to handle floating point errors.
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
   266
    Most systems report errors by raising an OS floatingPoint exception,
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
   267
    which is mapped to a fpExceptionInterrupt in ST/X.
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
   268
    However, some systems do return NaN as result.
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
   269
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
   270
    Currently, ST/X does not care specially for these systems - it maybe added
2215
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
   271
    easily, if there is sufficient customer interest, though.
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
   272
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
   273
    Try:
3127
590c7d2bb4b9 fixes isNAN (on linux); added #isInfinite
Claus Gittinger <cg@exept.de>
parents: 3118
diff changeset
   274
	|f1 f2|
2215
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
   275
3127
590c7d2bb4b9 fixes isNAN (on linux); added #isInfinite
Claus Gittinger <cg@exept.de>
parents: 3118
diff changeset
   276
	f1 := 1.0.
590c7d2bb4b9 fixes isNAN (on linux); added #isInfinite
Claus Gittinger <cg@exept.de>
parents: 3118
diff changeset
   277
	f2 := 0.0.
590c7d2bb4b9 fixes isNAN (on linux); added #isInfinite
Claus Gittinger <cg@exept.de>
parents: 3118
diff changeset
   278
	f1 / f2
2215
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
   279
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
   280
    or:
3127
590c7d2bb4b9 fixes isNAN (on linux); added #isInfinite
Claus Gittinger <cg@exept.de>
parents: 3118
diff changeset
   281
	2 arcSin
2215
Claus Gittinger <cg@exept.de>
parents: 1893
diff changeset
   282
"
68
59faa75185ba *** empty log message ***
claus
parents: 54
diff changeset
   283
! !
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   284
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
   285
!Float class methodsFor:'instance creation'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   286
a27a279701f8 Initial revision
claus
parents:
diff changeset
   287
basicNew
a27a279701f8 Initial revision
claus
parents:
diff changeset
   288
    "return a new float - here we return 0.0
a27a279701f8 Initial revision
claus
parents:
diff changeset
   289
     - floats are usually NOT created this way ...
a27a279701f8 Initial revision
claus
parents:
diff changeset
   290
     Its implemented here to allow things like binary store & load
a27a279701f8 Initial revision
claus
parents:
diff changeset
   291
     of floats. (but even this support will go away eventually, its not
a27a279701f8 Initial revision
claus
parents:
diff changeset
   292
     a good idea to store the bits of a float - the reader might have a
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
   293
     totally different representation - so floats will eventually be
13
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
   294
     binary stored in a device independent format."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   295
a27a279701f8 Initial revision
claus
parents:
diff changeset
   296
%{  /* NOCONTEXT */
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   297
#ifdef __SCHTEAM__
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   298
    ERROR("trying to instantiate a float");
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   299
#else
1206
9d23c1f5e4d3 use quicker MKFLOAT in FLoat>>basicNew
Claus Gittinger <cg@exept.de>
parents: 1198
diff changeset
   300
    OBJ newFloat;
9d23c1f5e4d3 use quicker MKFLOAT in FLoat>>basicNew
Claus Gittinger <cg@exept.de>
parents: 1198
diff changeset
   301
1695
465e1eba8e8e removed useless context-arg of all qMK macros - needs full recompile.
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   302
    __qMKFLOAT(newFloat, 0.0);
1206
9d23c1f5e4d3 use quicker MKFLOAT in FLoat>>basicNew
Claus Gittinger <cg@exept.de>
parents: 1198
diff changeset
   303
    RETURN (newFloat);
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   304
#endif /* not SCHTEAM */
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   305
%}
3163
212a539ee379 added #readFrom: to avoid returning an int.
Claus Gittinger <cg@exept.de>
parents: 3146
diff changeset
   306
!
1206
9d23c1f5e4d3 use quicker MKFLOAT in FLoat>>basicNew
Claus Gittinger <cg@exept.de>
parents: 1198
diff changeset
   307
4295
4adf74ef8e3e added fastFromString:
Claus Gittinger <cg@exept.de>
parents: 3955
diff changeset
   308
fastFromString:aString at:startIndex
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
   309
    "return the next Float from the string starting at startIndex.
4295
4adf74ef8e3e added fastFromString:
Claus Gittinger <cg@exept.de>
parents: 3955
diff changeset
   310
     No spaces are skipped.
23477
7965dfb1ed1b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22854
diff changeset
   311
     Raises an exception, if the startIndex is not valid.
23943
aa4b209ef165 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23477
diff changeset
   312
     Returns garbage if the argument string is not a valid double float number.
23477
7965dfb1ed1b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22854
diff changeset
   313
7965dfb1ed1b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22854
diff changeset
   314
     This is a specially tuned entry (using a low-level C-call to atof).
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
   315
     It has been added to allow high speed string decomposition
23477
7965dfb1ed1b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22854
diff changeset
   316
     into numbers, especially for mass-data (reading millions of floats)."
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
   317
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
   318
%{   /* NOCONTEXT */
23477
7965dfb1ed1b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22854
diff changeset
   319
     int idx = __intVal(startIndex) - 1;
7965dfb1ed1b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22854
diff changeset
   320
12478
e8051030cda6 change __isString() to __isStringLike() in primitive code
Stefan Vogel <sv@exept.de>
parents: 12423
diff changeset
   321
     if (__isStringLike(aString) && __isSmallInteger(startIndex)) {
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
   322
	char *cp = (char *)(__stringVal(aString));
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
   323
	double atof();
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
   324
	double val;
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
   325
	OBJ newFloat;
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
   326
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
   327
	if ((unsigned)idx < __stringSize(aString)) {
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
   328
	    val = atof(cp + idx);
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
   329
	    __qMKFLOAT(newFloat, val);
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
   330
	    RETURN (newFloat);
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
   331
	}
4295
4adf74ef8e3e added fastFromString:
Claus Gittinger <cg@exept.de>
parents: 3955
diff changeset
   332
     }
4adf74ef8e3e added fastFromString:
Claus Gittinger <cg@exept.de>
parents: 3955
diff changeset
   333
%}.
4adf74ef8e3e added fastFromString:
Claus Gittinger <cg@exept.de>
parents: 3955
diff changeset
   334
     self primitiveFailed.
4adf74ef8e3e added fastFromString:
Claus Gittinger <cg@exept.de>
parents: 3955
diff changeset
   335
4adf74ef8e3e added fastFromString:
Claus Gittinger <cg@exept.de>
parents: 3955
diff changeset
   336
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
   337
     Float fastFromString:'123.45' at:1
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
   338
     Float fastFromString:'123.45' at:2
21870
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   339
     Float fastFromString:'123.45' at:3
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   340
     Float fastFromString:'123.45' at:4
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   341
     Float fastFromString:'123.45' at:5
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   342
     Float fastFromString:'123.45' at:6
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   343
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
   344
     Float fastFromString:'123.45E4' at:1
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
   345
     Float fastFromString:'hello123.45E4' at:6
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
   346
     Float fastFromString:'12345' at:1
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
   347
     Float fastFromString:'12345' at:2
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
   348
     Float fastFromString:'12345' at:3
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
   349
     Float fastFromString:'12345' at:4
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
   350
     Float fastFromString:'12345' at:5
21870
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   351
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   352
     Float fastFromString:'12345' at:6          -> error
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   353
     Float fastFromString:'12345' at:0          -> error
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   354
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   355
     Float fastFromString:'hello123.45E4' at:1  -> 0
4295
4adf74ef8e3e added fastFromString:
Claus Gittinger <cg@exept.de>
parents: 3955
diff changeset
   356
23477
7965dfb1ed1b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22854
diff changeset
   357
     Float fastFromString:'1.7976931348623157e+308'
7965dfb1ed1b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22854
diff changeset
   358
     Float fastFromString:'Nan'
7965dfb1ed1b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22854
diff changeset
   359
     Float fastFromString:'+Inf'
7965dfb1ed1b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22854
diff changeset
   360
     Float fastFromString:'-Inf'
7965dfb1ed1b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22854
diff changeset
   361
    "
7965dfb1ed1b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22854
diff changeset
   362
7965dfb1ed1b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22854
diff changeset
   363
    "
4295
4adf74ef8e3e added fastFromString:
Claus Gittinger <cg@exept.de>
parents: 3955
diff changeset
   364
     Time millisecondsToRun:[
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
   365
	1000000 timesRepeat:[
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
   366
	    Float readFrom:'123.45'
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
   367
	]
4295
4adf74ef8e3e added fastFromString:
Claus Gittinger <cg@exept.de>
parents: 3955
diff changeset
   368
     ]
4adf74ef8e3e added fastFromString:
Claus Gittinger <cg@exept.de>
parents: 3955
diff changeset
   369
    "
4adf74ef8e3e added fastFromString:
Claus Gittinger <cg@exept.de>
parents: 3955
diff changeset
   370
4adf74ef8e3e added fastFromString:
Claus Gittinger <cg@exept.de>
parents: 3955
diff changeset
   371
    "
4adf74ef8e3e added fastFromString:
Claus Gittinger <cg@exept.de>
parents: 3955
diff changeset
   372
     Time millisecondsToRun:[
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
   373
	1000000 timesRepeat:[
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
   374
	    Float fastFromString:'123.45' at:1
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
   375
	]
4295
4adf74ef8e3e added fastFromString:
Claus Gittinger <cg@exept.de>
parents: 3955
diff changeset
   376
     ]
4adf74ef8e3e added fastFromString:
Claus Gittinger <cg@exept.de>
parents: 3955
diff changeset
   377
    "
21870
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   378
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   379
    "Modified (comment): / 21-06-2017 / 09:24:32 / cg"
23943
aa4b209ef165 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23477
diff changeset
   380
    "Modified (comment): / 20-03-2019 / 13:45:12 / Claus Gittinger"
4295
4adf74ef8e3e added fastFromString:
Claus Gittinger <cg@exept.de>
parents: 3955
diff changeset
   381
!
4adf74ef8e3e added fastFromString:
Claus Gittinger <cg@exept.de>
parents: 3955
diff changeset
   382
15016
27471b4d9776 class: Float
Claus Gittinger <cg@exept.de>
parents: 15013
diff changeset
   383
fromIEEE32Bit: anInteger
27471b4d9776 class: Float
Claus Gittinger <cg@exept.de>
parents: 15013
diff changeset
   384
    "creates a double, given the four native float bytes as an integer"
27471b4d9776 class: Float
Claus Gittinger <cg@exept.de>
parents: 15013
diff changeset
   385
27471b4d9776 class: Float
Claus Gittinger <cg@exept.de>
parents: 15013
diff changeset
   386
%{  /* NOCONTEXT */
21870
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   387
#ifndef __SCHTEAM__
15016
27471b4d9776 class: Float
Claus Gittinger <cg@exept.de>
parents: 15013
diff changeset
   388
    REGISTER union {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
   389
	unsigned int    i;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
   390
	float           f;
15016
27471b4d9776 class: Float
Claus Gittinger <cg@exept.de>
parents: 15013
diff changeset
   391
    } r;
27471b4d9776 class: Float
Claus Gittinger <cg@exept.de>
parents: 15013
diff changeset
   392
27471b4d9776 class: Float
Claus Gittinger <cg@exept.de>
parents: 15013
diff changeset
   393
    r.i = __unsignedLongIntVal( anInteger );
15017
d16c28f26b4f class: Float
Claus Gittinger <cg@exept.de>
parents: 15016
diff changeset
   394
    RETURN( __MKFLOAT((double)(r.f)) );
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   395
#endif
21870
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   396
%}.
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   397
    self primitiveFailed.
17218
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
   398
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
   399
    "
21870
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   400
     ShortFloat fromIEEE32Bit:((ShortFloat pi digitBytesMSB:true) asIntegerMSB:true)
17218
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
   401
    "
21870
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   402
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   403
    "Modified (comment): / 21-06-2017 / 09:26:41 / cg"
17218
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
   404
!
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
   405
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
   406
fromIEEE64Bit: anInteger
21875
aaf7afa7bb0f #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21870
diff changeset
   407
    "creates a double, given the eight native double bytes as an integer"
17218
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
   408
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
   409
%{  /* NOCONTEXT */
21870
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   410
#ifndef __SCHTEAM__
21876
52fb77cd4093 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21875
diff changeset
   411
    extern int __unsignedLong64IntVal(OBJ o, __uint64__ *pI);
17218
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
   412
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
   413
    REGISTER union {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
   414
	__uint64__  u64;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
   415
	double      d;
17218
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
   416
    } r;
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
   417
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
   418
    if (__unsignedLong64IntVal(anInteger, &r.u64))  {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
   419
	RETURN( __MKFLOAT(r.d) );
17218
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
   420
    }
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   421
#endif
17218
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
   422
%}.
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
   423
    self primitiveFailed.
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
   424
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
   425
    "
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
   426
	Float fromIEEE64Bit:((Float pi digitBytesMSB:true) asIntegerMSB:true)
17218
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
   427
    "
21870
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   428
21876
52fb77cd4093 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21875
diff changeset
   429
    "Modified: / 21-06-2017 / 09:37:47 / cg"
15016
27471b4d9776 class: Float
Claus Gittinger <cg@exept.de>
parents: 15013
diff changeset
   430
!
27471b4d9776 class: Float
Claus Gittinger <cg@exept.de>
parents: 15013
diff changeset
   431
19358
f9e7a37cffd9 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19326
diff changeset
   432
fromInteger:anInteger
f9e7a37cffd9 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19326
diff changeset
   433
    "return a new float, given an integer value"
f9e7a37cffd9 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19326
diff changeset
   434
f9e7a37cffd9 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19326
diff changeset
   435
%{  /* NOCONTEXT */
f9e7a37cffd9 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19326
diff changeset
   436
#ifdef __SCHTEAM__
f9e7a37cffd9 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19326
diff changeset
   437
    if (anInteger.isSmallInteger()) {
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
   438
	return __c__._RETURN( STDouble._new( (double)(anInteger.longValue()) ));
19358
f9e7a37cffd9 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19326
diff changeset
   439
    }
f9e7a37cffd9 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19326
diff changeset
   440
#else
f9e7a37cffd9 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19326
diff changeset
   441
    OBJ newFloat;
f9e7a37cffd9 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19326
diff changeset
   442
f9e7a37cffd9 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19326
diff changeset
   443
    if (__isSmallInteger(anInteger)) {
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
   444
	double f = (double)__smallIntegerVal(anInteger);
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
   445
	__qMKFLOAT(newFloat, f);   /* OBJECT ALLOCATION */
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
   446
	RETURN (newFloat);
19358
f9e7a37cffd9 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19326
diff changeset
   447
    }
f9e7a37cffd9 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19326
diff changeset
   448
#endif /* not SCHTEAM */
f9e7a37cffd9 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19326
diff changeset
   449
%}.
f9e7a37cffd9 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19326
diff changeset
   450
    ^ super fromInteger:anInteger
f9e7a37cffd9 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19326
diff changeset
   451
f9e7a37cffd9 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19326
diff changeset
   452
    "
f9e7a37cffd9 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19326
diff changeset
   453
     Float fromInteger:123
f9e7a37cffd9 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19326
diff changeset
   454
     Float fromInteger:(100 factorial)
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
   455
     (100 factorial) asFloat
19358
f9e7a37cffd9 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19326
diff changeset
   456
    "
f9e7a37cffd9 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19326
diff changeset
   457
!
f9e7a37cffd9 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19326
diff changeset
   458
17653
ae0a317ee190 class: Float
Claus Gittinger <cg@exept.de>
parents: 17583
diff changeset
   459
fromNumber:aNumber
21870
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   460
    "return aNumber coerced to Float"
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
   461
21870
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   462
    ^ aNumber asFloat
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   463
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   464
    "Modified (comment): / 21-06-2017 / 08:55:15 / cg"
17653
ae0a317ee190 class: Float
Claus Gittinger <cg@exept.de>
parents: 17583
diff changeset
   465
!
ae0a317ee190 class: Float
Claus Gittinger <cg@exept.de>
parents: 17583
diff changeset
   466
3279
09d2ccf1bed2 added #fromVAXFloatBytes
ca
parents: 3244
diff changeset
   467
fromVAXFloatBytes:b1 b2:b2 b3:b3 b4:b4
21870
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   468
    "creates a double, given the four vax F-format float bytes to an ieee double.
3427
ba90490c94b6 added query for IEE format (for future use)
Claus Gittinger <cg@exept.de>
parents: 3414
diff changeset
   469
     For NaNs and Infinity, nil is returned.
21870
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   470
     To get an idea of how big the floating-point zoo really is,
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   471
     see: http://www.quadibloc.com/comp/cp0201.htm
3279
09d2ccf1bed2 added #fromVAXFloatBytes
ca
parents: 3244
diff changeset
   472
    "
09d2ccf1bed2 added #fromVAXFloatBytes
ca
parents: 3244
diff changeset
   473
09d2ccf1bed2 added #fromVAXFloatBytes
ca
parents: 3244
diff changeset
   474
%{  /* NOCONTEXT */
21870
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   475
#ifndef __SCHTEAM__
3279
09d2ccf1bed2 added #fromVAXFloatBytes
ca
parents: 3244
diff changeset
   476
    REGISTER union {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
   477
	unsigned char   b[4];
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
   478
	unsigned int    l;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
   479
	float           f;
3279
09d2ccf1bed2 added #fromVAXFloatBytes
ca
parents: 3244
diff changeset
   480
    } r;
09d2ccf1bed2 added #fromVAXFloatBytes
ca
parents: 3244
diff changeset
   481
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   482
# ifdef __LSBFIRST__
3279
09d2ccf1bed2 added #fromVAXFloatBytes
ca
parents: 3244
diff changeset
   483
    r.b[3] = __intVal( b2 );
09d2ccf1bed2 added #fromVAXFloatBytes
ca
parents: 3244
diff changeset
   484
    r.b[2] = __intVal( b1 );
09d2ccf1bed2 added #fromVAXFloatBytes
ca
parents: 3244
diff changeset
   485
    r.b[1] = __intVal( b4 );
09d2ccf1bed2 added #fromVAXFloatBytes
ca
parents: 3244
diff changeset
   486
    r.b[0] = __intVal( b3 );
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   487
# else
3279
09d2ccf1bed2 added #fromVAXFloatBytes
ca
parents: 3244
diff changeset
   488
    r.b[0] = __intVal( b2 );
09d2ccf1bed2 added #fromVAXFloatBytes
ca
parents: 3244
diff changeset
   489
    r.b[1] = __intVal( b1 );
09d2ccf1bed2 added #fromVAXFloatBytes
ca
parents: 3244
diff changeset
   490
    r.b[2] = __intVal( b4 );
09d2ccf1bed2 added #fromVAXFloatBytes
ca
parents: 3244
diff changeset
   491
    r.b[3] = __intVal( b3 );
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   492
# endif
21870
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   493
    if( (r.l & 0xff800000) != 0x80000000 ) {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
   494
	if( (r.l & 0x7f800000) > 0x01000000 )
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
   495
	    r.l -= 0x01000000;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
   496
	else
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
   497
	    r.l = 0;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
   498
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
   499
	RETURN( __MKFLOAT(r.f) );
21870
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   500
    } else {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
   501
	// add code to handle NaN and Inf
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
   502
	RETURN( nil );
3279
09d2ccf1bed2 added #fromVAXFloatBytes
ca
parents: 3244
diff changeset
   503
    }
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   504
#endif
3279
09d2ccf1bed2 added #fromVAXFloatBytes
ca
parents: 3244
diff changeset
   505
%}.
21870
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   506
    ^ self primitiveFailed
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   507
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   508
    "Modified: / 21-06-2017 / 09:21:55 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   509
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   510
12916
a32796fca6ed #printString prints with maximum precision (15 for Float and 19 for LongFloat)
Stefan Vogel <sv@exept.de>
parents: 12723
diff changeset
   511
!Float class methodsFor:'accessing'!
a32796fca6ed #printString prints with maximum precision (15 for Float and 19 for LongFloat)
Stefan Vogel <sv@exept.de>
parents: 12723
diff changeset
   512
a32796fca6ed #printString prints with maximum precision (15 for Float and 19 for LongFloat)
Stefan Vogel <sv@exept.de>
parents: 12723
diff changeset
   513
defaultPrintFormat
a32796fca6ed #printString prints with maximum precision (15 for Float and 19 for LongFloat)
Stefan Vogel <sv@exept.de>
parents: 12723
diff changeset
   514
    ^ DefaultPrintFormat
a32796fca6ed #printString prints with maximum precision (15 for Float and 19 for LongFloat)
Stefan Vogel <sv@exept.de>
parents: 12723
diff changeset
   515
!
a32796fca6ed #printString prints with maximum precision (15 for Float and 19 for LongFloat)
Stefan Vogel <sv@exept.de>
parents: 12723
diff changeset
   516
a32796fca6ed #printString prints with maximum precision (15 for Float and 19 for LongFloat)
Stefan Vogel <sv@exept.de>
parents: 12723
diff changeset
   517
defaultPrintFormat:something
a32796fca6ed #printString prints with maximum precision (15 for Float and 19 for LongFloat)
Stefan Vogel <sv@exept.de>
parents: 12723
diff changeset
   518
    DefaultPrintFormat := something.
16658
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
   519
!
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
   520
21868
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
   521
defaultPrintfFormat
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
   522
    ^ DefaultPrintfFormat
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
   523
!
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
   524
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
   525
defaultPrintfFormat:something
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
   526
    DefaultPrintfFormat := something.
12916
a32796fca6ed #printString prints with maximum precision (15 for Float and 19 for LongFloat)
Stefan Vogel <sv@exept.de>
parents: 12723
diff changeset
   527
! !
a32796fca6ed #printString prints with maximum precision (15 for Float and 19 for LongFloat)
Stefan Vogel <sv@exept.de>
parents: 12723
diff changeset
   528
24320
904fbd4fc461 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24302
diff changeset
   529
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
   530
!Float class methodsFor:'binary storage'!
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   531
1198
284eeba6b719 docu & limited shortFloat support
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   532
readBinaryIEEEDoubleFrom:aStream
284eeba6b719 docu & limited shortFloat support
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   533
    "read a float from the binary stream, aStream,
14925
046356fde326 allow saving in msb
Claus Gittinger <cg@exept.de>
parents: 14923
diff changeset
   534
     interpreting the next bytes as an IEEE formatted 8-byte float.
046356fde326 allow saving in msb
Claus Gittinger <cg@exept.de>
parents: 14923
diff changeset
   535
     The bytes are read in the native byte order (i.e.lsb on intel)"
1198
284eeba6b719 docu & limited shortFloat support
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   536
284eeba6b719 docu & limited shortFloat support
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   537
    |f|
284eeba6b719 docu & limited shortFloat support
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   538
284eeba6b719 docu & limited shortFloat support
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   539
    f := self basicNew.
15013
f049844b9f0a class: Float
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
   540
    self readBinaryIEEEDoubleFrom:aStream into:f MSB:(UninterpretedBytes isBigEndian).
1198
284eeba6b719 docu & limited shortFloat support
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   541
    ^ f
284eeba6b719 docu & limited shortFloat support
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   542
9637
3e3866fb16e9 boss stuff separated
Claus Gittinger <cg@exept.de>
parents: 9150
diff changeset
   543
    "not part of libboss, as this is also used by others (TIFFReader)"
3e3866fb16e9 boss stuff separated
Claus Gittinger <cg@exept.de>
parents: 9150
diff changeset
   544
3e3866fb16e9 boss stuff separated
Claus Gittinger <cg@exept.de>
parents: 9150
diff changeset
   545
    "Created: / 16-04-1996 / 20:59:59 / cg"
3e3866fb16e9 boss stuff separated
Claus Gittinger <cg@exept.de>
parents: 9150
diff changeset
   546
    "Modified: / 23-08-2006 / 16:00:42 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   547
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   548
15013
f049844b9f0a class: Float
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
   549
readBinaryIEEEDoubleFrom:aStream MSB:msbFirst
f049844b9f0a class: Float
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
   550
    "read a float from the binary stream, aStream,
f049844b9f0a class: Float
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
   551
     interpreting the next bytes as an IEEE formatted 8-byte float.
f049844b9f0a class: Float
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
   552
     The bytes are read in the specified byte order"
f049844b9f0a class: Float
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
   553
f049844b9f0a class: Float
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
   554
    |f|
f049844b9f0a class: Float
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
   555
f049844b9f0a class: Float
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
   556
    f := self basicNew.
f049844b9f0a class: Float
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
   557
    self readBinaryIEEEDoubleFrom:aStream into:f MSB:msbFirst.
f049844b9f0a class: Float
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
   558
    ^ f
f049844b9f0a class: Float
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
   559
f049844b9f0a class: Float
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
   560
    "not part of libboss, as this is also used by others (TIFFReader)"
f049844b9f0a class: Float
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
   561
!
f049844b9f0a class: Float
Claus Gittinger <cg@exept.de>
parents: 14931
diff changeset
   562
19616
4844da24b225 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19570
diff changeset
   563
readBinaryIEEEDoubleFrom:aStream into:aBasicNewFloat
14923
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
   564
    "read the receiver's value from the binary stream, aStream,
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
   565
     interpreting the next bytes as an IEEE formatted 8-byte float.
14925
046356fde326 allow saving in msb
Claus Gittinger <cg@exept.de>
parents: 14923
diff changeset
   566
     The bytes are read in the native byte order (i.e.lsb on intel)"
14923
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
   567
19616
4844da24b225 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19570
diff changeset
   568
    ^ self readBinaryIEEEDoubleFrom:aStream into:aBasicNewFloat MSB:(UninterpretedBytes isBigEndian)
14923
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
   569
!
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
   570
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
   571
readBinaryIEEEDoubleFrom:aStream into:aFloat MSB:msb
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
   572
    "read the receiver's value from the binary stream, aStream,
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
   573
     interpreting the next bytes as an IEEE formatted 8-byte float.
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
   574
     If msb is true, the stream bytes are most-significant-first."
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   575
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   576
    "
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   577
     this implementation is wrong: does not work on non-IEEE machines
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   578
     (to date all machines where ST/X is running on use
14923
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
   579
      IEEE float format. Will need more here, when porting ST/X to 370's)
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   580
    "
3427
ba90490c94b6 added query for IEE format (for future use)
Claus Gittinger <cg@exept.de>
parents: 3414
diff changeset
   581
    self isIEEEFormat ifFalse:[self error:'unsupported operation'].
ba90490c94b6 added query for IEE format (for future use)
Claus Gittinger <cg@exept.de>
parents: 3414
diff changeset
   582
14923
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
   583
    (UninterpretedBytes isBigEndian == msb) ifFalse:[
14931
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14926
diff changeset
   584
	"swap the bytes"
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14926
diff changeset
   585
	8 to:1 by:-1 do:[:i |
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14926
diff changeset
   586
	    aFloat basicAt:i put:(aStream next)
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14926
diff changeset
   587
	].
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14926
diff changeset
   588
	^ self
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   589
    ].
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   590
    1 to:8 do:[:i |
14931
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14926
diff changeset
   591
	aFloat basicAt:i put:aStream next
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   592
    ]
9637
3e3866fb16e9 boss stuff separated
Claus Gittinger <cg@exept.de>
parents: 9150
diff changeset
   593
3e3866fb16e9 boss stuff separated
Claus Gittinger <cg@exept.de>
parents: 9150
diff changeset
   594
    "not part of libboss, as this is also used by others (TIFFReader)"
3e3866fb16e9 boss stuff separated
Claus Gittinger <cg@exept.de>
parents: 9150
diff changeset
   595
3e3866fb16e9 boss stuff separated
Claus Gittinger <cg@exept.de>
parents: 9150
diff changeset
   596
    "Modified: / 23-08-2006 / 16:00:37 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   597
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   598
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   599
storeBinaryIEEEDouble:aFloat on:aStream
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   600
    "store aFloat as an IEEE formatted 8-byte float
14925
046356fde326 allow saving in msb
Claus Gittinger <cg@exept.de>
parents: 14923
diff changeset
   601
     onto the binary stream, aStream.
046356fde326 allow saving in msb
Claus Gittinger <cg@exept.de>
parents: 14923
diff changeset
   602
     The bytes are written in the native byte order (i.e.lsb on intel)"
046356fde326 allow saving in msb
Claus Gittinger <cg@exept.de>
parents: 14923
diff changeset
   603
046356fde326 allow saving in msb
Claus Gittinger <cg@exept.de>
parents: 14923
diff changeset
   604
    self storeBinaryIEEEDouble:aFloat on:aStream MSB:(UninterpretedBytes isBigEndian)
046356fde326 allow saving in msb
Claus Gittinger <cg@exept.de>
parents: 14923
diff changeset
   605
!
046356fde326 allow saving in msb
Claus Gittinger <cg@exept.de>
parents: 14923
diff changeset
   606
046356fde326 allow saving in msb
Claus Gittinger <cg@exept.de>
parents: 14923
diff changeset
   607
storeBinaryIEEEDouble:aFloat on:aStream MSB:msb
046356fde326 allow saving in msb
Claus Gittinger <cg@exept.de>
parents: 14923
diff changeset
   608
    "store aFloat as an IEEE formatted 8-byte float
046356fde326 allow saving in msb
Claus Gittinger <cg@exept.de>
parents: 14923
diff changeset
   609
     onto the binary stream, aStream.
046356fde326 allow saving in msb
Claus Gittinger <cg@exept.de>
parents: 14923
diff changeset
   610
     If msb is true, the stream bytes are written most-significant-first."
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   611
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   612
    "
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   613
     this implementation is wrong: does not work on non-IEEE machines
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   614
     (to date all machines where ST/X is running on use
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   615
      IEEE float format. Need more here, when porting ST/X to 370's)
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   616
    "
3427
ba90490c94b6 added query for IEE format (for future use)
Claus Gittinger <cg@exept.de>
parents: 3414
diff changeset
   617
    self isIEEEFormat ifFalse:[self error:'unsupported operation'].
ba90490c94b6 added query for IEE format (for future use)
Claus Gittinger <cg@exept.de>
parents: 3414
diff changeset
   618
14925
046356fde326 allow saving in msb
Claus Gittinger <cg@exept.de>
parents: 14923
diff changeset
   619
    (UninterpretedBytes isBigEndian == msb) ifFalse:[
14931
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14926
diff changeset
   620
	"swap the bytes"
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14926
diff changeset
   621
	8 to:1 by:-1 do:[:i |
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14926
diff changeset
   622
	    aStream nextPut:(aFloat basicAt:i).
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14926
diff changeset
   623
	].
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14926
diff changeset
   624
	^ self
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   625
    ].
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   626
    1 to:8 do:[:i |
14931
0de2fc03f23a mingw fixes
Claus Gittinger <cg@exept.de>
parents: 14926
diff changeset
   627
	aStream nextPut:(aFloat basicAt:i).
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   628
    ].
9637
3e3866fb16e9 boss stuff separated
Claus Gittinger <cg@exept.de>
parents: 9150
diff changeset
   629
3e3866fb16e9 boss stuff separated
Claus Gittinger <cg@exept.de>
parents: 9150
diff changeset
   630
    "not part of libboss, as this is also used by others (TIFFReader)"
3e3866fb16e9 boss stuff separated
Claus Gittinger <cg@exept.de>
parents: 9150
diff changeset
   631
3e3866fb16e9 boss stuff separated
Claus Gittinger <cg@exept.de>
parents: 9150
diff changeset
   632
    "Modified: / 23-08-2006 / 16:00:47 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   633
! !
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   634
7441
17e37777f83b double dispatching
Claus Gittinger <cg@exept.de>
parents: 7429
diff changeset
   635
!Float class methodsFor:'class initialization'!
17e37777f83b double dispatching
Claus Gittinger <cg@exept.de>
parents: 7429
diff changeset
   636
17e37777f83b double dispatching
Claus Gittinger <cg@exept.de>
parents: 7429
diff changeset
   637
initialize
14105
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   638
    Pi isNil ifTrue:[
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
   639
	DefaultPrintFormat := '.15'.  "/ print 15 valid digits
21868
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
   640
	DefaultPrintfFormat := '%15f'.
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
   641
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
   642
	Pi := 3.14159265358979323846264338327950288419716939937510582097494459.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
   643
	Halfpi := Pi / 2.0.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
   644
	HalfpiNegative := Halfpi negated.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
   645
	Twopi := Pi * 2.0.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
   646
	E := 2.7182818284590452353602874713526625.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
   647
	Sqrt2 := 1.41421356237309504880168872420969808.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
   648
	RadiansPerDegree := Pi / 180.0.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
   649
	Ln2 := 0.69314718055994530941723212145817657.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
   650
	Ln10 := 10.0 ln.
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
   651
	MaxSmallInteger := super maxSmallInteger.
14105
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   652
    ].
10604
2a9b9a20067a more constants
Claus Gittinger <cg@exept.de>
parents: 9651
diff changeset
   653
2a9b9a20067a more constants
Claus Gittinger <cg@exept.de>
parents: 9651
diff changeset
   654
    "
14105
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   655
     Pi := nil.
10604
2a9b9a20067a more constants
Claus Gittinger <cg@exept.de>
parents: 9651
diff changeset
   656
     self initialize
2a9b9a20067a more constants
Claus Gittinger <cg@exept.de>
parents: 9651
diff changeset
   657
    "
7441
17e37777f83b double dispatching
Claus Gittinger <cg@exept.de>
parents: 7429
diff changeset
   658
17e37777f83b double dispatching
Claus Gittinger <cg@exept.de>
parents: 7429
diff changeset
   659
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
   660
     DefaultPrintFormat := '.9'.
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
   661
     Float pi printString.
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
   662
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
   663
     DefaultPrintFormat := '.6'.
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
   664
     Float pi printString.
7441
17e37777f83b double dispatching
Claus Gittinger <cg@exept.de>
parents: 7429
diff changeset
   665
    "
10604
2a9b9a20067a more constants
Claus Gittinger <cg@exept.de>
parents: 9651
diff changeset
   666
2a9b9a20067a more constants
Claus Gittinger <cg@exept.de>
parents: 9651
diff changeset
   667
    "Modified: / 07-06-2007 / 21:17:53 / cg"
7441
17e37777f83b double dispatching
Claus Gittinger <cg@exept.de>
parents: 7429
diff changeset
   668
! !
17e37777f83b double dispatching
Claus Gittinger <cg@exept.de>
parents: 7429
diff changeset
   669
21870
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   670
!Float class methodsFor:'coercing & converting'!
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   671
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   672
coerce:aNumber
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   673
    "convert the argument aNumber into an instance of the receiver (class) and return it."
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   674
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   675
    ^ aNumber asFloat.
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   676
! !
46d6c8e28c70 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21869
diff changeset
   677
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
   678
!Float class methodsFor:'constants'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   679
3945
1745e97364cb added preliminary version of NaN
Claus Gittinger <cg@exept.de>
parents: 3903
diff changeset
   680
NaN
21859
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   681
    "return the constant NaN (not a Number)"
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   682
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   683
    NaN isNil ifTrue:[
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   684
%{
8901
824a89d0b5c7 alpha64 vs. POINTER_SIZE cleanup
Claus Gittinger <cg@exept.de>
parents: 8635
diff changeset
   685
#if defined(LINUX) && defined(__i386__)
3955
ebf11ebe113e NAN for suseV6 nan.h
Claus Gittinger <cg@exept.de>
parents: 3945
diff changeset
   686
# ifdef NAN
21868
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
   687
	@global(Float:NaN) = __MKFLOAT(NAN);
3955
ebf11ebe113e NAN for suseV6 nan.h
Claus Gittinger <cg@exept.de>
parents: 3945
diff changeset
   688
# else
21868
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
   689
	@global(Float:NaN) = __MKFLOAT(_SNAN);
3955
ebf11ebe113e NAN for suseV6 nan.h
Claus Gittinger <cg@exept.de>
parents: 3945
diff changeset
   690
# endif
3945
1745e97364cb added preliminary version of NaN
Claus Gittinger <cg@exept.de>
parents: 3903
diff changeset
   691
#endif
1745e97364cb added preliminary version of NaN
Claus Gittinger <cg@exept.de>
parents: 3903
diff changeset
   692
%}.
21868
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
   693
	NaN isNil ifTrue:[
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
   694
	    NaN := super NaN.
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
   695
	].
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
   696
    ].
21859
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   697
    ^ NaN
3945
1745e97364cb added preliminary version of NaN
Claus Gittinger <cg@exept.de>
parents: 3903
diff changeset
   698
1745e97364cb added preliminary version of NaN
Claus Gittinger <cg@exept.de>
parents: 3903
diff changeset
   699
    "
21868
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
   700
     Float NaN
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
   701
     Float NaN + 0.0
3945
1745e97364cb added preliminary version of NaN
Claus Gittinger <cg@exept.de>
parents: 3903
diff changeset
   702
     Float NaN + Float NaN
1745e97364cb added preliminary version of NaN
Claus Gittinger <cg@exept.de>
parents: 3903
diff changeset
   703
     0.0 + Float NaN
21859
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   704
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   705
     it's a singleton:
21868
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
   706
21859
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   707
     Float NaN == Float NaN
3945
1745e97364cb added preliminary version of NaN
Claus Gittinger <cg@exept.de>
parents: 3903
diff changeset
   708
    "
21859
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   709
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   710
    "Modified (format): / 20-06-2017 / 13:52:31 / cg"
3945
1745e97364cb added preliminary version of NaN
Claus Gittinger <cg@exept.de>
parents: 3903
diff changeset
   711
!
1745e97364cb added preliminary version of NaN
Claus Gittinger <cg@exept.de>
parents: 3903
diff changeset
   712
7391
55ca5a24162a added more math functions (hyperbolic)
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
   713
e
55ca5a24162a added more math functions (hyperbolic)
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
   714
    "return the constant e as Float"
55ca5a24162a added more math functions (hyperbolic)
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
   715
20799
5dfe67b1daf1 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20706
diff changeset
   716
    "/ don't expect this many valid digits on all machines;
7391
55ca5a24162a added more math functions (hyperbolic)
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
   717
    "/ The actual precision is very CPU specific.
55ca5a24162a added more math functions (hyperbolic)
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
   718
55ca5a24162a added more math functions (hyperbolic)
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
   719
    ^ 2.7182818284590452353602874713526625
6341
19a407a314da Raise more specific signals.
Stefan Vogel <sv@exept.de>
parents: 6335
diff changeset
   720
!
19a407a314da Raise more specific signals.
Stefan Vogel <sv@exept.de>
parents: 6335
diff changeset
   721
18129
dfbced69ed47 class: Float
Claus Gittinger <cg@exept.de>
parents: 18125
diff changeset
   722
emax
dfbced69ed47 class: Float
Claus Gittinger <cg@exept.de>
parents: 18125
diff changeset
   723
    "Answer the maximum exponent for this representation."
dfbced69ed47 class: Float
Claus Gittinger <cg@exept.de>
parents: 18125
diff changeset
   724
dfbced69ed47 class: Float
Claus Gittinger <cg@exept.de>
parents: 18125
diff changeset
   725
    ^1023
17661
f2441fee36d0 class: Float
Claus Gittinger <cg@exept.de>
parents: 17657
diff changeset
   726
!
f2441fee36d0 class: Float
Claus Gittinger <cg@exept.de>
parents: 17657
diff changeset
   727
18133
7e86f6decdba class: Float
Claus Gittinger <cg@exept.de>
parents: 18129
diff changeset
   728
emin
7e86f6decdba class: Float
Claus Gittinger <cg@exept.de>
parents: 18129
diff changeset
   729
    "Answer the minimum exponent for this representation."
7e86f6decdba class: Float
Claus Gittinger <cg@exept.de>
parents: 18129
diff changeset
   730
7e86f6decdba class: Float
Claus Gittinger <cg@exept.de>
parents: 18129
diff changeset
   731
    ^ -1022
7e86f6decdba class: Float
Claus Gittinger <cg@exept.de>
parents: 18129
diff changeset
   732
!
7e86f6decdba class: Float
Claus Gittinger <cg@exept.de>
parents: 18129
diff changeset
   733
22725
70827545d34f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22578
diff changeset
   734
halfpi
70827545d34f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22578
diff changeset
   735
    "return the constant pi/2 as Float"
70827545d34f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22578
diff changeset
   736
70827545d34f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22578
diff changeset
   737
    "/ don't expect this many valid digits on all machines;
70827545d34f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22578
diff changeset
   738
    "/ The actual precision is very CPU specific.
70827545d34f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22578
diff changeset
   739
70827545d34f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22578
diff changeset
   740
    ^ 1.570796326794896619231321691639751442098584699687552910
70827545d34f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22578
diff changeset
   741
!
70827545d34f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22578
diff changeset
   742
70827545d34f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22578
diff changeset
   743
halfpiNegative
70827545d34f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22578
diff changeset
   744
    "return the constant -pi/2 as Float"
70827545d34f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22578
diff changeset
   745
70827545d34f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22578
diff changeset
   746
    "/ don't expect this many valid digits on all machines;
70827545d34f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22578
diff changeset
   747
    "/ The actual precision is very CPU specific.
70827545d34f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22578
diff changeset
   748
70827545d34f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22578
diff changeset
   749
    ^ -1.570796326794896619231321691639751442098584699687552910
70827545d34f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22578
diff changeset
   750
!
70827545d34f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22578
diff changeset
   751
21859
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   752
infinity
24302
ad24f2aec0c9 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24295
diff changeset
   753
    "return a float which represents positive infinity (for my instances).
ad24f2aec0c9 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24295
diff changeset
   754
     Warning: do not compare equal against infinities;
ad24f2aec0c9 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24295
diff changeset
   755
     instead, check using isFinite or isInfinite"
21859
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   756
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   757
    PositiveInfinity isNil ifTrue:[
24295
a0dea7c19ba3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24280
diff changeset
   758
        PositiveInfinity := super infinity
21859
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   759
    ].
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   760
    ^ PositiveInfinity
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   761
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   762
    "
21868
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
   763
     Float infinity == Float infinity
21859
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   764
    "
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   765
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   766
    "Created: / 20-06-2017 / 13:56:07 / cg"
24302
ad24f2aec0c9 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24295
diff changeset
   767
    "Modified (comment): / 09-06-2019 / 12:54:54 / Claus Gittinger"
21859
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   768
!
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   769
18492
eca396c81443 class: Float
Claus Gittinger <cg@exept.de>
parents: 18300
diff changeset
   770
ln10
eca396c81443 class: Float
Claus Gittinger <cg@exept.de>
parents: 18300
diff changeset
   771
    "return the natural logarithm of 10;
eca396c81443 class: Float
Claus Gittinger <cg@exept.de>
parents: 18300
diff changeset
   772
     will return something like 2.30258509299405"
eca396c81443 class: Float
Claus Gittinger <cg@exept.de>
parents: 18300
diff changeset
   773
eca396c81443 class: Float
Claus Gittinger <cg@exept.de>
parents: 18300
diff changeset
   774
    ^ Ln10
eca396c81443 class: Float
Claus Gittinger <cg@exept.de>
parents: 18300
diff changeset
   775
!
eca396c81443 class: Float
Claus Gittinger <cg@exept.de>
parents: 18300
diff changeset
   776
10604
2a9b9a20067a more constants
Claus Gittinger <cg@exept.de>
parents: 9651
diff changeset
   777
ln2
18492
eca396c81443 class: Float
Claus Gittinger <cg@exept.de>
parents: 18300
diff changeset
   778
    "return the natural logarithm of 2"
eca396c81443 class: Float
Claus Gittinger <cg@exept.de>
parents: 18300
diff changeset
   779
eca396c81443 class: Float
Claus Gittinger <cg@exept.de>
parents: 18300
diff changeset
   780
    "/ don't expect this many valid digits on all machines;
10604
2a9b9a20067a more constants
Claus Gittinger <cg@exept.de>
parents: 9651
diff changeset
   781
    "/ The actual precision is very CPU specific.
2a9b9a20067a more constants
Claus Gittinger <cg@exept.de>
parents: 9651
diff changeset
   782
2a9b9a20067a more constants
Claus Gittinger <cg@exept.de>
parents: 9651
diff changeset
   783
    ^ 0.69314718055994530941723212145817657.
2a9b9a20067a more constants
Claus Gittinger <cg@exept.de>
parents: 9651
diff changeset
   784
2a9b9a20067a more constants
Claus Gittinger <cg@exept.de>
parents: 9651
diff changeset
   785
    "Created: / 07-06-2007 / 21:11:55 / cg"
2a9b9a20067a more constants
Claus Gittinger <cg@exept.de>
parents: 9651
diff changeset
   786
!
2a9b9a20067a more constants
Claus Gittinger <cg@exept.de>
parents: 9651
diff changeset
   787
19358
f9e7a37cffd9 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19326
diff changeset
   788
maxSmallInteger
21868
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
   789
    "return the max. smallInteger value as a float"
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
   790
19358
f9e7a37cffd9 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19326
diff changeset
   791
    ^ MaxSmallInteger
f9e7a37cffd9 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19326
diff changeset
   792
!
f9e7a37cffd9 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 19326
diff changeset
   793
21859
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   794
negativeInfinity
24302
ad24f2aec0c9 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24295
diff changeset
   795
    "return a float which represents positive infinity (for my instances).
ad24f2aec0c9 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24295
diff changeset
   796
     Warning: do not compare equal against infinities;
ad24f2aec0c9 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24295
diff changeset
   797
     instead, check using isFinite or isInfinite"
21859
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   798
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   799
    NegativeInfinity isNil ifTrue:[
24295
a0dea7c19ba3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24280
diff changeset
   800
        NegativeInfinity := super negativeInfinity
21859
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   801
    ].
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   802
    ^ NegativeInfinity
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   803
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   804
    "
21868
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
   805
     Float negativeInfinity == Float negativeInfinity
21859
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   806
    "
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   807
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   808
    "Created: / 20-06-2017 / 13:56:35 / cg"
24302
ad24f2aec0c9 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24295
diff changeset
   809
    "Modified (comment): / 09-06-2019 / 12:55:10 / Claus Gittinger"
21859
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   810
!
6065925371a5 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21849
diff changeset
   811
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   812
pi
1260
2a8ba44e8957 commentary
Claus Gittinger <cg@exept.de>
parents: 1206
diff changeset
   813
    "return the constant pi as Float"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   814
20799
5dfe67b1daf1 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20706
diff changeset
   815
    "/ don't expect this many valid digits on all machines;
3244
9ba0abc1d217 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3241
diff changeset
   816
    "/ The actual precision is very CPU specific.
9ba0abc1d217 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3241
diff changeset
   817
6063
Claus Gittinger <cg@exept.de>
parents: 5986
diff changeset
   818
    ^ 3.14159265358979323846264338327950288419716939937510582097494459
1260
2a8ba44e8957 commentary
Claus Gittinger <cg@exept.de>
parents: 1206
diff changeset
   819
2a8ba44e8957 commentary
Claus Gittinger <cg@exept.de>
parents: 1206
diff changeset
   820
    "Modified: 23.4.1996 / 09:27:02 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   821
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   822
10604
2a9b9a20067a more constants
Claus Gittinger <cg@exept.de>
parents: 9651
diff changeset
   823
sqrt2
20799
5dfe67b1daf1 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20706
diff changeset
   824
    "/ don't expect this many valid digits on all machines;
10604
2a9b9a20067a more constants
Claus Gittinger <cg@exept.de>
parents: 9651
diff changeset
   825
    "/ The actual precision is very CPU specific.
2a9b9a20067a more constants
Claus Gittinger <cg@exept.de>
parents: 9651
diff changeset
   826
2a9b9a20067a more constants
Claus Gittinger <cg@exept.de>
parents: 9651
diff changeset
   827
    ^ 1.41421356237309504880168872420969808
2a9b9a20067a more constants
Claus Gittinger <cg@exept.de>
parents: 9651
diff changeset
   828
2a9b9a20067a more constants
Claus Gittinger <cg@exept.de>
parents: 9651
diff changeset
   829
    "Created: / 07-06-2007 / 21:12:33 / cg"
2a9b9a20067a more constants
Claus Gittinger <cg@exept.de>
parents: 9651
diff changeset
   830
!
2a9b9a20067a more constants
Claus Gittinger <cg@exept.de>
parents: 9651
diff changeset
   831
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   832
unity
1260
2a8ba44e8957 commentary
Claus Gittinger <cg@exept.de>
parents: 1206
diff changeset
   833
    "return the neutral element for multiplication (1.0) as Float"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   834
a27a279701f8 Initial revision
claus
parents:
diff changeset
   835
    ^ 1.0
1260
2a8ba44e8957 commentary
Claus Gittinger <cg@exept.de>
parents: 1206
diff changeset
   836
2a8ba44e8957 commentary
Claus Gittinger <cg@exept.de>
parents: 1206
diff changeset
   837
    "Modified: 23.4.1996 / 09:27:09 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   838
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   839
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   840
zero
1260
2a8ba44e8957 commentary
Claus Gittinger <cg@exept.de>
parents: 1206
diff changeset
   841
    "return the neutral element for addition (0.0) as Float"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   842
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   843
    ^ 0.0
1260
2a8ba44e8957 commentary
Claus Gittinger <cg@exept.de>
parents: 1206
diff changeset
   844
2a8ba44e8957 commentary
Claus Gittinger <cg@exept.de>
parents: 1206
diff changeset
   845
    "Modified: 23.4.1996 / 09:27:15 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   846
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   847
14105
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   848
!Float class methodsFor:'misc'!
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   849
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   850
getFPUControl
24169
db5c25cc1e42 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 24152
diff changeset
   851
    "BORLAND only: get the fpu control word."
14105
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   852
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   853
%{
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   854
#ifdef __BORLANDC__
14106
900bb7bce82f *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 14105
diff changeset
   855
    unsigned int _control87();
900bb7bce82f *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 14105
diff changeset
   856
14105
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   857
    int result = _control87(0, 0);
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   858
    RETURN(__MKSMALLINT(result));
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   859
#endif
24169
db5c25cc1e42 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 24152
diff changeset
   860
%}.
db5c25cc1e42 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 24152
diff changeset
   861
    ^ 0 "/ otherwise an arbitrary value
14105
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   862
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   863
    "
21849
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
   864
     self getFPUControl
14105
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   865
    "
21849
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
   866
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
   867
    "Modified (comment): / 20-06-2017 / 11:51:58 / cg"
24169
db5c25cc1e42 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 24152
diff changeset
   868
    "Modified (comment): / 27-05-2019 / 08:58:54 / Claus Gittinger"
14105
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   869
!
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   870
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   871
setFPUControl
21849
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
   872
    "BORLAND only: set the fpu control word for 64 bit precision for long doubles here"
14105
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   873
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   874
%{
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   875
#ifdef __BORLANDC__
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   876
#include <float.h>
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   877
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   878
    // Set precision to long double / 64bit
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   879
    int result = _control87(PC_64, MCW_PC);
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   880
    RETURN(__MKSMALLINT(result));
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   881
#endif
24169
db5c25cc1e42 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 24152
diff changeset
   882
%}.
db5c25cc1e42 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 24152
diff changeset
   883
    "/ otherwise ignored
14105
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   884
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   885
    "
21849
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
   886
     self setFPUControl
14105
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   887
    "
21849
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
   888
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
   889
    "Modified (comment): / 20-06-2017 / 11:51:54 / cg"
24169
db5c25cc1e42 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 24152
diff changeset
   890
    "Modified (comment): / 27-05-2019 / 08:58:35 / Claus Gittinger"
14105
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   891
! !
Stefan Vogel <sv@exept.de>
parents: 13146
diff changeset
   892
24320
904fbd4fc461 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24302
diff changeset
   893
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
   894
!Float class methodsFor:'queries'!
3
24d81bf47225 *** empty log message ***
claus
parents: 1
diff changeset
   895
24320
904fbd4fc461 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24302
diff changeset
   896
epsilon
904fbd4fc461 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24302
diff changeset
   897
    "return the maximum relative spacing of instances of mySelf
904fbd4fc461 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24302
diff changeset
   898
     (i.e. the value-delta of the least significant bit)"
904fbd4fc461 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24302
diff changeset
   899
904fbd4fc461 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24302
diff changeset
   900
    Epsilon isNil ifTrue:[
904fbd4fc461 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24302
diff changeset
   901
	Epsilon := self computeEpsilon.
904fbd4fc461 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24302
diff changeset
   902
    ].
904fbd4fc461 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24302
diff changeset
   903
    ^ Epsilon
904fbd4fc461 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24302
diff changeset
   904
904fbd4fc461 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24302
diff changeset
   905
    "Modified (comment): / 22-06-2017 / 13:44:12 / cg"
904fbd4fc461 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24302
diff changeset
   906
!
904fbd4fc461 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24302
diff changeset
   907
6898
d0182256f3ff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6890
diff changeset
   908
exponentCharacter
24326
de53dbf87153 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24320
diff changeset
   909
    "return the character used to print between mantissa an exponent.
de53dbf87153 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24320
diff changeset
   910
     Also used by the scanner when reading numbers."
de53dbf87153 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24320
diff changeset
   911
6898
d0182256f3ff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6890
diff changeset
   912
    ^ $d
24326
de53dbf87153 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24320
diff changeset
   913
de53dbf87153 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24320
diff changeset
   914
    "Modified (comment): / 10-06-2019 / 21:27:46 / Claus Gittinger"
6898
d0182256f3ff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6890
diff changeset
   915
!
d0182256f3ff *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6890
diff changeset
   916
3
24d81bf47225 *** empty log message ***
claus
parents: 1
diff changeset
   917
isBuiltInClass
1264
8d916aa63bce commentary
Claus Gittinger <cg@exept.de>
parents: 1260
diff changeset
   918
    "return true if this class is known by the run-time-system.
8d916aa63bce commentary
Claus Gittinger <cg@exept.de>
parents: 1260
diff changeset
   919
     Here, true is returned for myself, false for subclasses."
3
24d81bf47225 *** empty log message ***
claus
parents: 1
diff changeset
   920
24d81bf47225 *** empty log message ***
claus
parents: 1
diff changeset
   921
    ^ self == Float
1264
8d916aa63bce commentary
Claus Gittinger <cg@exept.de>
parents: 1260
diff changeset
   922
8d916aa63bce commentary
Claus Gittinger <cg@exept.de>
parents: 1260
diff changeset
   923
    "Modified: 23.4.1996 / 15:59:04 / cg"
3427
ba90490c94b6 added query for IEE format (for future use)
Claus Gittinger <cg@exept.de>
parents: 3414
diff changeset
   924
!
ba90490c94b6 added query for IEE format (for future use)
Claus Gittinger <cg@exept.de>
parents: 3414
diff changeset
   925
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
   926
numBitsInExponent
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
   927
    "answer the number of bits in the exponent
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
   928
     This is an IEEE float, where 11 bits are available:
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
   929
	seeeeeee eeeemmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
   930
    "
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
   931
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
   932
    ^ 11
24206
e281086bb292 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24191
diff changeset
   933
e281086bb292 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24191
diff changeset
   934
    "
e281086bb292 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24191
diff changeset
   935
     1.0 numBitsInExponent
e281086bb292 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24191
diff changeset
   936
    "
e281086bb292 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24191
diff changeset
   937
e281086bb292 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24191
diff changeset
   938
    "Modified (format): / 28-05-2019 / 08:55:51 / Claus Gittinger"
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
   939
!
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
   940
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
   941
numBitsInMantissa
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
   942
    "answer the number of bits in the mantissa.
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
   943
     This is an IEEE double, where 52 bits (the hidden one is not counted here) are available:
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
   944
	seeeeeee eeeemmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm mmmmmmmm
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
   945
    "
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
   946
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
   947
     ^ 52
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
   948
!
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
   949
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
   950
precision
24266
e7a43fdfc447 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24255
diff changeset
   951
    "answer the precision (the number of bits in the mantissa) of a Float (in bits)
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
   952
     This is an IEEE double, where only the fraction from the normalized mantissa is stored
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
   953
     and so there is a hidden bit and the mantissa is actually represented
9150
550cef1b935a comment
Claus Gittinger <cg@exept.de>
parents: 9124
diff changeset
   954
     by 53 binary digits (although only 52 are needed in the binary representation)"
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
   955
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
   956
    ^  53
19326
aa152894e736 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19091
diff changeset
   957
aa152894e736 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19091
diff changeset
   958
    "
aa152894e736 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19091
diff changeset
   959
     self numBitsInMantissa + 1
aa152894e736 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19091
diff changeset
   960
     self precision
aa152894e736 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19091
diff changeset
   961
    "
24266
e7a43fdfc447 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24255
diff changeset
   962
e7a43fdfc447 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24255
diff changeset
   963
    "Modified (comment): / 06-06-2019 / 13:23:58 / Claus Gittinger"
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
   964
!
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
   965
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
   966
radix
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
   967
    "answer the radix of a Floats exponent
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
   968
     This is an IEEE float, which is represented as binary"
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
   969
8635
38674ba49a14 comment
Claus Gittinger <cg@exept.de>
parents: 8422
diff changeset
   970
    ^ 2 "must be careful here, whenever ST/X is used on VAX or a 370"
3
24d81bf47225 *** empty log message ***
claus
parents: 1
diff changeset
   971
! !
24d81bf47225 *** empty log message ***
claus
parents: 1
diff changeset
   972
24320
904fbd4fc461 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24302
diff changeset
   973
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   974
!Float methodsFor:'arithmetic'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   975
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   976
* aNumber
11733
fe4717d35e0c comment
Claus Gittinger <cg@exept.de>
parents: 11721
diff changeset
   977
    "return the product of the receiver and the argument."
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   978
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   979
%{  /* NOCONTEXT */
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   980
#ifdef __SCHTEAM__
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   981
    if (aNumber.isNumber()) {
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   982
	return context._RETURN( self.times(aNumber) );
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   983
    }
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
   984
#else
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   985
6064
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
   986
    /*
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
   987
     * notice:
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
   988
     * the following inline code handles some common cases,
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
   989
     * and exists as an optimization, to speed up those cases.
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
   990
     *
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
   991
     * Conceptionally, (and for most other argument types),
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
   992
     * mixed arithmetic is implemented by double dispatching
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
   993
     * (see the message send at the bottom)
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
   994
     */
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   995
    OBJ newFloat;
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   996
    double result;
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   997
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
   998
    if (__isSmallInteger(aNumber)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
   999
	result = __floatVal(self) * (double)(__intVal(aNumber));
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1000
retResult:
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1001
	__qMKFLOAT(newFloat, result);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1002
	RETURN ( newFloat );
6064
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
  1003
    }
14689
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1004
    /* knowing that aNumber is not a SmallInt, we only need to check for nil;
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1005
     * then can use qIsXXX macros which saves us some checks
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1006
     */
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1007
    if (aNumber != nil) {
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1008
	if (__qIsFloatLike(aNumber)) {
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1009
	    result = __floatVal(self) * __floatVal(aNumber);
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1010
	    goto retResult;
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1011
	}
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1012
	if (__qIsShortFloat(aNumber)) {
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1013
	    result = __floatVal(self) * (double)(__shortFloatVal(aNumber));
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1014
	    goto retResult;
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1015
	}
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1016
    }
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1017
#endif
3530
a1af5dafc3ee float op shortFloat added inline.
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  1018
%}.
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1019
    ^ aNumber productFromFloat:self
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1020
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1021
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1022
+ aNumber
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1023
    "return the sum of the receiver and the argument, aNumber"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1024
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1025
%{  /* NOCONTEXT */
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1026
#ifdef __SCHTEAM__
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1027
    if (aNumber.isNumber()) {
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1028
	return context._RETURN( self.plus(aNumber) );
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1029
    }
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1030
#else
6064
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
  1031
    /*
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
  1032
     * notice:
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
  1033
     * the following inline code handles some common cases,
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
  1034
     * and exists as an optimization, to speed up those cases.
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
  1035
     *
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
  1036
     * Conceptionally, (and for most other argument types),
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
  1037
     * mixed arithmetic is implemented by double dispatching
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
  1038
     * (see the message send at the bottom)
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
  1039
     */
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1040
    OBJ newFloat;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1041
    double result;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1042
250
a5deb61ffdac *** empty log message ***
claus
parents: 224
diff changeset
  1043
    if (__isSmallInteger(aNumber)) {
6189
f4bfc2dacdb7 win32: care for some math errors
Claus Gittinger <cg@exept.de>
parents: 6145
diff changeset
  1044
	result = __floatVal(self) + (double)(__intVal(aNumber));
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1045
retResult:
6189
f4bfc2dacdb7 win32: care for some math errors
Claus Gittinger <cg@exept.de>
parents: 6145
diff changeset
  1046
	__qMKFLOAT(newFloat, result);
f4bfc2dacdb7 win32: care for some math errors
Claus Gittinger <cg@exept.de>
parents: 6145
diff changeset
  1047
	RETURN ( newFloat );
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1048
    }
14689
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1049
    /* knowing that aNumber is not a SmallInt, we only need to check for nil;
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1050
     * then can use qIsXXX macros which saves us some checks
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1051
     */
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1052
    if (aNumber != nil) {
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1053
	if (__qIsFloatLike(aNumber)) {
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1054
	    result = __floatVal(self) + __floatVal(aNumber);
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1055
	    goto retResult;
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1056
	}
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1057
	if (__qIsShortFloat(aNumber)) {
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1058
	    result = __floatVal(self) + (double)(__shortFloatVal(aNumber));
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1059
	    goto retResult;
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1060
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1061
    }
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1062
#endif
3530
a1af5dafc3ee float op shortFloat added inline.
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  1063
%}.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1064
    ^ aNumber sumFromFloat:self
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1065
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1066
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1067
- aNumber
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1068
    "return the difference of the receiver and the argument, aNumber"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1069
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1070
%{  /* NOCONTEXT */
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1071
#ifdef __SCHTEAM__
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1072
    if (aNumber.isNumber()) {
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1073
	return context._RETURN( self.minus(aNumber) );
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1074
    }
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1075
#else
13
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
  1076
6064
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
  1077
    /*
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
  1078
     * notice:
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
  1079
     * the following inline code handles some common cases,
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
  1080
     * and exists as an optimization, to speed up those cases.
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
  1081
     *
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
  1082
     * Conceptionally, (and for most other argument types),
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
  1083
     * mixed arithmetic is implemented by double dispatching
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
  1084
     * (see the message send at the bottom)
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
  1085
     */
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1086
    OBJ newFloat;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1087
    double result;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1088
250
a5deb61ffdac *** empty log message ***
claus
parents: 224
diff changeset
  1089
    if (__isSmallInteger(aNumber)) {
6189
f4bfc2dacdb7 win32: care for some math errors
Claus Gittinger <cg@exept.de>
parents: 6145
diff changeset
  1090
	result = __floatVal(self) - (double)(__intVal(aNumber));
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1091
retResult:
6189
f4bfc2dacdb7 win32: care for some math errors
Claus Gittinger <cg@exept.de>
parents: 6145
diff changeset
  1092
	__qMKFLOAT(newFloat, result);
f4bfc2dacdb7 win32: care for some math errors
Claus Gittinger <cg@exept.de>
parents: 6145
diff changeset
  1093
	RETURN ( newFloat );
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1094
    }
14689
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1095
    /* knowing that aNumber is not a SmallInt, we only need to check for nil;
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1096
     * then can use qIsXXX macros which saves us some checks
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1097
     */
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1098
    if (aNumber != nil) {
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1099
	if (__qIsFloatLike(aNumber)) {
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1100
	    result = __floatVal(self) - __floatVal(aNumber);
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1101
	    goto retResult;
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1102
	}
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1103
	if (__qIsShortFloat(aNumber)) {
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1104
	    result = __floatVal(self) - (double)(__shortFloatVal(aNumber));
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1105
	    goto retResult;
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1106
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1107
    }
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1108
#endif
3530
a1af5dafc3ee float op shortFloat added inline.
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  1109
%}.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1110
    ^ aNumber differenceFromFloat:self
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1111
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1112
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1113
/ aNumber
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1114
    "return the quotient of the receiver and the argument, aNumber"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1115
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1116
%{  /* NOCONTEXT */
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1117
#ifdef __SCHTEAM__
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1118
    if (aNumber.isNumber()) {
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1119
	return context._RETURN( self.quotient(aNumber) );
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1120
    }
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1121
#else
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1122
6064
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
  1123
    /*
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
  1124
     * notice:
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
  1125
     * the following inline code handles some common cases,
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
  1126
     * and exists as an optimization, to speed up those cases.
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
  1127
     *
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
  1128
     * Conceptionally, (and for most other argument types),
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
  1129
     * mixed arithmetic is implemented by double dispatching
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
  1130
     * (see the message send at the bottom)
04bde2eeb749 comments about double dispatching
Claus Gittinger <cg@exept.de>
parents: 6063
diff changeset
  1131
     */
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1132
    OBJ newFloat;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1133
    double result, val;
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1134
250
a5deb61ffdac *** empty log message ***
claus
parents: 224
diff changeset
  1135
    if (__isSmallInteger(aNumber)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1136
	if (aNumber != __mkSmallInteger(0)) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1137
	    result = __floatVal(self) / ( (double)__intVal(aNumber)) ;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1138
retResult:
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1139
	    __qMKFLOAT(newFloat, result);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1140
	    RETURN ( newFloat );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1141
	}
3530
a1af5dafc3ee float op shortFloat added inline.
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  1142
    } else if (__isFloatLike(aNumber)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1143
	val = __floatVal(aNumber);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1144
	if (val != 0.0) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1145
	    result = __floatVal(self) / val;
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1146
	    goto retResult;
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1147
	}
3530
a1af5dafc3ee float op shortFloat added inline.
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  1148
    } else if (__isShortFloat(aNumber)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1149
	val = (double)(__shortFloatVal(aNumber));
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1150
	if (val != 0.0) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1151
	    result = __floatVal(self) / val;
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1152
	    goto retResult;
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1153
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1154
    }
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1155
#endif
3530
a1af5dafc3ee float op shortFloat added inline.
Claus Gittinger <cg@exept.de>
parents: 3472
diff changeset
  1156
%}.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1157
    ((aNumber == 0) or:[aNumber = 0.0]) ifTrue:[
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1158
	"
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1159
	 No, you shalt not divide by zero
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1160
	"
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1161
	^ ZeroDivide raiseRequestWith:thisContext.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1162
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1163
    ^ aNumber quotientFromFloat:self
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1164
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1165
14923
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1166
abs
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1167
    "return the absolute value of the receiver
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1168
     reimplemented here for speed"
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1169
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1170
%{  /* NOCONTEXT */
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1171
#ifdef __SCHTEAM__
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1172
    return context._RETURN( self.abs() );
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1173
#else
14923
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1174
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1175
    OBJ newFloat;
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1176
    double val =__floatVal(self);
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1177
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1178
    if (val < 0.0) {
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1179
	__qMKFLOAT(newFloat, -val);
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1180
	RETURN ( newFloat );
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1181
    }
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1182
    RETURN (self);
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1183
#endif
14923
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1184
%}.
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1185
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1186
    "
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1187
     3.0 abs
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1188
     -3.0 abs
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1189
    "
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1190
!
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1191
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1192
negated
17226
cb6ca4b18f06 class: Float
Claus Gittinger <cg@exept.de>
parents: 17218
diff changeset
  1193
    "return the receiver negated"
14923
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1194
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1195
%{  /* NOCONTEXT */
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1196
#ifdef __SCHTEAM__
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1197
    return context._RETURN( self.negated() );
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1198
#else
14923
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1199
    OBJ newFloat;
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1200
    double rslt = - __floatVal(self);
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1201
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1202
    __qMKFLOAT(newFloat, rslt);
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1203
    RETURN ( newFloat );
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1204
#endif
14923
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1205
%}.
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1206
!
d17a1105f17c class: Float
Claus Gittinger <cg@exept.de>
parents: 14751
diff changeset
  1207
14689
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1208
rem: aNumber
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1209
    "return the floating point remainder of the receiver and the argument, aNumber"
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1210
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1211
%{  /* NOCONTEXT */
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1212
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1213
    /*
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1214
     * notice:
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1215
     * the following inline code handles some common cases,
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1216
     * and exists as an optimization, to speed up those cases.
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1217
     *
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1218
     * Conceptionally, (and for most other argument types),
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1219
     * mixed arithmetic is implemented by double dispatching
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1220
     * (see the message send at the bottom)
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1221
     */
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1222
    OBJ newFloat;
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1223
    double result, val;
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1224
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1225
    if (__isSmallInteger(aNumber)) {
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1226
	if (aNumber != __mkSmallInteger(0)) {
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1227
	    val = (double)__intVal(aNumber);
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1228
computeResult:
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1229
	    result = fmod(__floatVal(self), val) ;
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1230
	    __qMKFLOAT(newFloat, result);
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1231
	    RETURN ( newFloat );
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1232
	}
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1233
    } else if (__isFloatLike(aNumber)) {
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1234
	val = __floatVal(aNumber);
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1235
	if (val != 0.0) {
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1236
	    goto computeResult;
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1237
	}
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1238
    } else if (__isShortFloat(aNumber)) {
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1239
	val = (double)(__shortFloatVal(aNumber));
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1240
	if (val != 0.0) {
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1241
	    goto computeResult;
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1242
	}
14720
ca17582f4fba comment
Claus Gittinger <cg@exept.de>
parents: 14689
diff changeset
  1243
#ifdef LONGFLOAT_KNOWN_HERE
ca17582f4fba comment
Claus Gittinger <cg@exept.de>
parents: 14689
diff changeset
  1244
    } else if (__isLongFloat(aNumber)) {
ca17582f4fba comment
Claus Gittinger <cg@exept.de>
parents: 14689
diff changeset
  1245
	long double lval;
ca17582f4fba comment
Claus Gittinger <cg@exept.de>
parents: 14689
diff changeset
  1246
ca17582f4fba comment
Claus Gittinger <cg@exept.de>
parents: 14689
diff changeset
  1247
	lval = (long double)(__longFloatVal(aNumber));
ca17582f4fba comment
Claus Gittinger <cg@exept.de>
parents: 14689
diff changeset
  1248
	if (val != 0.0) {
ca17582f4fba comment
Claus Gittinger <cg@exept.de>
parents: 14689
diff changeset
  1249
	    long double lResult;
ca17582f4fba comment
Claus Gittinger <cg@exept.de>
parents: 14689
diff changeset
  1250
ca17582f4fba comment
Claus Gittinger <cg@exept.de>
parents: 14689
diff changeset
  1251
	    lResult = fmodl((long double)(__floatVal(self)), lval);
ca17582f4fba comment
Claus Gittinger <cg@exept.de>
parents: 14689
diff changeset
  1252
	    __qMKLFLOAT(newFloat, lResult);
ca17582f4fba comment
Claus Gittinger <cg@exept.de>
parents: 14689
diff changeset
  1253
	    RETURN (newFloat);
ca17582f4fba comment
Claus Gittinger <cg@exept.de>
parents: 14689
diff changeset
  1254
	}
ca17582f4fba comment
Claus Gittinger <cg@exept.de>
parents: 14689
diff changeset
  1255
#endif
14689
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1256
    }
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1257
%}.
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1258
    ((aNumber == 0) or:[aNumber = 0.0]) ifTrue:[
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1259
	"
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1260
	 No, you shalt not divide by zero
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1261
	"
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1262
	^ ZeroDivide raiseRequestWith:thisContext.
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1263
    ].
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1264
    ^ aNumber remainderFromFloat:self
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1265
!
f709732040c1 added rem: and a tiny performance speedup in other mixed-type arith messages
Claus Gittinger <cg@exept.de>
parents: 14672
diff changeset
  1266
3146
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  1267
uncheckedDivide:aNumber
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  1268
    "return the quotient of the receiver and the argument, aNumber.
7471
c5d4bd612d9f comments
Claus Gittinger <cg@exept.de>
parents: 7441
diff changeset
  1269
     Do not check for divide by zero (return NaN or Infinity).
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  1270
     This operation is provided for emulators of other languages/semantics,
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  1271
     where no exception is raised for these results (i.e. Java).
18838
20220bfa6867 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18492
diff changeset
  1272
     It is only defined if the argument's type is the same as the receiver's."
3146
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  1273
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  1274
%{  /* NOCONTEXT */
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  1275
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  1276
    OBJ newFloat;
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  1277
    double result, val;
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  1278
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  1279
    if (__isSmallInteger(aNumber)) {
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
  1280
	result = __floatVal(self) / ( (double)__intVal(aNumber)) ;
3146
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  1281
retResult:
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
  1282
	__qMKFLOAT(newFloat, result);
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
  1283
	RETURN ( newFloat );
3146
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  1284
    }
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  1285
    if (__isFloatLike(aNumber)) {
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
  1286
	val = __floatVal(aNumber);
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
  1287
	result = __floatVal(self) / val;
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
  1288
	goto retResult;
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  1289
    }
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  1290
    if (__isShortFloat(aNumber)) {
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
  1291
	val = (double)(__shortFloatVal(aNumber));
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
  1292
	result = __floatVal(self) / val;
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
  1293
	goto retResult;
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  1294
    }
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  1295
%}.
3146
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  1296
    ^ aNumber quotientFromFloat:self
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  1297
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  1298
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1299
      0.0 uncheckedDivide:0.0
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1300
      1.0 uncheckedDivide:0.0
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1301
      -1.0 uncheckedDivide:0.0
3146
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  1302
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1303
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1304
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1305
5238
f7a816a660a3 categories
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
  1306
!Float methodsFor:'coercing & converting'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1307
3014
9934bb63d455 added #asDouble
ca
parents: 2892
diff changeset
  1308
asDouble
17226
cb6ca4b18f06 class: Float
Claus Gittinger <cg@exept.de>
parents: 17218
diff changeset
  1309
    "ST80 compatibility: return a double with the receiver's value.
cb6ca4b18f06 class: Float
Claus Gittinger <cg@exept.de>
parents: 17218
diff changeset
  1310
     In ST/X, floats are the equivalent to ST80 doubles"
3014
9934bb63d455 added #asDouble
ca
parents: 2892
diff changeset
  1311
9934bb63d455 added #asDouble
ca
parents: 2892
diff changeset
  1312
    ^ self
9934bb63d455 added #asDouble
ca
parents: 2892
diff changeset
  1313
!
9934bb63d455 added #asDouble
ca
parents: 2892
diff changeset
  1314
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1315
asFloat
24280
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1316
    "return a Float with same value - that's me"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1317
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1318
    ^ self
24280
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1319
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1320
    "Modified (comment): / 07-06-2019 / 02:34:18 / Claus Gittinger"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1321
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1322
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1323
asInteger
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1324
    "return an integer with same value - might truncate"
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1325
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1326
%{  /* NOCONTEXT */
1670
55cde0b3ee8e slightly faster asInteger
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  1327
    double dVal;
13
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
  1328
1670
55cde0b3ee8e slightly faster asInteger
Claus Gittinger <cg@exept.de>
parents: 1556
diff changeset
  1329
    dVal = __floatVal(self);
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19616
diff changeset
  1330
#ifdef __win32__
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1331
    if (! isnan(dVal))
7420
633c9331da21 isnan for Win32
Claus Gittinger <cg@exept.de>
parents: 7411
diff changeset
  1332
#endif
633c9331da21 isnan for Win32
Claus Gittinger <cg@exept.de>
parents: 7411
diff changeset
  1333
    {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1334
	if ((dVal >= (double)_MIN_INT) && (dVal <= (double)_MAX_INT)) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1335
	    RETURN ( __mkSmallInteger( (INT)dVal) );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1336
	}
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1337
    }
1198
284eeba6b719 docu & limited shortFloat support
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
  1338
%}.
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1339
    ^ super asInteger
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1340
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1341
    "12345.0 asInteger"
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1342
    "1e15 asInteger"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1343
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1344
24280
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1345
asLargeFloat
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1346
    "return a LargeFloat with same value as receiver"
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1347
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1348
    ^ LargeFloat fromFloat:self
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1349
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1350
    "
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1351
     123 asFloat asLargeFloat
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1352
    "
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1353
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1354
    "Created: / 07-06-2019 / 02:34:01 / Claus Gittinger"
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1355
!
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1356
5986
3d8c2676e913 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5954
diff changeset
  1357
asLongFloat
24280
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1358
    "return a LongFloat with same value as receiver"
5986
3d8c2676e913 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5954
diff changeset
  1359
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  1360
    ^ LongFloat fromFloat:self
5986
3d8c2676e913 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5954
diff changeset
  1361
3d8c2676e913 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5954
diff changeset
  1362
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1363
     123 asFloat asLongFloat
5986
3d8c2676e913 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5954
diff changeset
  1364
    "
3d8c2676e913 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5954
diff changeset
  1365
24280
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1366
    "Created: / 07-09-2001 / 13:43:04 / cg"
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1367
    "Modified (comment): / 07-06-2019 / 02:34:07 / Claus Gittinger"
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1368
!
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1369
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1370
asQuadFloat
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1371
    "return a quadFloat with same value as receiver"
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1372
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1373
    ^ QuadFloat fromFloat:self
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1374
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1375
    "
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1376
     123 asFloat asQuadFloat
24328
e16d587ddbd6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24326
diff changeset
  1377
     0 asFloat asQuadFloat
e16d587ddbd6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24326
diff changeset
  1378
     0.0 asQuadFloat
24280
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1379
    "
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1380
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1381
    "Created: / 07-06-2019 / 02:28:26 / Claus Gittinger"
24328
e16d587ddbd6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24326
diff changeset
  1382
    "Modified (comment): / 10-06-2019 / 21:51:04 / Claus Gittinger"
5986
3d8c2676e913 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5954
diff changeset
  1383
!
3d8c2676e913 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5954
diff changeset
  1384
1198
284eeba6b719 docu & limited shortFloat support
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
  1385
asShortFloat
24280
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1386
    "return a ShortFloat with same value as receiver.
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1387
     Raises an error if the receiver exceeds the float range."
1198
284eeba6b719 docu & limited shortFloat support
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
  1388
284eeba6b719 docu & limited shortFloat support
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
  1389
%{  /* NOCONTEXT */
284eeba6b719 docu & limited shortFloat support
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
  1390
284eeba6b719 docu & limited shortFloat support
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
  1391
    OBJ dummy = @global(ShortFloat);
284eeba6b719 docu & limited shortFloat support
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
  1392
    OBJ newFloat;
24255
82a37ed5a27c oops - converting NaN
Claus Gittinger <cg@exept.de>
parents: 24249
diff changeset
  1393
    double dVal = __floatVal(self);
82a37ed5a27c oops - converting NaN
Claus Gittinger <cg@exept.de>
parents: 24249
diff changeset
  1394
    float fVal = (float)dVal;
82a37ed5a27c oops - converting NaN
Claus Gittinger <cg@exept.de>
parents: 24249
diff changeset
  1395
82a37ed5a27c oops - converting NaN
Claus Gittinger <cg@exept.de>
parents: 24249
diff changeset
  1396
    if (isfinite(fVal) || !isfinite(dVal)) {
24280
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1397
        __qMKSFLOAT(newFloat, fVal);
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1398
        RETURN ( newFloat );
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1399
    }
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1400
%}.
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1401
    "
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1402
     value out of range
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1403
     if you need -INF for a zero receiver, try Number trapInfinity:[...]
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1404
    "
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1405
    ^ self class
24280
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1406
        raise:#infiniteResultSignal
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1407
        receiver:self
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1408
        selector:#asShortFloat
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1409
        arguments:#()
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1410
        errorString:'receiver is out of the single-precision float range'
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1411
95d601984b32 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24266
diff changeset
  1412
    "Modified: / 07-06-2019 / 02:34:14 / Claus Gittinger"
1198
284eeba6b719 docu & limited shortFloat support
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
  1413
!
284eeba6b719 docu & limited shortFloat support
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
  1414
4615
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1415
asTrueFraction
17226
cb6ca4b18f06 class: Float
Claus Gittinger <cg@exept.de>
parents: 17218
diff changeset
  1416
    "Answer a fraction or integer that EXACTLY represents the receiver,
4615
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1417
     a double precision IEEE floating point number.
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1418
     Floats are stored in the same form on all platforms.
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1419
     (Does not handle gradual underflow or NANs.)
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1420
     By David N. Smith with significant performance
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1421
     improvements by Luciano Esteban Notarfrancesco.
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1422
     (Version of 11April97)"
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1423
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1424
    |shifty sign expPart exp fraction fractionPart result zeroBitsCount|
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1425
6344
f49b43e5b724 Raise more specific errors
Stefan Vogel <sv@exept.de>
parents: 6341
diff changeset
  1426
    self isFinite ifFalse:[
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1427
	^ self asMetaNumber
7441
17e37777f83b double dispatching
Claus Gittinger <cg@exept.de>
parents: 7429
diff changeset
  1428
"/        ^ self class
17e37777f83b double dispatching
Claus Gittinger <cg@exept.de>
parents: 7429
diff changeset
  1429
"/            raise:#domainErrorSignal
17e37777f83b double dispatching
Claus Gittinger <cg@exept.de>
parents: 7429
diff changeset
  1430
"/            receiver:self
17e37777f83b double dispatching
Claus Gittinger <cg@exept.de>
parents: 7429
diff changeset
  1431
"/            selector:#asTrueFraction
17e37777f83b double dispatching
Claus Gittinger <cg@exept.de>
parents: 7429
diff changeset
  1432
"/            arguments:#()
17e37777f83b double dispatching
Claus Gittinger <cg@exept.de>
parents: 7429
diff changeset
  1433
"/            errorString:'Cannot represent non-finite float as a fraction'.
6341
19a407a314da Raise more specific signals.
Stefan Vogel <sv@exept.de>
parents: 6335
diff changeset
  1434
    ].
4615
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1435
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1436
    "Extract the bits of an IEEE double float "
6341
19a407a314da Raise more specific signals.
Stefan Vogel <sv@exept.de>
parents: 6335
diff changeset
  1437
    shifty := LargeInteger basicNew numberOfDigits:8.
4615
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1438
    UninterpretedBytes isBigEndian ifTrue:[
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1439
	"/ shifty := ((self longWordAt: 1) bitShift: 32) + (self longWordAt: 2).
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1440
	1 to:8 do:[:i | shifty digitAt:(9-i) put:(self basicAt:i)].
4615
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1441
    ] ifFalse:[
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1442
	1 to:8 do:[:i | shifty digitAt:i put:(self basicAt:i)].
4615
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1443
    ].
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1444
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1445
    " Extract the sign and the biased exponent "
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1446
    sign := (shifty bitShift: -63) = 0 ifTrue: [1] ifFalse: [-1].
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1447
    expPart := (shifty bitShift: -52) bitAnd: 16r7FF.
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1448
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1449
    " Extract fractional part; answer 0 if this is a true 0.0 value "
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1450
    fractionPart := shifty bitAnd:  16r000FFFFFFFFFFFFF.
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1451
    ( expPart=0 and: [ fractionPart=0 ] ) ifTrue: [ ^ 0  ].
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1452
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1453
    " Replace omitted leading 1 in fraction "
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1454
    fraction := fractionPart bitOr: 16r0010000000000000.
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1455
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1456
    "Unbias exponent: 16r3FF is bias; 52 is fraction width"
7480
74f8bf8628e2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7471
diff changeset
  1457
    exp := 16r3FF - expPart + 52.
4615
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1458
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1459
    " Form the result. When exp>52, the exponent is adjusted by
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1460
      the number of trailing zero bits in the fraction to minimize
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1461
      the (huge) time otherwise spent in #gcd:. "
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1462
    exp negative ifTrue: [
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1463
	result := sign * (fraction bitShift: exp negated)
4615
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1464
    ] ifFalse:[
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1465
	zeroBitsCount := fraction lowBit - 1.
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1466
	exp := exp - zeroBitsCount.
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1467
	exp <= 0 ifTrue: [
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1468
	    zeroBitsCount := zeroBitsCount + exp.
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1469
	    "exp := 0."   " Not needed; exp not refernced again "
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1470
	    result := sign * (fraction bitShift:zeroBitsCount negated)
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1471
	] ifFalse: [
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1472
	    result := Fraction
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1473
		    numerator: (sign * (fraction bitShift: zeroBitsCount negated))
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1474
		    denominator: (1 bitShift:exp)
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1475
	]
4615
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1476
    ].
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1477
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1478
    "Low cost validation omitted after extensive testing"
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1479
    "(result asFloat = self) ifFalse: [self error: 'asTrueFraction validation failed']."
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1480
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1481
    ^ result
4615
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1482
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1483
    "
17226
cb6ca4b18f06 class: Float
Claus Gittinger <cg@exept.de>
parents: 17218
diff changeset
  1484
     0.3 asTrueFraction          - as you can see, Float is not able to represent this exactly
cb6ca4b18f06 class: Float
Claus Gittinger <cg@exept.de>
parents: 17218
diff changeset
  1485
     1.25 asTrueFraction         - but this one (it is a sum of powers of two)
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1486
     0.25 asTrueFraction
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1487
     -0.25 asTrueFraction
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1488
     3e37 asTrueFraction
17226
cb6ca4b18f06 class: Float
Claus Gittinger <cg@exept.de>
parents: 17218
diff changeset
  1489
     2e37 asTrueFraction
cb6ca4b18f06 class: Float
Claus Gittinger <cg@exept.de>
parents: 17218
diff changeset
  1490
     1e37 asTrueFraction
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1491
     1e30 asTrueFraction
6341
19a407a314da Raise more specific signals.
Stefan Vogel <sv@exept.de>
parents: 6335
diff changeset
  1492
     Float NaN asTrueFraction
6344
f49b43e5b724 Raise more specific errors
Stefan Vogel <sv@exept.de>
parents: 6341
diff changeset
  1493
     Float infinity asTrueFraction
4615
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1494
    "
24230
f51b6573478d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24206
diff changeset
  1495
f51b6573478d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24206
diff changeset
  1496
    "Modified (format): / 29-05-2019 / 03:12:55 / Claus Gittinger"
4615
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1497
!
e480d1e6090f largFloat -> largeInt conversion fixed.
Claus Gittinger <cg@exept.de>
parents: 4594
diff changeset
  1498
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1499
coerce:aNumber
18838
20220bfa6867 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18492
diff changeset
  1500
    "convert the argument aNumber into an instance of the receiver's class and return it."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1501
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1502
    ^ aNumber asFloat
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1503
!
13
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
  1504
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1505
generality
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1506
    "return the generality value - see ArithmeticValue>>retry:coercing:"
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1507
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1508
    ^ 80
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1509
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1510
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1511
!Float methodsFor:'comparing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1512
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1513
< aNumber
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1514
    "return true, if the argument is greater"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1515
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1516
%{  /* NOCONTEXT */
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1517
#ifdef __SCHTEAM__
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1518
    if (aNumber.isNumber()) {
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1519
	return context._RETURN( self.ltP(aNumber) );
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1520
    }
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1521
#else
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1522
    /*
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1523
     * notice:
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1524
     * the following inline code handles some common cases,
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1525
     * and exists as an optimization, to speed up those cases.
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1526
     *
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1527
     * Conceptionally, (and for most other argument types),
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1528
     * mixed arithmetic is implemented by double dispatching
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1529
     * (see the message send at the bottom)
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1530
     */
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  1531
    if (__isSmallInteger(aNumber)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1532
	RETURN ( (__floatVal(self) < (double)(__intVal(aNumber))) ? true : false );
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  1533
    }
3115
1ecfb9118163 dont check twice for nil (in compare ops)
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
  1534
    if (aNumber != nil) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1535
	if (__qIsFloatLike(aNumber)) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1536
	    RETURN ( (__floatVal(self) < __floatVal(aNumber)) ? true : false );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1537
	}
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1538
	if (__qIsShortFloat(aNumber)) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1539
	    RETURN ( (__floatVal(self) < (double)(__shortFloatVal(aNumber))) ? true : false );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1540
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1541
    }
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1542
#endif
3115
1ecfb9118163 dont check twice for nil (in compare ops)
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
  1543
%}.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1544
    ^ aNumber lessFromFloat:self
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1545
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1546
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1547
<= aNumber
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1548
    "return true, if the argument is greater or equal"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1549
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1550
%{  /* NOCONTEXT */
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1551
#ifdef __SCHTEAM__
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1552
    if (aNumber.isNumber()) {
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1553
	return context._RETURN( self.leP(aNumber) );
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1554
    }
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1555
#else
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1556
    /*
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1557
     * notice:
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1558
     * the following inline code handles some common cases,
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1559
     * and exists as an optimization, to speed up those cases.
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1560
     *
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1561
     * Conceptionally, (and for most other argument types),
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1562
     * mixed arithmetic is implemented by double dispatching
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1563
     * (see the message send at the bottom)
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1564
     */
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  1565
    if (__isSmallInteger(aNumber)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1566
	RETURN ( (__floatVal(self) <= (double)(__intVal(aNumber))) ? true : false );
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  1567
    }
3115
1ecfb9118163 dont check twice for nil (in compare ops)
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
  1568
    if (aNumber != nil) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1569
	if (__qIsFloatLike(aNumber)) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1570
	    RETURN ( (__floatVal(self) <= __floatVal(aNumber)) ? true : false );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1571
	}
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1572
	if (__qIsShortFloat(aNumber)) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1573
	    RETURN ( (__floatVal(self) <= (double)(__shortFloatVal(aNumber))) ? true : false );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1574
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1575
    }
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1576
#endif
3115
1ecfb9118163 dont check twice for nil (in compare ops)
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
  1577
%}.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1578
    ^ self retry:#<= coercing:aNumber
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1579
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1580
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1581
= aNumber
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  1582
    "return true, if the argument represents the same numeric value
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  1583
     as the receiver, false otherwise"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1584
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1585
%{  /* NOCONTEXT */
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1586
#ifdef __SCHTEAM__
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1587
    if (aNumber.isNumber()) {
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1588
	return context._RETURN( self.eqNrP(aNumber) );
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1589
    }
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1590
#else
13
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
  1591
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1592
    /*
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1593
     * notice:
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1594
     * the following inline code handles some common cases,
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1595
     * and exists as an optimization, to speed up those cases.
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1596
     *
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1597
     * Conceptionally, (and for most other argument types),
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1598
     * mixed arithmetic is implemented by double dispatching
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1599
     * (see the message send at the bottom)
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1600
     */
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  1601
    if (__isSmallInteger(aNumber)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1602
	RETURN ( (__floatVal(self) == (double)(__intVal(aNumber))) ? true : false );
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  1603
    }
3115
1ecfb9118163 dont check twice for nil (in compare ops)
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
  1604
    if (aNumber != nil) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1605
	if (__qIsFloatLike(aNumber)) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1606
	    RETURN ( (__floatVal(self) == __floatVal(aNumber)) ? true : false );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1607
	}
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1608
	if (__qIsShortFloat(aNumber)) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1609
	    RETURN ( (__floatVal(self) == (double)(__shortFloatVal(aNumber))) ? true : false );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1610
	}
3115
1ecfb9118163 dont check twice for nil (in compare ops)
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
  1611
    } else {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1612
	RETURN (false);
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1613
    }
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1614
#endif
3115
1ecfb9118163 dont check twice for nil (in compare ops)
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
  1615
%}.
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  1616
    ^ aNumber equalFromFloat:self
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1617
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1618
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1619
> aNumber
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1620
    "return true, if the argument is less"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1621
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1622
%{  /* NOCONTEXT */
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1623
#ifdef __SCHTEAM__
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1624
    if (aNumber.isNumber()) {
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1625
	return context._RETURN( self.gtP(aNumber) );
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1626
    }
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1627
#else
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1628
    /*
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1629
     * notice:
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1630
     * the following inline code handles some common cases,
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1631
     * and exists as an optimization, to speed up those cases.
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1632
     *
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1633
     * Conceptionally, (and for most other argument types),
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1634
     * mixed arithmetic is implemented by double dispatching
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1635
     * (see the message send at the bottom)
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1636
     */
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  1637
    if (__isSmallInteger(aNumber)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1638
	RETURN ( (__floatVal(self) > (double)(__intVal(aNumber))) ? true : false );
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  1639
    }
3115
1ecfb9118163 dont check twice for nil (in compare ops)
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
  1640
    if (aNumber != nil) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1641
	if (__qIsFloatLike(aNumber)) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1642
	    RETURN ( (__floatVal(self) > __floatVal(aNumber)) ? true : false );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1643
	}
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1644
	if (__qIsShortFloat(aNumber)) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1645
	    RETURN ( (__floatVal(self) > (double)(__shortFloatVal(aNumber))) ? true : false );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1646
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1647
    }
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1648
#endif
3115
1ecfb9118163 dont check twice for nil (in compare ops)
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
  1649
%}.
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1650
    ^ self retry:#> coercing:aNumber
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1651
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1652
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1653
>= aNumber
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1654
    "return true, if the argument is less or equal"
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1655
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1656
%{  /* NOCONTEXT */
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1657
#ifdef __SCHTEAM__
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1658
    if (aNumber.isNumber()) {
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1659
	return context._RETURN( self.geP(aNumber) );
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1660
    }
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1661
#else
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1662
    /*
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1663
     * notice:
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1664
     * the following inline code handles some common cases,
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1665
     * and exists as an optimization, to speed up those cases.
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1666
     *
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1667
     * Conceptionally, (and for most other argument types),
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1668
     * mixed arithmetic is implemented by double dispatching
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1669
     * (see the message send at the bottom)
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1670
     */
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  1671
    if (__isSmallInteger(aNumber)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1672
	RETURN ( (__floatVal(self) >= (double)(__intVal(aNumber))) ? true : false );
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  1673
    }
3115
1ecfb9118163 dont check twice for nil (in compare ops)
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
  1674
    if (aNumber != nil) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1675
	if (__qIsFloatLike(aNumber)) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1676
	    RETURN ( (__floatVal(self) >= __floatVal(aNumber)) ? true : false );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1677
	}
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1678
	if (__qIsShortFloat(aNumber)) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1679
	    RETURN ( (__floatVal(self) >= (double)(__shortFloatVal(aNumber))) ? true : false );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1680
	}
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1681
    }
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1682
#endif
3115
1ecfb9118163 dont check twice for nil (in compare ops)
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
  1683
%}.
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1684
    ^ self retry:#>= coercing:aNumber
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1685
!
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1686
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1687
hash
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1688
    "return a number for hashing; redefined, since floats compare
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1689
     by numeric value (i.e. 3.0 = 3), therefore 3.0 hash must be the same
4594
eb09f567a3bc float, shortFloat and fraction all hash alike
Claus Gittinger <cg@exept.de>
parents: 4593
diff changeset
  1690
     as 3 hash."
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1691
305
26b092c71935 *** empty log message ***
claus
parents: 283
diff changeset
  1692
    |i|
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1693
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1694
    (self >= SmallInteger minVal and:[self <= SmallInteger maxVal]) ifTrue:[
4655
b9405ca0bb4e added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4615
diff changeset
  1695
	i := self asInteger.
b9405ca0bb4e added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4615
diff changeset
  1696
	self = i ifTrue:[
b9405ca0bb4e added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4615
diff changeset
  1697
	    ^ i hash
b9405ca0bb4e added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4615
diff changeset
  1698
	].
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1699
    ].
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1700
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1701
    "
305
26b092c71935 *** empty log message ***
claus
parents: 283
diff changeset
  1702
     mhmh take some of my value-bits to hash on
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1703
    "
4590
3db3bf4615bd checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4454
diff changeset
  1704
    ^ (((self basicAt:8) bitAnd:16r1F) bitShift:24) +
305
26b092c71935 *** empty log message ***
claus
parents: 283
diff changeset
  1705
      ((self basicAt:7) bitShift:16) +
26b092c71935 *** empty log message ***
claus
parents: 283
diff changeset
  1706
      ((self basicAt:6) bitShift:8) +
4592
f68de0746dab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  1707
      (((self basicAt:5) + (self basicAt:1) + (self basicAt:2)) bitAnd:16rFF)
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1708
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1709
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1710
     3 hash
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1711
     3.0 hash
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1712
     3.1 hash
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1713
     3.14159 hash
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1714
     31.4159 hash
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1715
     3.141591 hash
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1716
     1.234567890123456 hash
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1717
     1.234567890123457 hash
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1718
     Set withAll:#(3 3.0 99 99.0 3.1415)
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  1719
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1720
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1721
17199
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  1722
isAlmostEqualTo:aNumber nEpsilon:nE
16658
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1723
    "return true, if the argument, aNumber represents almost the same numeric value
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1724
     as the receiver, false otherwise.
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1725
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1726
     nE is the number of minimal float distances, that the numbers may differ and
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  1727
     still be considered equal.
22559
ff1a09a98286 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 22491
diff changeset
  1728
     That is an integer, which counts the delta-steps in the mantissa.
ff1a09a98286 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 22491
diff changeset
  1729
     Notice, that the absolute value of the epsilon depends on the receiver
ff1a09a98286 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 22491
diff changeset
  1730
     (i.e. with a receiver of 10^17, a mantissa-step is much larger than with 10^-17 as receiver)
16658
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1731
17199
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  1732
     For background information why floats need this
16658
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1733
     read: http://randomascii.wordpress.com/2012/02/25/comparing-floating-point-numbers-2012-edition/
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1734
    "
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1735
21148
2b7df33ee311 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20799
diff changeset
  1736
    Epsilon isNil ifTrue:[
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1737
	Epsilon := self class computeEpsilon.
21148
2b7df33ee311 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20799
diff changeset
  1738
    ].
2b7df33ee311 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 20799
diff changeset
  1739
16658
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1740
%{  /* NOCONTEXT */
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1741
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1742
    /*
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1743
     * notice:
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1744
     * the following inline code handles some common cases,
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1745
     * and exists as an optimization, to speed up those cases.
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1746
     *
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1747
     * Conceptionally, (and for most other argument types),
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1748
     * mixed arithmetic is implemented by double dispatching
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1749
     * (see the message send at the bottom)
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1750
     */
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1751
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1752
    INT64 ulpDiff;
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1753
    union {
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1754
	double d;
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1755
	INT64 i;
16658
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1756
    } myself, otherFloat;
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1757
    int nEpsilon;
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1758
    double scaledEpsilon;
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1759
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1760
    if (!__isSmallInteger(nE)) {
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1761
	goto tryHarder;
16658
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1762
    }
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1763
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1764
    nEpsilon =  __intVal(nE);
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1765
    scaledEpsilon = nEpsilon *__floatVal(@global(Epsilon));
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1766
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1767
    if (__isSmallInteger(aNumber)) {
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1768
	otherFloat.d = (double)(__intVal(aNumber));
16658
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1769
    } else if (aNumber == nil) {
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1770
	RETURN(false)
16658
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1771
    } else if (__qIsFloatLike(aNumber)) {
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1772
	otherFloat.d = (double)(__floatVal(aNumber));
16658
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1773
    } else if (__qIsShortFloat(aNumber)) {
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1774
	otherFloat.d = (double)(__shortFloatVal(aNumber));
16658
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1775
    } else {
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1776
	goto tryHarder;
16658
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1777
    }
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1778
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1779
    myself.d = __floatVal(self);
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1780
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1781
    // Check if the numbers are really close -- needed
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1782
    // when comparing numbers near zero (ULP method below fails for numbers near 0!).
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1783
    if (fabs(myself.d - otherFloat.d) <= scaledEpsilon) {
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1784
	RETURN(true);
16658
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1785
    }
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1786
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1787
    // if the signs differ, the numbers are different
16667
a659a8f95304 changes for borland
Claus Gittinger <cg@exept.de>
parents: 16661
diff changeset
  1788
    if ((myself.d >= 0) != (otherFloat.d >= 0)) {
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1789
	RETURN(false);
16658
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1790
    }
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1791
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1792
    // compute the difference of the 'units in the last place" ULP
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1793
    // (if ulpDiff == 1, two floats are adjecant)
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1794
    ulpDiff = myself.i - otherFloat.i;
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1795
    if (ulpDiff < 0) ulpDiff = -ulpDiff;
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1796
    if (ulpDiff <= nEpsilon) {
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1797
	RETURN(true);
16658
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1798
    } else {
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1799
	RETURN(false)
16658
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1800
    }
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1801
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1802
tryHarder:;
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1803
%}.
22559
ff1a09a98286 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 22491
diff changeset
  1804
    nE isInteger ifFalse:[
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1805
	self error:'nEpsilon argument must be an integer'.
22559
ff1a09a98286 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 22491
diff changeset
  1806
    ].
16658
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1807
    ^ aNumber isAlmostEqualToFromFloat:self nEpsilon:nE
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1808
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1809
    "
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1810
	67329.234 isAlmostEqualTo:67329.23400000001 nEpsilon:1
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1811
	1.0 isAlmostEqualTo:1.0001 nEpsilon:1
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1812
	1.0 isAlmostEqualTo:-1.0 nEpsilon:1
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1813
	1 isAlmostEqualTo:1.000000000000001 nEpsilon:1
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1814
	1 isAlmostEqualTo:1.000000000000001 nEpsilon:10
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1815
	1.0 isAlmostEqualTo:1 nEpsilon:1
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1816
	1.0 isAlmostEqualTo:1 asFraction nEpsilon:1
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1817
	0.0 isAlmostEqualTo:0 nEpsilon:1
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  1818
	0.0 isAlmostEqualTo:self epsilon nEpsilon:1
16658
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1819
    "
22854
fad0230dcfcf #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 22728
diff changeset
  1820
fad0230dcfcf #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 22728
diff changeset
  1821
    "Modified: / 10-05-2018 / 00:48:57 / stefan"
16658
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1822
!
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  1823
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1824
~= aNumber
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1825
    "return true, if the arguments value are not equal"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1826
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1827
%{  /* NOCONTEXT */
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1828
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1829
    /*
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1830
     * notice:
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1831
     * the following inline code handles some common cases,
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1832
     * and exists as an optimization, to speed up those cases.
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1833
     *
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1834
     * Conceptionally, (and for most other argument types),
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1835
     * mixed arithmetic is implemented by double dispatching
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1836
     * (see the message send at the bottom)
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1837
     */
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  1838
    if (__isSmallInteger(aNumber)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1839
	RETURN ( (__floatVal(self) != (double)(__intVal(aNumber))) ? true : false );
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  1840
    }
3115
1ecfb9118163 dont check twice for nil (in compare ops)
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
  1841
    if (aNumber != nil) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1842
	if (__qIsFloatLike(aNumber)) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1843
	    RETURN ( (__floatVal(self) != __floatVal(aNumber)) ? true : false );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1844
	}
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1845
	if (__qIsShortFloat(aNumber)) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1846
	    RETURN ( (__floatVal(self) != (double)(__shortFloatVal(aNumber))) ? true : false );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1847
	}
3115
1ecfb9118163 dont check twice for nil (in compare ops)
Claus Gittinger <cg@exept.de>
parents: 3014
diff changeset
  1848
    } else {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1849
	RETURN ( true );
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1850
    }
1695
465e1eba8e8e removed useless context-arg of all qMK macros - needs full recompile.
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1851
%}.
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  1852
    ^ super ~= aNumber
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1853
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1854
24191
43920a4e5002 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24169
diff changeset
  1855
!Float methodsFor:'copying'!
43920a4e5002 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24169
diff changeset
  1856
43920a4e5002 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24169
diff changeset
  1857
deepCopy
43920a4e5002 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24169
diff changeset
  1858
    "return a deep copy of myself
43920a4e5002 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24169
diff changeset
  1859
     - because storing into floats is not recommended/allowed, its ok to return the receiver"
43920a4e5002 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24169
diff changeset
  1860
43920a4e5002 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24169
diff changeset
  1861
    ^ self
43920a4e5002 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24169
diff changeset
  1862
!
43920a4e5002 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24169
diff changeset
  1863
43920a4e5002 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24169
diff changeset
  1864
deepCopyUsing:aDictionary postCopySelector:postCopySelector
43920a4e5002 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24169
diff changeset
  1865
    "return a deep copy of myself
43920a4e5002 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24169
diff changeset
  1866
     - because storing into floats is not recommended/allowed, its ok to return the receiver"
43920a4e5002 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24169
diff changeset
  1867
43920a4e5002 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24169
diff changeset
  1868
    ^ self
43920a4e5002 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24169
diff changeset
  1869
!
43920a4e5002 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24169
diff changeset
  1870
43920a4e5002 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24169
diff changeset
  1871
shallowCopy
43920a4e5002 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24169
diff changeset
  1872
    "return a shallow copy of the receiver"
43920a4e5002 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24169
diff changeset
  1873
43920a4e5002 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24169
diff changeset
  1874
    ^ self
43920a4e5002 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24169
diff changeset
  1875
!
43920a4e5002 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24169
diff changeset
  1876
43920a4e5002 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24169
diff changeset
  1877
simpleDeepCopy
43920a4e5002 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24169
diff changeset
  1878
    "return a deep copy of the receiver
43920a4e5002 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24169
diff changeset
  1879
     - because storing into floats is not recommended/allowed, its ok to return the receiver"
43920a4e5002 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24169
diff changeset
  1880
43920a4e5002 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24169
diff changeset
  1881
    ^ self
43920a4e5002 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24169
diff changeset
  1882
! !
43920a4e5002 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 24169
diff changeset
  1883
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1884
!Float methodsFor:'mathematical functions'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1885
17218
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
  1886
cbrt
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
  1887
    "return the cubic root of myself."
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
  1888
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
  1889
%{  /* NOCONTEXT */
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
  1890
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19616
diff changeset
  1891
#ifndef __win32__ /* seems to be not avail. in WIN32 math lib */
17218
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
  1892
    double val, rslt;
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
  1893
    OBJ newFloat;
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
  1894
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
  1895
    val = __floatVal(self);
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
  1896
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
  1897
    {
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
  1898
	__threadErrno = 0;
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
  1899
	rslt = cbrt(val);
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
  1900
	if (! isnan(rslt))  /* Currently all our systems support isnan() */
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
  1901
	{
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
  1902
	    if (__threadErrno == 0) {
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
  1903
		__qMKFLOAT(newFloat, rslt);
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
  1904
		RETURN ( newFloat );
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
  1905
	    }
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
  1906
	}
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
  1907
    }
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
  1908
# endif /* WIN32 */
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
  1909
%}.
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
  1910
    ^ super cbrt
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
  1911
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
  1912
    "
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
  1913
     8 cbrt
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
  1914
     -8 cbrt
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
  1915
    "
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
  1916
!
3d97edbc08f8 class: Float
Stefan Vogel <sv@exept.de>
parents: 17200
diff changeset
  1917
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1918
exp
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1919
    "return e raised to the power of the receiver"
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1920
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1921
%{  /* NOCONTEXT */
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1922
1695
465e1eba8e8e removed useless context-arg of all qMK macros - needs full recompile.
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1923
    double rslt;
465e1eba8e8e removed useless context-arg of all qMK macros - needs full recompile.
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1924
    OBJ newFloat;
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1925
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  1926
    __threadErrno = 0;
1695
465e1eba8e8e removed useless context-arg of all qMK macros - needs full recompile.
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1927
    rslt = exp(__floatVal(self));
7393
23344038fa0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7391
diff changeset
  1928
    if (! isnan(rslt))  /* Currently all our systems support isnan() */
23344038fa0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7391
diff changeset
  1929
    {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1930
	if (__threadErrno == 0) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1931
	    __qMKFLOAT(newFloat, rslt);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1932
	    RETURN ( newFloat );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1933
	}
1695
465e1eba8e8e removed useless context-arg of all qMK macros - needs full recompile.
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1934
    }
465e1eba8e8e removed useless context-arg of all qMK macros - needs full recompile.
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1935
%}.
3395
02f47135d80f pass messageSend as parameter to domainError exception
Claus Gittinger <cg@exept.de>
parents: 3279
diff changeset
  1936
    ^ self class
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1937
	raise:#domainErrorSignal
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1938
	receiver:self
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1939
	selector:#exp
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1940
	arguments:#()
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  1941
	errorString:'bad receiver in exp'
6195
9e60c38d1d61 #raise:receiver:selector...
Claus Gittinger <cg@exept.de>
parents: 6193
diff changeset
  1942
9e60c38d1d61 #raise:receiver:selector...
Claus Gittinger <cg@exept.de>
parents: 6193
diff changeset
  1943
    "Modified: / 16.11.2001 / 14:14:29 / cg"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1944
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  1945
21832
ea2680fc4ea9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21824
diff changeset
  1946
ldexp:exp
ea2680fc4ea9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21824
diff changeset
  1947
    "multiply the receiver by an integral power of 2.
ea2680fc4ea9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21824
diff changeset
  1948
     I.e. return self * (2 ^ exp)"
ea2680fc4ea9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21824
diff changeset
  1949
ea2680fc4ea9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21824
diff changeset
  1950
%{  /* NOCONTEXT */
ea2680fc4ea9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21824
diff changeset
  1951
#ifndef __SCHTEAM__
ea2680fc4ea9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21824
diff changeset
  1952
    double val, rslt;
ea2680fc4ea9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21824
diff changeset
  1953
    OBJ newFloat;
ea2680fc4ea9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21824
diff changeset
  1954
ea2680fc4ea9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21824
diff changeset
  1955
    if (__isSmallInteger(exp)) {
21868
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
  1956
	int __exp = __intVal(exp);
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
  1957
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
  1958
	val = __floatVal(self);
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
  1959
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
  1960
	{
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
  1961
	    __threadErrno = 0;
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
  1962
	    rslt = ldexp(val, __exp);
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
  1963
	    if (! isnan(rslt))  /* Currently all our systems support isnan() */
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
  1964
	    {
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
  1965
		if (__threadErrno == 0) {
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
  1966
		    __qMKFLOAT(newFloat, rslt);
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
  1967
		    RETURN ( newFloat );
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
  1968
		}
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
  1969
	    }
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
  1970
	}
21832
ea2680fc4ea9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21824
diff changeset
  1971
    }
ea2680fc4ea9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21824
diff changeset
  1972
#endif
ea2680fc4ea9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21824
diff changeset
  1973
%}.
21835
9bdc9ff693ef #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21832
diff changeset
  1974
    ^ super ldexp:exp
21832
ea2680fc4ea9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21824
diff changeset
  1975
ea2680fc4ea9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21824
diff changeset
  1976
    "
ea2680fc4ea9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21824
diff changeset
  1977
     1.0 ldexp:16
ea2680fc4ea9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21824
diff changeset
  1978
    "
ea2680fc4ea9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21824
diff changeset
  1979
ea2680fc4ea9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21824
diff changeset
  1980
    "Created: / 19-06-2017 / 01:42:22 / cg"
21835
9bdc9ff693ef #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21832
diff changeset
  1981
    "Modified: / 19-06-2017 / 09:16:32 / cg"
21832
ea2680fc4ea9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21824
diff changeset
  1982
!
ea2680fc4ea9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21824
diff changeset
  1983
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1984
ln
6193
69f010509638 comments
Claus Gittinger <cg@exept.de>
parents: 6189
diff changeset
  1985
    "return the natural logarithm of myself.
69f010509638 comments
Claus Gittinger <cg@exept.de>
parents: 6189
diff changeset
  1986
     Raises an exception, if the receiver is less or equal to zero."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1987
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1988
%{  /* NOCONTEXT */
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1989
#ifdef __SCHTEAM__
18299
74723837b0ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 18296
diff changeset
  1990
    return context._RETURN( self.log() );
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  1991
#else
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1992
6189
f4bfc2dacdb7 win32: care for some math errors
Claus Gittinger <cg@exept.de>
parents: 6145
diff changeset
  1993
    double val, rslt;
1695
465e1eba8e8e removed useless context-arg of all qMK macros - needs full recompile.
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  1994
    OBJ newFloat;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1995
6189
f4bfc2dacdb7 win32: care for some math errors
Claus Gittinger <cg@exept.de>
parents: 6145
diff changeset
  1996
    val = __floatVal(self);
f4bfc2dacdb7 win32: care for some math errors
Claus Gittinger <cg@exept.de>
parents: 6145
diff changeset
  1997
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  1998
    /*
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  1999
     * to suppress the warnBox opened by win32
21952
63418263e52b #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21936
diff changeset
  2000
     * to avoid returning -INF from some unix math libs (__osx__)
63418263e52b #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21936
diff changeset
  2001
     */
63418263e52b #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21936
diff changeset
  2002
    if (val > 0.0) {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2003
	__threadErrno = 0;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2004
	rslt = log(val);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2005
	if (! isnan(rslt))  /* Currently all our systems support isnan() */
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2006
	{
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2007
	    if (__threadErrno == 0) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2008
		__qMKFLOAT(newFloat, rslt);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2009
		RETURN ( newFloat );
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2010
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2011
	}
1695
465e1eba8e8e removed useless context-arg of all qMK macros - needs full recompile.
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  2012
    }
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2013
#endif
1695
465e1eba8e8e removed useless context-arg of all qMK macros - needs full recompile.
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  2014
%}.
142
c7844287bddf *** empty log message ***
claus
parents: 131
diff changeset
  2015
    "
c7844287bddf *** empty log message ***
claus
parents: 131
diff changeset
  2016
     an invalid value for logarithm
21970
c57071d829f7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21968
diff changeset
  2017
     if you need -INF for a zero receiver, try Number trapInfinity:[...]
142
c7844287bddf *** empty log message ***
claus
parents: 131
diff changeset
  2018
    "
3395
02f47135d80f pass messageSend as parameter to domainError exception
Claus Gittinger <cg@exept.de>
parents: 3279
diff changeset
  2019
    ^ self class
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2020
	raise:(self = 0 ifTrue:[#infiniteResultSignal] ifFalse:[#domainErrorSignal])
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2021
	receiver:self
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2022
	selector:#ln
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2023
	arguments:#()
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2024
	errorString:'bad receiver in ln (not strictly positive)'
21952
63418263e52b #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21936
diff changeset
  2025
21970
c57071d829f7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21968
diff changeset
  2026
    "Modified (comment): / 03-07-2017 / 15:58:17 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2027
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2028
7373
Claus Gittinger <cg@exept.de>
parents: 7355
diff changeset
  2029
log10
21824
a0ef855253f9 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21148
diff changeset
  2030
    "return the base-10 logarithm of the receiver.
7373
Claus Gittinger <cg@exept.de>
parents: 7355
diff changeset
  2031
     Raises an exception, if the receiver is less or equal to zero."
Claus Gittinger <cg@exept.de>
parents: 7355
diff changeset
  2032
Claus Gittinger <cg@exept.de>
parents: 7355
diff changeset
  2033
%{  /* NOCONTEXT */
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2034
#ifdef __SCHTEAM__
18299
74723837b0ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 18296
diff changeset
  2035
    return context._RETURN( self.log10() );
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2036
#else
7373
Claus Gittinger <cg@exept.de>
parents: 7355
diff changeset
  2037
Claus Gittinger <cg@exept.de>
parents: 7355
diff changeset
  2038
    double val, rslt;
Claus Gittinger <cg@exept.de>
parents: 7355
diff changeset
  2039
    OBJ newFloat;
Claus Gittinger <cg@exept.de>
parents: 7355
diff changeset
  2040
Claus Gittinger <cg@exept.de>
parents: 7355
diff changeset
  2041
    val = __floatVal(self);
Claus Gittinger <cg@exept.de>
parents: 7355
diff changeset
  2042
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2043
    /*
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2044
     * to suppress the warnBox opened by win32
21953
ebaf440a6e48 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21952
diff changeset
  2045
     * to avoid returning -INF from some unix math libs (__osx__)
ebaf440a6e48 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21952
diff changeset
  2046
     */
ebaf440a6e48 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21952
diff changeset
  2047
    if (val > 0.0) {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2048
	__threadErrno = 0;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2049
	rslt = log10(val);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2050
	if (! isnan(rslt))  /* Currently all our systems support isnan() */
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2051
	{
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2052
	    if (__threadErrno == 0) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2053
		__qMKFLOAT(newFloat, rslt);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2054
		RETURN ( newFloat );
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2055
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2056
	}
7373
Claus Gittinger <cg@exept.de>
parents: 7355
diff changeset
  2057
    }
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2058
#endif
7373
Claus Gittinger <cg@exept.de>
parents: 7355
diff changeset
  2059
%}.
Claus Gittinger <cg@exept.de>
parents: 7355
diff changeset
  2060
    "
Claus Gittinger <cg@exept.de>
parents: 7355
diff changeset
  2061
     an invalid value for logarithm
21970
c57071d829f7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21968
diff changeset
  2062
     if you need -INF for a zero receiver, try Number trapInfinity:[...]
7373
Claus Gittinger <cg@exept.de>
parents: 7355
diff changeset
  2063
    "
Claus Gittinger <cg@exept.de>
parents: 7355
diff changeset
  2064
    ^ self class
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2065
	raise:(self = 0 ifTrue:[#infiniteResultSignal] ifFalse:[#domainErrorSignal])
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2066
	receiver:self
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2067
	selector:#log10
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2068
	arguments:#()
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2069
	errorString:'bad receiver in log10 (not strictly positive)'
21953
ebaf440a6e48 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21952
diff changeset
  2070
21970
c57071d829f7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21968
diff changeset
  2071
    "Modified (comment): / 03-07-2017 / 15:58:21 / cg"
7373
Claus Gittinger <cg@exept.de>
parents: 7355
diff changeset
  2072
!
Claus Gittinger <cg@exept.de>
parents: 7355
diff changeset
  2073
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2074
raisedTo:aNumber
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2075
    "return self raised to the power of aNumber"
3127
590c7d2bb4b9 fixes isNAN (on linux); added #isInfinite
Claus Gittinger <cg@exept.de>
parents: 3118
diff changeset
  2076
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2077
%{
21936
5a4a6a7c47d3 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21913
diff changeset
  2078
    double _n, rslt;
1695
465e1eba8e8e removed useless context-arg of all qMK macros - needs full recompile.
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  2079
    OBJ newFloat;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2080
21936
5a4a6a7c47d3 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21913
diff changeset
  2081
    if (__isFloatLike(aNumber)) {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2082
	_n = __floatVal(aNumber);
21936
5a4a6a7c47d3 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21913
diff changeset
  2083
    } else if (__isSmallInteger(aNumber)) {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2084
	_n = (double)__intVal(aNumber);
21936
5a4a6a7c47d3 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21913
diff changeset
  2085
    } else {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2086
	goto notEasy;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2087
    }
21936
5a4a6a7c47d3 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21913
diff changeset
  2088
    __threadErrno = 0;
5a4a6a7c47d3 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21913
diff changeset
  2089
    rslt = pow(__floatVal(self), _n);
5a4a6a7c47d3 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21913
diff changeset
  2090
    if (! isnan(rslt)) { /* Currently all our systems support isnan() */
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2091
	if (__threadErrno == 0) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2092
	    __qMKFLOAT(newFloat, rslt);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2093
	    RETURN ( newFloat );
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2094
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2095
    }
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2096
notEasy: ;
1695
465e1eba8e8e removed useless context-arg of all qMK macros - needs full recompile.
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  2097
%}.
21913
018adffb2e93 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21909
diff changeset
  2098
    "/ the c-library pow function, has a bug:
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
  2099
    "/ it does not deal correctly with negative numbers.
19091
12b1f7ebf405 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18857
diff changeset
  2100
    "/ I.e. it raises an error on -8^(1/3) instead of returning a negative -2
12b1f7ebf405 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18857
diff changeset
  2101
    "/ work around with a kludge:
12b1f7ebf405 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18857
diff changeset
  2102
    self < 0 ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2103
	^ (self negated raisedTo:aNumber) negated
19091
12b1f7ebf405 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18857
diff changeset
  2104
    ].
12b1f7ebf405 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18857
diff changeset
  2105
21936
5a4a6a7c47d3 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21913
diff changeset
  2106
    ^ aNumber raisedFromFloat:self
5a4a6a7c47d3 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21913
diff changeset
  2107
5a4a6a7c47d3 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21913
diff changeset
  2108
    "Modified: / 01-07-2017 / 21:58:26 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2109
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2110
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2111
sqrt
6193
69f010509638 comments
Claus Gittinger <cg@exept.de>
parents: 6189
diff changeset
  2112
    "return the square root of myself.
69f010509638 comments
Claus Gittinger <cg@exept.de>
parents: 6189
diff changeset
  2113
     Raises an exception, if the receiver is less than zero."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2114
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2115
%{  /* NOCONTEXT */
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2116
6189
f4bfc2dacdb7 win32: care for some math errors
Claus Gittinger <cg@exept.de>
parents: 6145
diff changeset
  2117
    double val, rslt;
1695
465e1eba8e8e removed useless context-arg of all qMK macros - needs full recompile.
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  2118
    OBJ newFloat;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2119
6189
f4bfc2dacdb7 win32: care for some math errors
Claus Gittinger <cg@exept.de>
parents: 6145
diff changeset
  2120
    val = __floatVal(self);
f4bfc2dacdb7 win32: care for some math errors
Claus Gittinger <cg@exept.de>
parents: 6145
diff changeset
  2121
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19616
diff changeset
  2122
#ifdef __win32__ /* to suppress the warnBox opened by win32 */
6189
f4bfc2dacdb7 win32: care for some math errors
Claus Gittinger <cg@exept.de>
parents: 6145
diff changeset
  2123
    if (val >= 0.0)
3889
3466554b639f manually check receiver for beeing >= 0 under WINDOWS
Claus Gittinger <cg@exept.de>
parents: 3632
diff changeset
  2124
#endif
3466554b639f manually check receiver for beeing >= 0 under WINDOWS
Claus Gittinger <cg@exept.de>
parents: 3632
diff changeset
  2125
    {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2126
	__threadErrno = 0;
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2127
	rslt = sqrt(val);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2128
	if (! isnan(rslt))  /* Currently all our systems support isnan() */
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2129
	{
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2130
	    if (__threadErrno == 0) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2131
		__qMKFLOAT(newFloat, rslt);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2132
		RETURN ( newFloat );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2133
	    }
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2134
	}
1695
465e1eba8e8e removed useless context-arg of all qMK macros - needs full recompile.
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  2135
    }
465e1eba8e8e removed useless context-arg of all qMK macros - needs full recompile.
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  2136
%}.
3395
02f47135d80f pass messageSend as parameter to domainError exception
Claus Gittinger <cg@exept.de>
parents: 3279
diff changeset
  2137
    ^ self class
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2138
	raise:#imaginaryResultSignal
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2139
	receiver:self
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2140
	selector:#sqrt
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2141
	arguments:#()
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2142
	errorString:'bad (negative) receiver in sqrt'
3399
4f45ebb7bc60 oops - linux does not set errNo on some domainErrors;
Claus Gittinger <cg@exept.de>
parents: 3395
diff changeset
  2143
4f45ebb7bc60 oops - linux does not set errNo on some domainErrors;
Claus Gittinger <cg@exept.de>
parents: 3395
diff changeset
  2144
    "
4f45ebb7bc60 oops - linux does not set errNo on some domainErrors;
Claus Gittinger <cg@exept.de>
parents: 3395
diff changeset
  2145
     10 sqrt
4f45ebb7bc60 oops - linux does not set errNo on some domainErrors;
Claus Gittinger <cg@exept.de>
parents: 3395
diff changeset
  2146
     -10 sqrt
4f45ebb7bc60 oops - linux does not set errNo on some domainErrors;
Claus Gittinger <cg@exept.de>
parents: 3395
diff changeset
  2147
    "
6193
69f010509638 comments
Claus Gittinger <cg@exept.de>
parents: 6189
diff changeset
  2148
6195
9e60c38d1d61 #raise:receiver:selector...
Claus Gittinger <cg@exept.de>
parents: 6193
diff changeset
  2149
    "Modified: / 16.11.2001 / 14:14:43 / cg"
13
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
  2150
! !
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
  2151
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
  2152
!Float methodsFor:'printing & storing'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2153
22301
d897877094e8 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22260
diff changeset
  2154
printOn:aStream
d897877094e8 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22260
diff changeset
  2155
    "append a printed representation of the receiver to
d897877094e8 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22260
diff changeset
  2156
     the argument, aStream.
d897877094e8 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22260
diff changeset
  2157
d897877094e8 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22260
diff changeset
  2158
     I use #printString instead of #printOn: as basic print mechanism."
d897877094e8 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22260
diff changeset
  2159
d897877094e8 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22260
diff changeset
  2160
    aStream nextPutAll:self printString
d897877094e8 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22260
diff changeset
  2161
d897877094e8 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22260
diff changeset
  2162
    "Created: / 10-10-2017 / 14:05:13 / cg"
d897877094e8 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22260
diff changeset
  2163
!
d897877094e8 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22260
diff changeset
  2164
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2165
printString
2358
6bdf2adfe9f5 defaultPrintFormat
Claus Gittinger <cg@exept.de>
parents: 2215
diff changeset
  2166
    "return a printed representation of the receiver;
6bdf2adfe9f5 defaultPrintFormat
Claus Gittinger <cg@exept.de>
parents: 2215
diff changeset
  2167
     if not specified otherwise (by setting DefaultPrintFormat),
3194
16073834a825 Add comment about #printOn: and #printString
Stefan Vogel <sv@exept.de>
parents: 3163
diff changeset
  2168
     6 valid digits are printed.
16073834a825 Add comment about #printOn: and #printString
Stefan Vogel <sv@exept.de>
parents: 3163
diff changeset
  2169
     LimitedPrecisonReal and its subclasses use #printString instead of
16073834a825 Add comment about #printOn: and #printString
Stefan Vogel <sv@exept.de>
parents: 3163
diff changeset
  2170
     #printOn: as basic print mechanism."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2171
21868
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
  2172
    ^ self printStringWithFormat:self class defaultPrintFormat
18138
7b069a4727fd class: Float
Claus Gittinger <cg@exept.de>
parents: 18133
diff changeset
  2173
7b069a4727fd class: Float
Claus Gittinger <cg@exept.de>
parents: 18133
diff changeset
  2174
    "
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2175
	Float pi printString.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2176
	1.0 printString
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2177
	1.234 printString
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2178
	1e10 printString
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2179
	1e-60 printString
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2180
	1.2e3 printString
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2181
	1.2e30 printString
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2182
	(1.0 uncheckedDivide:0) printString
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2183
	(0.0 uncheckedDivide:0) printString
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2184
	self pi printString.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2185
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2186
	DecimalPointCharacter := $,.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2187
	1.234 printString.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2188
	1.0 printString.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2189
	1e10 printString.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2190
	1.2e3 printString.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2191
	1.2e30 printString.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2192
	(1.0 uncheckedDivide:0) printString.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2193
	(0.0 uncheckedDivide:0) printString.
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2194
	DecimalPointCharacter := $.
18138
7b069a4727fd class: Float
Claus Gittinger <cg@exept.de>
parents: 18133
diff changeset
  2195
    "
21877
3dd1362bd049 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21876
diff changeset
  2196
3dd1362bd049 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21876
diff changeset
  2197
    "Modified (comment): / 21-06-2017 / 09:46:01 / cg"
18138
7b069a4727fd class: Float
Claus Gittinger <cg@exept.de>
parents: 18133
diff changeset
  2198
!
7b069a4727fd class: Float
Claus Gittinger <cg@exept.de>
parents: 18133
diff changeset
  2199
7b069a4727fd class: Float
Claus Gittinger <cg@exept.de>
parents: 18133
diff changeset
  2200
printStringWithFormat:format
7b069a4727fd class: Float
Claus Gittinger <cg@exept.de>
parents: 18133
diff changeset
  2201
    "return a printed representation of the receiver;
7b069a4727fd class: Float
Claus Gittinger <cg@exept.de>
parents: 18133
diff changeset
  2202
     fmt must be of the form: .nn, where nn is the number of digits.
7b069a4727fd class: Float
Claus Gittinger <cg@exept.de>
parents: 18133
diff changeset
  2203
     To print 6 valid digits, use printStringWithFormat:'.6'
7b069a4727fd class: Float
Claus Gittinger <cg@exept.de>
parents: 18133
diff changeset
  2204
     For Floats, the default used in printString, is 15 (because its a double);
7b069a4727fd class: Float
Claus Gittinger <cg@exept.de>
parents: 18133
diff changeset
  2205
     for ShortFloats, it is 6 (because it is a float)"
7b069a4727fd class: Float
Claus Gittinger <cg@exept.de>
parents: 18133
diff changeset
  2206
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2207
%{  /* NOCONTEXT */
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2208
13
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
  2209
    char buffer[64];
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2210
    REGISTER char *cp;
314
7581a5c57224 *** empty log message ***
claus
parents: 305
diff changeset
  2211
    OBJ s;
2358
6bdf2adfe9f5 defaultPrintFormat
Claus Gittinger <cg@exept.de>
parents: 2215
diff changeset
  2212
    char *fmt;
6bdf2adfe9f5 defaultPrintFormat
Claus Gittinger <cg@exept.de>
parents: 2215
diff changeset
  2213
    char fmtBuffer[20];
8417
dcba76518224 Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 8302
diff changeset
  2214
    int len;
2358
6bdf2adfe9f5 defaultPrintFormat
Claus Gittinger <cg@exept.de>
parents: 2215
diff changeset
  2215
18138
7b069a4727fd class: Float
Claus Gittinger <cg@exept.de>
parents: 18133
diff changeset
  2216
    if (__isStringLike(format)) {
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2217
	fmt = (char *) __stringVal(format);
2358
6bdf2adfe9f5 defaultPrintFormat
Claus Gittinger <cg@exept.de>
parents: 2215
diff changeset
  2218
    } else {
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2219
	/*
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2220
	 * in case we get called with garbage ...
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2221
	 */
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2222
	fmt = ".15";
2358
6bdf2adfe9f5 defaultPrintFormat
Claus Gittinger <cg@exept.de>
parents: 2215
diff changeset
  2223
    }
6bdf2adfe9f5 defaultPrintFormat
Claus Gittinger <cg@exept.de>
parents: 2215
diff changeset
  2224
6bdf2adfe9f5 defaultPrintFormat
Claus Gittinger <cg@exept.de>
parents: 2215
diff changeset
  2225
    /*
6bdf2adfe9f5 defaultPrintFormat
Claus Gittinger <cg@exept.de>
parents: 2215
diff changeset
  2226
     * build a printf format string
6bdf2adfe9f5 defaultPrintFormat
Claus Gittinger <cg@exept.de>
parents: 2215
diff changeset
  2227
     */
6bdf2adfe9f5 defaultPrintFormat
Claus Gittinger <cg@exept.de>
parents: 2215
diff changeset
  2228
    fmtBuffer[0] = '%';
6bdf2adfe9f5 defaultPrintFormat
Claus Gittinger <cg@exept.de>
parents: 2215
diff changeset
  2229
    strncpy(fmtBuffer+1, fmt, 10);
6bdf2adfe9f5 defaultPrintFormat
Claus Gittinger <cg@exept.de>
parents: 2215
diff changeset
  2230
#ifdef SYSV
6bdf2adfe9f5 defaultPrintFormat
Claus Gittinger <cg@exept.de>
parents: 2215
diff changeset
  2231
    strcat(fmtBuffer, "lg");
6bdf2adfe9f5 defaultPrintFormat
Claus Gittinger <cg@exept.de>
parents: 2215
diff changeset
  2232
#else
6bdf2adfe9f5 defaultPrintFormat
Claus Gittinger <cg@exept.de>
parents: 2215
diff changeset
  2233
    strcat(fmtBuffer, "G");
6bdf2adfe9f5 defaultPrintFormat
Claus Gittinger <cg@exept.de>
parents: 2215
diff changeset
  2234
#endif
314
7581a5c57224 *** empty log message ***
claus
parents: 305
diff changeset
  2235
8417
dcba76518224 Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 8302
diff changeset
  2236
    __BEGIN_PROTECT_REGISTERS__
dcba76518224 Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 8302
diff changeset
  2237
    len = snprintf(buffer, sizeof(buffer), fmtBuffer, __floatVal(self));
dcba76518224 Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 8302
diff changeset
  2238
    __END_PROTECT_REGISTERS__
dcba76518224 Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 8302
diff changeset
  2239
dcba76518224 Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 8302
diff changeset
  2240
    if (len >= 0 && len < sizeof(buffer)-3) {
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2241
	/*
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2242
	 * kludge to make integral float f prints as "f.0" (not as "f" as printf does)
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2243
	 * (i.e. look if string contains '.' or 'e' and append '.0' if not)
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2244
	 */
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2245
	for (cp = buffer; *cp; cp++) {
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2246
	    if ((*cp == '.') || (*cp == ',') || (*cp == 'E') || (*cp == 'e')) break;
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2247
	}
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2248
	if (!*cp && (cp[-1] >= '0') && (cp[-1] <= '9')) {
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2249
	    if (__isCharacter(@global(DecimalPointCharacterForPrinting))) {
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2250
		*cp++ = __intVal(__characterVal(@global(DecimalPointCharacterForPrinting)));
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2251
	    } else {
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2252
		*cp++ = '.';
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2253
	    }
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2254
	    *cp++ = '0';
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2255
	    *cp = '\0';
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2256
	} else {
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2257
	    if (cp && ((*cp == '.') || (*cp == ','))) {
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2258
		if (__isCharacter(@global(DecimalPointCharacterForPrinting))) {
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2259
		    *cp = __intVal(__characterVal(@global(DecimalPointCharacterForPrinting)));
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2260
		}
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2261
	    }
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2262
	}
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2263
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2264
	s = __MKSTRING(buffer);
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2265
	if (s != nil) {
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2266
	    RETURN (s);
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2267
	}
314
7581a5c57224 *** empty log message ***
claus
parents: 305
diff changeset
  2268
    }
7581a5c57224 *** empty log message ***
claus
parents: 305
diff changeset
  2269
%}.
7581a5c57224 *** empty log message ***
claus
parents: 305
diff changeset
  2270
    "
7581a5c57224 *** empty log message ***
claus
parents: 305
diff changeset
  2271
     memory allocation (for the new string) failed.
7581a5c57224 *** empty log message ***
claus
parents: 305
diff changeset
  2272
     When we arrive here, there was no memory, even after a garbage collect.
7581a5c57224 *** empty log message ***
claus
parents: 305
diff changeset
  2273
     This means, that the VM wanted to get some more memory from the
7581a5c57224 *** empty log message ***
claus
parents: 305
diff changeset
  2274
     OS, which was not kind enough to give it.
7581a5c57224 *** empty log message ***
claus
parents: 305
diff changeset
  2275
     Bad luck - you should increase the swap space on your machine.
7581a5c57224 *** empty log message ***
claus
parents: 305
diff changeset
  2276
    "
20706
009b8269bd08 we have class based exceptions - use them
Claus Gittinger <cg@exept.de>
parents: 20415
diff changeset
  2277
    ^ AllocationFailure raise.
314
7581a5c57224 *** empty log message ***
claus
parents: 305
diff changeset
  2278
3146
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  2279
    "
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2280
	1.0 printString
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2281
	1.234 printString
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2282
	1e10 printString
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2283
	1.2e3 printString
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2284
	1.2e30 printString
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2285
	(1.0 uncheckedDivide:0) printString
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2286
	(0.0 uncheckedDivide:0) printString
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2287
	self pi printString.
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2288
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2289
	DecimalPointCharacter := $,.
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2290
	1.234 printString.
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2291
	1.0 printString.
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2292
	1e10 printString.
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2293
	1.2e3 printString.
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2294
	1.2e30 printString.
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2295
	(1.0 uncheckedDivide:0) printString.
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2296
	(0.0 uncheckedDivide:0) printString.
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2297
	DecimalPointCharacter := $.
3146
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  2298
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2299
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2300
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2301
printfPrintString:formatString
7746
4a4208ef7699 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7724
diff changeset
  2302
    "non-standard: return a printed representation of the receiver
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2303
     as specified by formatString, which is defined by printf.
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2304
31
75f2b9f78be2 *** empty log message ***
claus
parents: 16
diff changeset
  2305
     If you use this, be aware, that specifying doubles differs on
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2306
     systems; on SYSV machines you have to give something like %lf,
13
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
  2307
     while on BSD systems the format string has to be %F.
31
75f2b9f78be2 *** empty log message ***
claus
parents: 16
diff changeset
  2308
     Also, the resulting string may not be longer than 255 bytes -
20415
b4da57dd7252 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20059
diff changeset
  2309
     since that's the (static) size of the buffer.
21909
1d46683f40fc #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21904
diff changeset
  2310
11926
295e8bb99fde changed #printfPrintString:
Claus Gittinger <cg@exept.de>
parents: 11733
diff changeset
  2311
     This method is NONSTANDARD and may be removed without notice.
295e8bb99fde changed #printfPrintString:
Claus Gittinger <cg@exept.de>
parents: 11733
diff changeset
  2312
     WARNNG: this goes directly to the C-printf function and may therefore me inherently unsafe.
295e8bb99fde changed #printfPrintString:
Claus Gittinger <cg@exept.de>
parents: 11733
diff changeset
  2313
     Please use the printf: method, which is safe as it is completely implemented in Smalltalk."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2314
13
62303f84ff5f *** empty log message ***
claus
parents: 5
diff changeset
  2315
%{  /* STACK: 400 */
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2316
    char buffer[256];
314
7581a5c57224 *** empty log message ***
claus
parents: 305
diff changeset
  2317
    OBJ s;
8417
dcba76518224 Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 8302
diff changeset
  2318
    int len;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2319
12478
e8051030cda6 change __isString() to __isStringLike() in primitive code
Stefan Vogel <sv@exept.de>
parents: 12423
diff changeset
  2320
    if (__isStringLike(formatString)) {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2321
	/*
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2322
	 * actually only needed on sparc: since thisContext is
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2323
	 * in a global register, which gets destroyed by printf,
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2324
	 * manually save it here - very stupid ...
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2325
	 */
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2326
	__BEGIN_PROTECT_REGISTERS__
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2327
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2328
	len = snprintf(buffer, sizeof(buffer), __stringVal(formatString), __floatVal(self));
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2329
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2330
	__END_PROTECT_REGISTERS__
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2331
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2332
	if (len < 0) goto fail;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2333
	if (len >= sizeof(buffer)) goto fail;
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2334
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2335
	s = __MKSTRING_L(buffer, len);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2336
	if (s != nil) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2337
	    RETURN (s);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2338
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2339
    }
8417
dcba76518224 Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 8302
diff changeset
  2340
fail: ;
314
7581a5c57224 *** empty log message ***
claus
parents: 305
diff changeset
  2341
%}.
21909
1d46683f40fc #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21904
diff changeset
  2342
    ^ super printfPrintString:formatString
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2343
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  2344
    "
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  2345
     Float pi printfPrintString:'%%lg -> %lg'
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  2346
     Float pi printfPrintString:'%%lf -> %lf'
8417
dcba76518224 Security: use snprintf() instead of sprintf() to avoid overwrites.
Stefan Vogel <sv@exept.de>
parents: 8302
diff changeset
  2347
     Float pi printfPrintString:'%%7.15lg -> %7.15lg'
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  2348
     Float pi printfPrintString:'%%7.5lf -> %7.5lf'
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  2349
     Float pi printfPrintString:'%%G -> %G'
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  2350
     Float pi printfPrintString:'%%F -> %F'
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  2351
     Float pi printfPrintString:'%%7.5G -> %7.5G'
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  2352
     Float pi printfPrintString:'%%7.5F -> %7.5F'
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2353
21952
63418263e52b #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21936
diff changeset
  2354
     Float pi printfPrintString:'%%7.5f -> %7.5f'
63418263e52b #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21936
diff changeset
  2355
     Float pi printfPrintString:'%%100.98f -> %100.98f'
63418263e52b #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21936
diff changeset
  2356
     Float pi printfPrintString:'%%100.6f -> %100.6f'
63418263e52b #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21936
diff changeset
  2357
     Float pi printfPrintString:'%%300.6f -> %300.6f'
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  2358
21952
63418263e52b #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21936
diff changeset
  2359
     Float pi printfPrintString:'%%-100.98f -> %-100.98f'
63418263e52b #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21936
diff changeset
  2360
     Float pi printfPrintString:'%%300.298f -> %300.298f'
63418263e52b #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21936
diff changeset
  2361
     Float pi printfPrintString:'%%-300.298f -> %-300.298f'
63418263e52b #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21936
diff changeset
  2362
63418263e52b #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21936
diff changeset
  2363
     Float pi printfPrintString:'%%100.6f -> <%100.6f>'
63418263e52b #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21936
diff changeset
  2364
     Float pi printfPrintString:'%%300.6f -> <%300.6f>'
63418263e52b #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21936
diff changeset
  2365
63418263e52b #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21936
diff changeset
  2366
     Float pi printfPrintString:'%%100.6f -> <%100.6>'
63418263e52b #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21936
diff changeset
  2367
     Float pi printfPrintString:'%%300.6f -> <%300.6>'
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  2368
    "
21909
1d46683f40fc #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21904
diff changeset
  2369
21952
63418263e52b #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21936
diff changeset
  2370
    "Modified (comment): / 03-07-2017 / 15:11:13 / cg"
8422
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2371
!
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2372
22301
d897877094e8 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22260
diff changeset
  2373
storeOn:aStream
d897877094e8 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22260
diff changeset
  2374
    "append a printed representation of the receiver to
d897877094e8 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22260
diff changeset
  2375
     the argument, aStream.
d897877094e8 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22260
diff changeset
  2376
d897877094e8 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22260
diff changeset
  2377
     I use #storeString instead of #storeOn: as basic store mechanism."
d897877094e8 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22260
diff changeset
  2378
d897877094e8 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22260
diff changeset
  2379
    aStream nextPutAll:self storeString
d897877094e8 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22260
diff changeset
  2380
d897877094e8 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22260
diff changeset
  2381
    "Created: / 10-10-2017 / 14:06:39 / cg"
d897877094e8 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22260
diff changeset
  2382
!
d897877094e8 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22260
diff changeset
  2383
8422
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2384
storeString
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2385
    "return a printed representation of the receiver;
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2386
     all valid digits are printed.
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2387
     LimitedPrecisonReal and its subclasses use #storeString instead of
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2388
     #storeOn: as basic print mechanism."
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2389
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2390
%{  /* NOCONTEXT */
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2391
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2392
    char buffer[64];
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2393
    REGISTER char *cp;
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2394
    OBJ s;
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2395
    int len;
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2396
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2397
    __BEGIN_PROTECT_REGISTERS__
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2398
#ifdef SYSV
16658
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  2399
    len = snprintf(buffer, sizeof(buffer), "%.17lg", __floatVal(self));
8422
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2400
#else
16658
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  2401
    len = snprintf(buffer, sizeof(buffer), "%.17G", __floatVal(self));
8422
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2402
#endif
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2403
    __END_PROTECT_REGISTERS__
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2404
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2405
    if (len >= 0 && len < sizeof(buffer)-3) {
17199
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2406
	/*
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2407
	 * kludge to make integral float f prints as "f.0" (not as "f" as printf does)
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2408
	 * (i.e. look if string contains '.' or 'e' and append '.0' if not)
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2409
	 */
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2410
	for (cp = buffer; *cp; cp++) {
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2411
	    if ((*cp == '.') || (*cp == ',') || (*cp == 'E') || (*cp == 'e')) break;
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2412
	}
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2413
	if (!*cp && (cp[-1] >= '0') && (cp[-1] <= '9')) {
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2414
	    *cp++ = '.';
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2415
	    *cp++ = '0';
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2416
	    *cp = '\0';
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2417
	}
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2418
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2419
	s = __MKSTRING(buffer);
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2420
	if (s != nil) {
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2421
	    RETURN (s);
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2422
	}
8422
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2423
    }
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2424
%}.
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2425
    "
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2426
     memory allocation (for the new string) failed.
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2427
     When we arrive here, there was no memory, even after a garbage collect.
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2428
     This means, that the VM wanted to get some more memory from the
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2429
     OS, which was not kind enough to give it.
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2430
     Bad luck - you should increase the swap space on your machine.
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2431
    "
20706
009b8269bd08 we have class based exceptions - use them
Claus Gittinger <cg@exept.de>
parents: 20415
diff changeset
  2432
    ^ AllocationFailure raise.
8422
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2433
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2434
    "
17199
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2435
	1.0 storeString
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2436
	0.1 storeString
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2437
	((Array new:10 withAll:0.1) inject:0 into:[:v :sumSoFar| sumSoFar + v]) storeString
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2438
	1.234 storeString
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2439
	1e10 storeString
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2440
	1.2e3 storeString
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2441
	1.2e30 storeString
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2442
	Float pi storeString
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2443
	(1.0 uncheckedDivide:0) storeString
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2444
	(0.0 uncheckedDivide:0) storeString
8422
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2445
9124
1bc6bb791bdc decimalPoint control
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
  2446
     notice that the storeString is NOT affected by DecimalPointCharacterForPrinting:
1bc6bb791bdc decimalPoint control
Claus Gittinger <cg@exept.de>
parents: 8984
diff changeset
  2447
17199
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2448
	DecimalPointCharacterForPrinting := $,.
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2449
	1.234 storeString.
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2450
	1.0 storeString.
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2451
	1e10 storeString.
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2452
	1.2e3 storeString.
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2453
	1.2e30 storeString.
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2454
	(1.0 uncheckedDivide:0) storeString.
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2455
	(0.0 uncheckedDivide:0) storeString.
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2456
	DecimalPointCharacterForPrinting := $.
8422
c206b4711b6e Define #storeString to not use DecimalPointCharacter and to
Stefan Vogel <sv@exept.de>
parents: 8417
diff changeset
  2457
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2458
! !
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2459
11926
295e8bb99fde changed #printfPrintString:
Claus Gittinger <cg@exept.de>
parents: 11733
diff changeset
  2460
7258
9ccdbee7d1ad method category rename
Claus Gittinger <cg@exept.de>
parents: 7217
diff changeset
  2461
!Float methodsFor:'private-accessing'!
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2462
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2463
basicAt:index
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2464
    "return an internal byte of the float.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2465
     The value returned here depends on byte order, float representation etc.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2466
     Therefore, this method should be used strictly private.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2467
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2468
     Notice:
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2469
	the need to redefine this method here is due to the
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2470
	inability of many machines to store floats in non-double aligned memory.
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2471
	Therefore, on some machines, the first 4 bytes of a float are left unused,
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2472
	and the actual float is stored at index 5 .. 12.
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2473
	To hide this at one place, this method knows about that, and returns
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2474
	values as if this filler wasnt present."
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2475
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2476
%{  /* NOCONTEXT */
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2477
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2478
    register int indx;
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2479
    unsigned char *cp;
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2480
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2481
    /*
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2482
     * notice the missing test for self being a nonNilObject -
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2483
     * this can be done since basicAt: is defined both in UndefinedObject
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2484
     * and SmallInteger
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2485
     */
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2486
    if (__isSmallInteger(index)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2487
	indx = __intVal(index) - 1;
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2488
	if (((unsigned)(indx)) < sizeof(double)) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2489
	    cp = (unsigned char *)(& (__FloatInstPtr(self)->f_floatvalue));
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2490
	    RETURN ( __mkSmallInteger(cp[indx] & 0xFF) );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2491
	}
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2492
    }
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2493
%}.
7217
554bb9c2ba24 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2494
    ^ self indexNotIntegerOrOutOfBounds:index
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2495
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2496
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2497
basicAt:index put:value
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2498
    "set an internal byte of the float.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2499
     The value to be stored here depends on byte order, float representation etc.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2500
     Therefore, this method should be used strictly private.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2501
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2502
     Notice:
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2503
	the need to redefine this method here is due to the
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2504
	inability of many machines to store floats in non-double aligned memory.
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2505
	Therefore, on some machines, the first 4 bytes of a float are left unused,
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2506
	and the actual float is stored at index 5 .. 12.
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2507
	To hide this at one place, this method knows about that, and returns
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2508
	values as if this filler wasnt present."
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2509
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2510
%{  /* NOCONTEXT */
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2511
    register int indx, val;
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2512
    unsigned char *cp;
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2513
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2514
    /*
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2515
     * notice the missing test for self being a nonNilObject -
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2516
     * this can be done since basicAt: is defined both in UndefinedObject
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2517
     * and SmallInteger
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2518
     */
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2519
    if (__bothSmallInteger(index, value)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2520
	val = __intVal(value);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2521
	if ((val & ~0xFF) == 0 /* i.e. (val >= 0) && (val <= 255) */) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2522
	    indx = __intVal(index) - 1;
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2523
	    if (((unsigned)(indx)) < sizeof(double)) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2524
		cp = (unsigned char *)(& (__FloatInstPtr(self)->f_floatvalue));
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2525
		cp[indx] = val;
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2526
		RETURN ( value );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2527
	    }
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2528
	}
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2529
    }
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2530
%}.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2531
    value isInteger ifFalse:[
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2532
	"
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2533
	 the object to store should be an integer number
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2534
	"
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2535
	^ self elementNotInteger
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2536
    ].
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2537
    (value between:0 and:255) ifFalse:[
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2538
	"
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2539
	 the object to store must be a bytes value
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2540
	"
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2541
	^ self elementBoundsError:value
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2542
    ].
7217
554bb9c2ba24 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7141
diff changeset
  2543
    ^ self indexNotIntegerOrOutOfBounds:index
16658
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  2544
!
4592
f68de0746dab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  2545
f68de0746dab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  2546
basicSize
f68de0746dab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  2547
    "return the size in bytes of the float.
f68de0746dab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  2548
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2549
     Notice:
17199
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2550
	the need to redefine this method here is due to the
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2551
	inability of many machines to store floats in non-double aligned memory.
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2552
	Therefore, on some machines, the first 4 bytes of a float are left unused,
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2553
	and the actual float is stored at index 5 .. 12.
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2554
	To hide this at one place, this method knows about that, and returns
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2555
	values as if this filler wasn't present."
4592
f68de0746dab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  2556
f68de0746dab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  2557
%{  /* NOCONTEXT */
f68de0746dab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  2558
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2559
    RETURN (__mkSmallInteger(sizeof(double)));
4592
f68de0746dab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4590
diff changeset
  2560
%}.
22260
067e256d2340 #BUGFIX by sr
sr
parents: 22200
diff changeset
  2561
!
067e256d2340 #BUGFIX by sr
sr
parents: 22200
diff changeset
  2562
067e256d2340 #BUGFIX by sr
sr
parents: 22200
diff changeset
  2563
byteAt:index
067e256d2340 #BUGFIX by sr
sr
parents: 22200
diff changeset
  2564
    ^ self basicAt:index
067e256d2340 #BUGFIX by sr
sr
parents: 22200
diff changeset
  2565
!
067e256d2340 #BUGFIX by sr
sr
parents: 22200
diff changeset
  2566
067e256d2340 #BUGFIX by sr
sr
parents: 22200
diff changeset
  2567
byteAt:index put:newByte
067e256d2340 #BUGFIX by sr
sr
parents: 22200
diff changeset
  2568
    self shouldNotImplement
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2569
! !
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2570
16658
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  2571
!Float methodsFor:'queries'!
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  2572
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  2573
nextFloat:count
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  2574
    "answer the next float count places after (or before if count is negative) myself"
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  2575
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  2576
%{
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  2577
    union {
17199
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2578
	double d;
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2579
	INT64 i;
16658
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  2580
    } this;
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  2581
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  2582
    if (__isSmallInteger(count)) {
17199
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2583
	this.d = __floatVal(self);
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2584
	if (isfinite(this.d))
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2585
	    this.i += __intVal(count);
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2586
63d9a071e8ff added cbrt
Claus Gittinger <cg@exept.de>
parents: 16669
diff changeset
  2587
	RETURN(__MKFLOAT(this.d));
16658
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  2588
    }
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  2589
%}.
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  2590
    self primitiveFailed:#badArgument
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  2591
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  2592
  "
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  2593
     (1.0 nextFloat:1) storeString
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  2594
     (67329.234 nextFloat:1) storeString
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  2595
     (67329.234 asShortFloat nextFloat:1) storeString
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  2596
     Float NaN nextFloat:100000
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  2597
     Float infinity nextFloat:100000
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  2598
  "
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  2599
! !
1c653a0a7e4d class: Float
Stefan Vogel <sv@exept.de>
parents: 16632
diff changeset
  2600
3896
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2601
!Float methodsFor:'special access'!
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2602
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2603
exponent
21849
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
  2604
    "extract a normalized float's exponent.
3896
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2605
     The returned value depends on the float-representation of
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2606
     the underlying machine and is therefore highly unportable.
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2607
     This is not for general use.
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2608
     This assumes that the mantissa is normalized to
12423
a3c777accbb0 changed: #exponent
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  2609
     0.5 .. 1.0 and the float's value is: mantissa * 2^exp"
3896
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2610
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2611
%{  /* NOCONTEXT */
21849
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
  2612
    double myVal;
3896
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2613
    double frac;
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2614
    int exp;
3896
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2615
21849
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
  2616
    myVal = __floatVal(self);
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
  2617
    // ouch: math libs seem to not care for NaN here;
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
  2618
#if 1
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
  2619
    // should we?
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
  2620
    if (! (isnan(myVal) || isinf(myVal)))
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
  2621
#endif
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
  2622
    {
21868
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
  2623
	frac = frexp(myVal, &exp);
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
  2624
	RETURN (__mkSmallInteger(exp));
21849
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
  2625
    }
3896
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2626
%}.
21849
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
  2627
    ^ super exponent
3896
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2628
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2629
    "
14672
8abd84f0951a setlocale once only in stxmain
Claus Gittinger <cg@exept.de>
parents: 14630
diff changeset
  2630
     1.0 exponent
8abd84f0951a setlocale once only in stxmain
Claus Gittinger <cg@exept.de>
parents: 14630
diff changeset
  2631
     2.0 exponent
8abd84f0951a setlocale once only in stxmain
Claus Gittinger <cg@exept.de>
parents: 14630
diff changeset
  2632
     3.0 exponent
8abd84f0951a setlocale once only in stxmain
Claus Gittinger <cg@exept.de>
parents: 14630
diff changeset
  2633
     4.0 exponent
8abd84f0951a setlocale once only in stxmain
Claus Gittinger <cg@exept.de>
parents: 14630
diff changeset
  2634
     0.5 exponent
8abd84f0951a setlocale once only in stxmain
Claus Gittinger <cg@exept.de>
parents: 14630
diff changeset
  2635
     0.4 exponent
8abd84f0951a setlocale once only in stxmain
Claus Gittinger <cg@exept.de>
parents: 14630
diff changeset
  2636
     0.25 exponent
8abd84f0951a setlocale once only in stxmain
Claus Gittinger <cg@exept.de>
parents: 14630
diff changeset
  2637
     0.2 exponent
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2638
     0.00000011111 exponent
21849
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
  2639
     0.0 exponent
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
  2640
     1e1000 exponent
3896
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2641
    "
21849
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
  2642
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
  2643
    "Modified: / 20-06-2017 / 11:34:43 / cg"
3896
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2644
!
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2645
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2646
mantissa
24152
16af84f4dd1f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23943
diff changeset
  2647
    "extract a normalized float's mantissa.
3896
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2648
     The returned value depends on the float-representation of
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2649
     the underlying machine and is therefore highly unportable.
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2650
     This is not for general use.
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2651
     This assumes that the mantissa is normalized to
24152
16af84f4dd1f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23943
diff changeset
  2652
     0.5 .. 1.0 and the float's value is mantissa * 2^exp"
3896
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2653
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2654
%{  /* NOCONTEXT */
21849
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
  2655
    double myVal;
3896
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2656
    double frac;
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2657
    int exp;
3896
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2658
21849
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
  2659
    myVal = __floatVal(self);
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
  2660
    // ouch: math libs seem to not care for NaN here;
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
  2661
#if 1
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
  2662
    // should we?
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
  2663
    if (! (isnan(myVal) || isinf(myVal)))
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
  2664
#endif
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
  2665
    {
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  2666
	frac = frexp(myVal, &exp);
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  2667
	RETURN (__MKFLOAT(frac));
21868
f568817ef1d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 21859
diff changeset
  2668
    }
3896
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2669
%}.
20009
3ef6f589b6ad #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 19860
diff changeset
  2670
    ^ super mantissa
20706
009b8269bd08 we have class based exceptions - use them
Claus Gittinger <cg@exept.de>
parents: 20415
diff changeset
  2671
3896
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2672
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2673
     1.0 exponent
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2674
     1.0 mantissa
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2675
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2676
     0.25 exponent
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2677
     0.25 mantissa
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2678
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2679
     0.00000011111 exponent
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2680
     0.00000011111 mantissa
21849
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
  2681
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
  2682
     1e1000 mantissa
3896
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2683
    "
21849
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
  2684
a47780970a70 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21835
diff changeset
  2685
    "Modified: / 20-06-2017 / 11:37:13 / cg"
24152
16af84f4dd1f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23943
diff changeset
  2686
    "Modified (comment): / 26-05-2019 / 03:12:55 / Claus Gittinger"
3896
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2687
! !
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  2688
24320
904fbd4fc461 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24302
diff changeset
  2689
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2690
!Float methodsFor:'testing'!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2691
3146
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  2692
isFinite
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2693
    "return true, if the receiver is a finite float
3146
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  2694
     i.e. not NaN and not infinite."
3127
590c7d2bb4b9 fixes isNAN (on linux); added #isInfinite
Claus Gittinger <cg@exept.de>
parents: 3118
diff changeset
  2695
590c7d2bb4b9 fixes isNAN (on linux); added #isInfinite
Claus Gittinger <cg@exept.de>
parents: 3118
diff changeset
  2696
%{  /* NOCONTEXT */
590c7d2bb4b9 fixes isNAN (on linux); added #isInfinite
Claus Gittinger <cg@exept.de>
parents: 3118
diff changeset
  2697
3198
4f930c1c96e7 care for systems which do not define finite() / isnan() - sigh
Claus Gittinger <cg@exept.de>
parents: 3194
diff changeset
  2698
    /*
4f930c1c96e7 care for systems which do not define finite() / isnan() - sigh
Claus Gittinger <cg@exept.de>
parents: 3194
diff changeset
  2699
     * notice: on machines which do not provide
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2700
     * a finite() macro or function (WIN32),
4305
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4296
diff changeset
  2701
     * this may always ret true here ...
3198
4f930c1c96e7 care for systems which do not define finite() / isnan() - sigh
Claus Gittinger <cg@exept.de>
parents: 3194
diff changeset
  2702
     */
17384
36f55cb89897 class: Float
Stefan Vogel <sv@exept.de>
parents: 17226
diff changeset
  2703
    RETURN (isfinite(__floatVal(self)) ? true : false)
3146
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  2704
%}.
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  2705
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  2706
    "
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2707
	1.0 isFinite
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2708
	self NaN isFinite
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2709
	self infinity isFinite
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2710
	(0.0 uncheckedDivide: 0.0) isFinite
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2711
	(1.0 uncheckedDivide: 0.0) isFinite
3146
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  2712
    "
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  2713
!
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  2714
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  2715
isInfinite
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  2716
    "return true, if the receiver is an infinite float (Inf).
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  2717
     These are not created by ST/X float operations (they raise an exception);
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  2718
     however, inline C-code could produce them ...
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  2719
     Redefined here for speed"
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  2720
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  2721
%{  /* NOCONTEXT */
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  2722
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  2723
    double dV = __floatVal(self);
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  2724
3198
4f930c1c96e7 care for systems which do not define finite() / isnan() - sigh
Claus Gittinger <cg@exept.de>
parents: 3194
diff changeset
  2725
    /*
4f930c1c96e7 care for systems which do not define finite() / isnan() - sigh
Claus Gittinger <cg@exept.de>
parents: 3194
diff changeset
  2726
     * notice: on machines which do not provide
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2727
     * finite() & isnan() macros or functions (WIN32),
4305
e71100d13b67 void possible return warning
Claus Gittinger <cg@exept.de>
parents: 4296
diff changeset
  2728
     * this may always ret false here ...
3198
4f930c1c96e7 care for systems which do not define finite() / isnan() - sigh
Claus Gittinger <cg@exept.de>
parents: 3194
diff changeset
  2729
     */
8980
abee9fcb0385 cleanup isfinite() and isnan() - usage (HPUX)
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2730
#if defined(isinf)
3127
590c7d2bb4b9 fixes isNAN (on linux); added #isInfinite
Claus Gittinger <cg@exept.de>
parents: 3118
diff changeset
  2731
    if (isinf(dV)) { RETURN (true); }
3146
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  2732
#else
8980
abee9fcb0385 cleanup isfinite() and isnan() - usage (HPUX)
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  2733
    if (!isfinite(dV) && !isnan(dV)) { RETURN (true); }
3127
590c7d2bb4b9 fixes isNAN (on linux); added #isInfinite
Claus Gittinger <cg@exept.de>
parents: 3118
diff changeset
  2734
#endif
590c7d2bb4b9 fixes isNAN (on linux); added #isInfinite
Claus Gittinger <cg@exept.de>
parents: 3118
diff changeset
  2735
%}.
3146
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  2736
    ^ false
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  2737
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  2738
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2739
	1.0 isInfinite
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2740
	(0.0 uncheckedDivide: 0.0) isInfinite
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2741
	(1.0 uncheckedDivide: 0.0) isInfinite
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2742
	(-1.0 uncheckedDivide: 0.0) isInfinite
3146
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  2743
    "
3127
590c7d2bb4b9 fixes isNAN (on linux); added #isInfinite
Claus Gittinger <cg@exept.de>
parents: 3118
diff changeset
  2744
!
590c7d2bb4b9 fixes isNAN (on linux); added #isInfinite
Claus Gittinger <cg@exept.de>
parents: 3118
diff changeset
  2745
4655
b9405ca0bb4e added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4615
diff changeset
  2746
isLiteral
b9405ca0bb4e added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4615
diff changeset
  2747
    "return true, if the receiver can be used as a literal constant in ST syntax
b9405ca0bb4e added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4615
diff changeset
  2748
     (i.e. can be used in constant arrays)"
b9405ca0bb4e added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4615
diff changeset
  2749
b9405ca0bb4e added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4615
diff changeset
  2750
    ^ true
b9405ca0bb4e added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4615
diff changeset
  2751
b9405ca0bb4e added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4615
diff changeset
  2752
b9405ca0bb4e added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4615
diff changeset
  2753
!
b9405ca0bb4e added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4615
diff changeset
  2754
2387
3aafb49a86ac added #isNaN
Claus Gittinger <cg@exept.de>
parents: 2358
diff changeset
  2755
isNaN
3aafb49a86ac added #isNaN
Claus Gittinger <cg@exept.de>
parents: 2358
diff changeset
  2756
    "return true, if the receiver is an invalid float (NaN - not a number).
3aafb49a86ac added #isNaN
Claus Gittinger <cg@exept.de>
parents: 2358
diff changeset
  2757
     These are not created by ST/X float operations (they raise an exception);
3aafb49a86ac added #isNaN
Claus Gittinger <cg@exept.de>
parents: 2358
diff changeset
  2758
     however, inline C-code could produce them ..."
3aafb49a86ac added #isNaN
Claus Gittinger <cg@exept.de>
parents: 2358
diff changeset
  2759
3aafb49a86ac added #isNaN
Claus Gittinger <cg@exept.de>
parents: 2358
diff changeset
  2760
%{  /* NOCONTEXT */
3aafb49a86ac added #isNaN
Claus Gittinger <cg@exept.de>
parents: 2358
diff changeset
  2761
17384
36f55cb89897 class: Float
Stefan Vogel <sv@exept.de>
parents: 17226
diff changeset
  2762
    RETURN (isnan(__floatVal(self)) ? true : false)
2392
cd44ad5cf015 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2391
diff changeset
  2763
%}.
3139
ca
parents: 3129
diff changeset
  2764
3146
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  2765
    "
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2766
	self NaN isNaN
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2767
	1.0 isNaN
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2768
	(0.0 uncheckedDivide: 0.0) isNaN
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2769
	(1.0 uncheckedDivide: 0.0) isNaN
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2770
	(-1.0 uncheckedDivide: 0.0) isNaN
3146
4e46505d1d59 New #finite, fix #isNaN and #isInfinite.
Stefan Vogel <sv@exept.de>
parents: 3139
diff changeset
  2771
    "
2387
3aafb49a86ac added #isNaN
Claus Gittinger <cg@exept.de>
parents: 2358
diff changeset
  2772
!
3aafb49a86ac added #isNaN
Claus Gittinger <cg@exept.de>
parents: 2358
diff changeset
  2773
6890
8e74eff54c3d added isNegativeZero to test for -0.0
Claus Gittinger <cg@exept.de>
parents: 6674
diff changeset
  2774
isNegativeZero
8e74eff54c3d added isNegativeZero to test for -0.0
Claus Gittinger <cg@exept.de>
parents: 6674
diff changeset
  2775
    "many systems have two float.Pnt zeros"
8e74eff54c3d added isNegativeZero to test for -0.0
Claus Gittinger <cg@exept.de>
parents: 6674
diff changeset
  2776
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2777
%{  /* NOCONTEXT */
17389
2b91cd882904 class: Float
Stefan Vogel <sv@exept.de>
parents: 17384
diff changeset
  2778
17392
76970f24faee class: Float
Stefan Vogel <sv@exept.de>
parents: 17389
diff changeset
  2779
#if defined(__BORLANDC__)
76970f24faee class: Float
Stefan Vogel <sv@exept.de>
parents: 17389
diff changeset
  2780
    union { double d; int i[2]; } __u;
76970f24faee class: Float
Stefan Vogel <sv@exept.de>
parents: 17389
diff changeset
  2781
   __u.d = __floatVal(self);
76970f24faee class: Float
Stefan Vogel <sv@exept.de>
parents: 17389
diff changeset
  2782
    RETURN ( (__u.d == 0.0 && __u.i[1] < 0) ? true : false );
17389
2b91cd882904 class: Float
Stefan Vogel <sv@exept.de>
parents: 17384
diff changeset
  2783
#else
17384
36f55cb89897 class: Float
Stefan Vogel <sv@exept.de>
parents: 17226
diff changeset
  2784
    RETURN ( (__floatVal(self) == 0.0 && signbit(__floatVal(self)) != 0) ? true : false );
17389
2b91cd882904 class: Float
Stefan Vogel <sv@exept.de>
parents: 17384
diff changeset
  2785
#endif
6890
8e74eff54c3d added isNegativeZero to test for -0.0
Claus Gittinger <cg@exept.de>
parents: 6674
diff changeset
  2786
%}.
8e74eff54c3d added isNegativeZero to test for -0.0
Claus Gittinger <cg@exept.de>
parents: 6674
diff changeset
  2787
8e74eff54c3d added isNegativeZero to test for -0.0
Claus Gittinger <cg@exept.de>
parents: 6674
diff changeset
  2788
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2789
     0.0 isNegativeZero
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2790
     -0.0 isNegativeZero
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2791
     -1.0 isNegativeZero
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2792
     1.0 isNegativeZero
6890
8e74eff54c3d added isNegativeZero to test for -0.0
Claus Gittinger <cg@exept.de>
parents: 6674
diff changeset
  2793
    "
8e74eff54c3d added isNegativeZero to test for -0.0
Claus Gittinger <cg@exept.de>
parents: 6674
diff changeset
  2794
!
8e74eff54c3d added isNegativeZero to test for -0.0
Claus Gittinger <cg@exept.de>
parents: 6674
diff changeset
  2795
24328
e16d587ddbd6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24326
diff changeset
  2796
isZero
e16d587ddbd6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24326
diff changeset
  2797
    "return true, if the receiver is zero"
e16d587ddbd6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24326
diff changeset
  2798
e16d587ddbd6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24326
diff changeset
  2799
    ^ self = 0.0
e16d587ddbd6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24326
diff changeset
  2800
e16d587ddbd6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24326
diff changeset
  2801
    "Created: / 10-06-2019 / 21:58:24 / Claus Gittinger"
e16d587ddbd6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24326
diff changeset
  2802
!
e16d587ddbd6 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24326
diff changeset
  2803
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2804
negative
17384
36f55cb89897 class: Float
Stefan Vogel <sv@exept.de>
parents: 17226
diff changeset
  2805
    "return true if the receiver is less than zero.
36f55cb89897 class: Float
Stefan Vogel <sv@exept.de>
parents: 17226
diff changeset
  2806
     -0.0 is positive for now."
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2807
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2808
%{  /* NOCONTEXT */
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2809
17384
36f55cb89897 class: Float
Stefan Vogel <sv@exept.de>
parents: 17226
diff changeset
  2810
    RETURN ( __floatVal(self) < 0.0  ? true : false );
36f55cb89897 class: Float
Stefan Vogel <sv@exept.de>
parents: 17226
diff changeset
  2811
    // RETURN ( signbit(__floatVal(self)) != 0  ? true : false );
5411
c396c6640868 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5357
diff changeset
  2812
%}.
17384
36f55cb89897 class: Float
Stefan Vogel <sv@exept.de>
parents: 17226
diff changeset
  2813
36f55cb89897 class: Float
Stefan Vogel <sv@exept.de>
parents: 17226
diff changeset
  2814
    "
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2815
	0.0 negative
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2816
	-0.0 negative
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2817
	1.0 negative
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2818
	-1.0 negative
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2819
	(1.0 uncheckedDivide: 0.0) negative
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2820
	(-1.0 uncheckedDivide: 0.0) negative
17384
36f55cb89897 class: Float
Stefan Vogel <sv@exept.de>
parents: 17226
diff changeset
  2821
    "
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2822
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2823
5357
39860dd8b0f5 query for number of bits
ps
parents: 5317
diff changeset
  2824
numberOfBits
39860dd8b0f5 query for number of bits
ps
parents: 5317
diff changeset
  2825
    "return the size (in bits) of the real;
39860dd8b0f5 query for number of bits
ps
parents: 5317
diff changeset
  2826
     typically, 64 is returned here,
39860dd8b0f5 query for number of bits
ps
parents: 5317
diff changeset
  2827
     but who knows ..."
39860dd8b0f5 query for number of bits
ps
parents: 5317
diff changeset
  2828
39860dd8b0f5 query for number of bits
ps
parents: 5317
diff changeset
  2829
%{  /* NOCONTEXT */
39860dd8b0f5 query for number of bits
ps
parents: 5317
diff changeset
  2830
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  2831
    RETURN (__mkSmallInteger (sizeof(double) * 8));
5357
39860dd8b0f5 query for number of bits
ps
parents: 5317
diff changeset
  2832
%}
39860dd8b0f5 query for number of bits
ps
parents: 5317
diff changeset
  2833
39860dd8b0f5 query for number of bits
ps
parents: 5317
diff changeset
  2834
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2835
     1.2 numberOfBits
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2836
     1.2 asShortFloat numberOfBits
5357
39860dd8b0f5 query for number of bits
ps
parents: 5317
diff changeset
  2837
    "
39860dd8b0f5 query for number of bits
ps
parents: 5317
diff changeset
  2838
!
39860dd8b0f5 query for number of bits
ps
parents: 5317
diff changeset
  2839
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2840
positive
18857
7165f748d240 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18838
diff changeset
  2841
    "return true if the receiver is greater or equal to zero (not negative).
17384
36f55cb89897 class: Float
Stefan Vogel <sv@exept.de>
parents: 17226
diff changeset
  2842
     0.0 and -0.0 are positive for now."
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2843
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2844
%{  /* NOCONTEXT */
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2845
17384
36f55cb89897 class: Float
Stefan Vogel <sv@exept.de>
parents: 17226
diff changeset
  2846
    RETURN ( __floatVal(self) >= 0.0 ? true : false );
36f55cb89897 class: Float
Stefan Vogel <sv@exept.de>
parents: 17226
diff changeset
  2847
    // RETURN ( signbit(__floatVal(self)) == 0 ? true : false  );
36f55cb89897 class: Float
Stefan Vogel <sv@exept.de>
parents: 17226
diff changeset
  2848
%}.
36f55cb89897 class: Float
Stefan Vogel <sv@exept.de>
parents: 17226
diff changeset
  2849
36f55cb89897 class: Float
Stefan Vogel <sv@exept.de>
parents: 17226
diff changeset
  2850
    "
19570
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
  2851
	0.0 positive
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
  2852
	-0.0 positive
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
  2853
	1.0 positive
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
  2854
	-1.0 positive
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
  2855
	(1.0 uncheckedDivide: 0.0) positive
017c53457288 lazy computation of epsilon
Claus Gittinger <cg@exept.de>
parents: 19358
diff changeset
  2856
	(-1.0 uncheckedDivide: 0.0) positive
17384
36f55cb89897 class: Float
Stefan Vogel <sv@exept.de>
parents: 17226
diff changeset
  2857
    "
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  2858
!
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  2859
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  2860
strictlyPositive
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  2861
    "return true if the receiver is greater than zero"
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  2862
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  2863
%{  /* NOCONTEXT */
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  2864
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  2865
    RETURN ( (__floatVal(self) > 0.0) ? true : false );
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  2866
%}
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2867
! !
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  2868
4655
b9405ca0bb4e added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4615
diff changeset
  2869
!Float methodsFor:'tracing'!
b9405ca0bb4e added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4615
diff changeset
  2870
4682
4158042a9c8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4655
diff changeset
  2871
traceInto:aRequestor level:level from:referrer
4655
b9405ca0bb4e added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4615
diff changeset
  2872
    "double dispatch into tracer, passing my type implicitely in the selector"
b9405ca0bb4e added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4615
diff changeset
  2873
4682
4158042a9c8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4655
diff changeset
  2874
    ^ aRequestor traceFloat:self level:level from:referrer
4655
b9405ca0bb4e added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4615
diff changeset
  2875
b9405ca0bb4e added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4615
diff changeset
  2876
b9405ca0bb4e added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4615
diff changeset
  2877
! !
b9405ca0bb4e added #hasSharedInstances & tracing support
Claus Gittinger <cg@exept.de>
parents: 4615
diff changeset
  2878
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2879
!Float methodsFor:'trigonometric'!
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2880
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2881
arcCos
7391
55ca5a24162a added more math functions (hyperbolic)
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2882
    "return the arccosine of the receiver (as radians).
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2883
     Raises an exception, if the receiver is not in -1..1"
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2884
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2885
%{  /* NOCONTEXT */
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2886
#ifdef __SCHTEAM__
18299
74723837b0ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 18296
diff changeset
  2887
    return context._RETURN( self.acos() );
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2888
#else
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2889
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2890
    double val, rslt;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2891
    OBJ newFloat;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2892
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2893
    val = __floatVal(self);
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2894
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19616
diff changeset
  2895
# ifdef __win32__ /* to suppress the warnBox opened by win32 */
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2896
    if ((val >= -1.0) && (val <= 1.0))
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2897
# endif
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2898
    {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2899
	__threadErrno = 0;
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2900
	rslt = acos(val);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2901
	if (! isnan(rslt))  /* Currently all our systems support isnan() */
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2902
	{
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2903
	    if (__threadErrno == 0) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2904
		__qMKFLOAT(newFloat, rslt);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2905
		RETURN ( newFloat );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2906
	    }
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2907
	}
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2908
    }
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2909
#endif
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2910
%}.
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2911
    ^ self class
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2912
	raise:#domainErrorSignal
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2913
	receiver:self
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2914
	selector:#arcCos
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2915
	arguments:#()
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2916
	errorString:'bad receiver in arcCos'
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2917
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2918
    "
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2919
     -10 arcCos
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2920
     1 arcCos
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2921
    "
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2922
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2923
    "Modified: / 16.11.2001 / 14:14:13 / cg"
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2924
!
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2925
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2926
arcCosh
7391
55ca5a24162a added more math functions (hyperbolic)
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2927
    "return the hyperbolic arccosine of the receiver."
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2928
7410
ba285982489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7409
diff changeset
  2929
    |useFallBack|
ba285982489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7409
diff changeset
  2930
ba285982489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7409
diff changeset
  2931
%{
ba285982489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7409
diff changeset
  2932
#ifdef NO_ACOSH
ba285982489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7409
diff changeset
  2933
    useFallBack = true;
ba285982489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7409
diff changeset
  2934
#else
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2935
    double val, rslt;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2936
    OBJ newFloat;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2937
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2938
    val = __floatVal(self);
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2939
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19616
diff changeset
  2940
# ifdef __win32__ /* to suppress the warnBox opened by win32 */
7391
55ca5a24162a added more math functions (hyperbolic)
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  2941
    if (val >= 1.0)
7410
ba285982489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7409
diff changeset
  2942
# endif
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2943
    {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2944
	__threadErrno = 0;
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2945
	rslt = acosh(val);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2946
	if (! isnan(rslt))  /* Currently all our systems support isnan() */
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2947
	{
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2948
	    if (__threadErrno == 0) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2949
		__qMKFLOAT(newFloat, rslt);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2950
		RETURN ( newFloat );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2951
	    }
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2952
	}
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2953
    }
7410
ba285982489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7409
diff changeset
  2954
#endif
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2955
%}.
7410
ba285982489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7409
diff changeset
  2956
    useFallBack notNil ifTrue:[
ba285982489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7409
diff changeset
  2957
	^ super arcCosh
ba285982489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7409
diff changeset
  2958
    ].
ba285982489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7409
diff changeset
  2959
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2960
    ^ self class
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2961
	raise:#domainErrorSignal
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2962
	receiver:self
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2963
	selector:#arcCosh
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2964
	arguments:#()
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2965
	errorString:'bad receiver in arcCosh'
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2966
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2967
    "
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2968
     -10.0 arcCosh
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2969
     1.0 arcCosh
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2970
    "
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2971
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2972
    "Modified: / 16.11.2001 / 14:14:13 / cg"
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2973
!
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2974
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2975
arcSin
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2976
    "return the arcsine of myself (I am interpreted as radians).
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2977
     Raises an exception, if the receiver is not in -1..1"
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2978
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2979
%{  /* NOCONTEXT */
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2980
#ifdef __SCHTEAM__
18299
74723837b0ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 18296
diff changeset
  2981
    return context._RETURN( self.asin() );
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2982
#else
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2983
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2984
    double val, rslt;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2985
    OBJ newFloat;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2986
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2987
    val = __floatVal(self);
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2988
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19616
diff changeset
  2989
# ifdef __win32__ /* to suppress the warnBox opened by win32 */
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2990
    if ((val >= -1.0) && (val <= 1.0))
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  2991
# endif
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  2992
    {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2993
	__threadErrno = 0;
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2994
	rslt = asin(val);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2995
	if (! isnan(rslt))  /* Currently all our systems support isnan() */
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2996
	{
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2997
	    if (__threadErrno == 0) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2998
		__qMKFLOAT(newFloat, rslt);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  2999
		RETURN ( newFloat );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3000
	    }
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3001
	}
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3002
    }
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3003
#endif
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3004
%}.
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3005
    ^ self class
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3006
	raise:#domainErrorSignal
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3007
	receiver:self
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3008
	selector:#arcSin
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3009
	arguments:#()
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3010
	errorString:'bad receiver in arcSin'
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3011
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3012
    "
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3013
     -10 arcSin
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3014
     1 arcSin
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3015
    "
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3016
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3017
    "Modified: / 16.11.2001 / 14:14:18 / cg"
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3018
!
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3019
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3020
arcSinh
7391
55ca5a24162a added more math functions (hyperbolic)
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3021
    "return the hyperbolic arcsine of the receiver."
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3022
7410
ba285982489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7409
diff changeset
  3023
    |useFallBack|
ba285982489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7409
diff changeset
  3024
%{
ba285982489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7409
diff changeset
  3025
#ifdef NO_ASINH
ba285982489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7409
diff changeset
  3026
    useFallBack = true;
ba285982489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7409
diff changeset
  3027
#else
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3028
    double val, rslt;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3029
    OBJ newFloat;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3030
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3031
    val = __floatVal(self);
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3032
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19616
diff changeset
  3033
# ifdef __win32__ /* to suppress the warnBox opened by win32 */
7391
55ca5a24162a added more math functions (hyperbolic)
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3034
    if (val >= 1.0)
7410
ba285982489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7409
diff changeset
  3035
# endif
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3036
    {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3037
	__threadErrno = 0;
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3038
	rslt = asinh(val);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3039
	if (! isnan(rslt))  /* Currently all our systems support isnan() */
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3040
	{
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3041
	    if (__threadErrno == 0) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3042
		__qMKFLOAT(newFloat, rslt);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3043
		RETURN ( newFloat );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3044
	    }
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3045
	}
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3046
    }
7410
ba285982489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7409
diff changeset
  3047
#endif
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3048
%}.
7410
ba285982489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7409
diff changeset
  3049
    useFallBack notNil ifTrue:[
ba285982489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7409
diff changeset
  3050
	^ super arcSinh
ba285982489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7409
diff changeset
  3051
    ].
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3052
    ^ self class
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3053
	raise:#domainErrorSignal
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3054
	receiver:self
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3055
	selector:#arcSinh
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3056
	arguments:#()
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3057
	errorString:'bad receiver in arcSinh'
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3058
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3059
    "
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3060
     -10.0 arcSinh
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3061
     1.0 arcSinh
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3062
    "
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3063
!
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3064
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3065
arcTan
7391
55ca5a24162a added more math functions (hyperbolic)
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3066
    "return the arctangent of the receiver (as radians)"
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3067
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3068
%{  /* NOCONTEXT */
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3069
#ifdef __SCHTEAM__
18299
74723837b0ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 18296
diff changeset
  3070
    return context._RETURN( self.atan() );
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3071
#else
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3072
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3073
    double rslt;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3074
    OBJ newFloat;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3075
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3076
    __threadErrno = 0;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3077
    rslt = atan(__floatVal(self));
7393
23344038fa0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7391
diff changeset
  3078
    if (! isnan(rslt))  /* Currently all our systems support isnan() */
23344038fa0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7391
diff changeset
  3079
    {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3080
	if (__threadErrno == 0) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3081
	    __qMKFLOAT(newFloat, rslt);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3082
	    RETURN ( newFloat );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3083
	}
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3084
    }
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3085
#endif
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3086
%}.
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3087
    ^ self class
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3088
	raise:#domainErrorSignal
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3089
	receiver:self
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3090
	selector:#arcTan
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3091
	arguments:#()
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3092
	errorString:'bad receiver in arcTan'
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3093
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3094
    "Modified: / 16.11.2001 / 14:14:22 / cg"
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3095
!
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3096
11487
9195c17baa9e +arcTan2:
Claus Gittinger <cg@exept.de>
parents: 10604
diff changeset
  3097
arcTan2:x
9195c17baa9e +arcTan2:
Claus Gittinger <cg@exept.de>
parents: 10604
diff changeset
  3098
    "return the atan2(self,x)"
9195c17baa9e +arcTan2:
Claus Gittinger <cg@exept.de>
parents: 10604
diff changeset
  3099
9195c17baa9e +arcTan2:
Claus Gittinger <cg@exept.de>
parents: 10604
diff changeset
  3100
%{  /* NOCONTEXT */
9195c17baa9e +arcTan2:
Claus Gittinger <cg@exept.de>
parents: 10604
diff changeset
  3101
9195c17baa9e +arcTan2:
Claus Gittinger <cg@exept.de>
parents: 10604
diff changeset
  3102
    double rslt;
9195c17baa9e +arcTan2:
Claus Gittinger <cg@exept.de>
parents: 10604
diff changeset
  3103
    OBJ newFloat;
9195c17baa9e +arcTan2:
Claus Gittinger <cg@exept.de>
parents: 10604
diff changeset
  3104
9195c17baa9e +arcTan2:
Claus Gittinger <cg@exept.de>
parents: 10604
diff changeset
  3105
    if (__isFloat(x)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3106
	__threadErrno = 0;
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3107
	rslt = atan2(__floatVal(self),__floatVal(x));
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3108
	if (! isnan(rslt))  /* Currently all our systems support isnan() */
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3109
	{
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3110
	    if (__threadErrno == 0) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3111
		__qMKFLOAT(newFloat, rslt);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3112
		RETURN ( newFloat );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3113
	    }
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3114
	}
11487
9195c17baa9e +arcTan2:
Claus Gittinger <cg@exept.de>
parents: 10604
diff changeset
  3115
    }
9195c17baa9e +arcTan2:
Claus Gittinger <cg@exept.de>
parents: 10604
diff changeset
  3116
%}.
9195c17baa9e +arcTan2:
Claus Gittinger <cg@exept.de>
parents: 10604
diff changeset
  3117
    x isFloat ifFalse:[
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3118
	^ self arcTan2:(x asFloat).
11487
9195c17baa9e +arcTan2:
Claus Gittinger <cg@exept.de>
parents: 10604
diff changeset
  3119
    ].
9195c17baa9e +arcTan2:
Claus Gittinger <cg@exept.de>
parents: 10604
diff changeset
  3120
9195c17baa9e +arcTan2:
Claus Gittinger <cg@exept.de>
parents: 10604
diff changeset
  3121
    ^ self class
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3122
	raise:#domainErrorSignal
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3123
	receiver:self
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3124
	selector:#arcTan2:
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3125
	arguments:(Array with:x)
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3126
	errorString:'bad receiver in arcTan2:'
11487
9195c17baa9e +arcTan2:
Claus Gittinger <cg@exept.de>
parents: 10604
diff changeset
  3127
!
9195c17baa9e +arcTan2:
Claus Gittinger <cg@exept.de>
parents: 10604
diff changeset
  3128
10604
2a9b9a20067a more constants
Claus Gittinger <cg@exept.de>
parents: 9651
diff changeset
  3129
arcTan: denominator
22728
971b3721fa66 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22725
diff changeset
  3130
    "Evaluate the four quadrant arc tangent of the argument denominator (x) and the receiver (y)."
971b3721fa66 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22725
diff changeset
  3131
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3132
    (self = 0.0) ifTrue: [
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  3133
	(denominator > 0.0)
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  3134
	    ifTrue: [ ^ 0 ]
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  3135
	    ifFalse: [ ^ Pi ]
10604
2a9b9a20067a more constants
Claus Gittinger <cg@exept.de>
parents: 9651
diff changeset
  3136
    ].
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3137
    (denominator = 0.0) ifTrue: [
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  3138
	(self > 0.0)
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  3139
	    ifTrue: [ ^ Halfpi ]
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  3140
	    ifFalse: [ ^ HalfpiNegative ]
10604
2a9b9a20067a more constants
Claus Gittinger <cg@exept.de>
parents: 9651
diff changeset
  3141
    ].
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3142
    (denominator > 0)
24249
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  3143
	ifTrue: [ ^ (self / denominator) arcTan ]
17326e1df17f raise exception on out-of-range in asShortFloat / asFloat
Claus Gittinger <cg@exept.de>
parents: 24230
diff changeset
  3144
	ifFalse: [ ^ ((self / denominator) arcTan) + Pi ]
10604
2a9b9a20067a more constants
Claus Gittinger <cg@exept.de>
parents: 9651
diff changeset
  3145
2a9b9a20067a more constants
Claus Gittinger <cg@exept.de>
parents: 9651
diff changeset
  3146
    "Created: / 07-06-2007 / 21:10:32 / cg"
2a9b9a20067a more constants
Claus Gittinger <cg@exept.de>
parents: 9651
diff changeset
  3147
    "Modified: / 11-06-2007 / 12:58:34 / cg"
2a9b9a20067a more constants
Claus Gittinger <cg@exept.de>
parents: 9651
diff changeset
  3148
!
2a9b9a20067a more constants
Claus Gittinger <cg@exept.de>
parents: 9651
diff changeset
  3149
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3150
arcTanh
7391
55ca5a24162a added more math functions (hyperbolic)
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3151
    "return the hyperbolic arctangent of the receiver."
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3152
7410
ba285982489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7409
diff changeset
  3153
    |useFallBack|
ba285982489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7409
diff changeset
  3154
%{
ba285982489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7409
diff changeset
  3155
#ifdef NO_ATANH
ba285982489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7409
diff changeset
  3156
    useFallBack = true;
ba285982489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7409
diff changeset
  3157
#else
7391
55ca5a24162a added more math functions (hyperbolic)
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3158
    double val, rslt;
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3159
    OBJ newFloat;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3160
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3161
    __threadErrno = 0;
7391
55ca5a24162a added more math functions (hyperbolic)
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3162
    val = __floatVal(self);
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19616
diff changeset
  3163
# ifdef __win32__ /* to suppress the warnBox opened by win32 */
7391
55ca5a24162a added more math functions (hyperbolic)
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3164
    if ((val >= -1.0) && (val <= 1.0))
55ca5a24162a added more math functions (hyperbolic)
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3165
# endif
55ca5a24162a added more math functions (hyperbolic)
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3166
    {
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  3167
	rslt = atanh(val);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  3168
	if (! isnan(rslt))  /* Currently all our systems support isnan() */
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19616
diff changeset
  3169
# ifdef __osx__
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  3170
	if (! isinf(rslt))
19860
324edacff5cc unified cpu and os defines;
Claus Gittinger <cg@exept.de>
parents: 19616
diff changeset
  3171
# endif
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  3172
	{
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  3173
	    if (__threadErrno == 0) {
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  3174
		__qMKFLOAT(newFloat, rslt);
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  3175
		RETURN ( newFloat );
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  3176
	    }
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  3177
	}
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3178
    }
7410
ba285982489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7409
diff changeset
  3179
#endif
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3180
%}.
7410
ba285982489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7409
diff changeset
  3181
    useFallBack notNil ifTrue:[
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  3182
	^ super arcTanh
7410
ba285982489a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7409
diff changeset
  3183
    ].
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3184
    ^ self class
22578
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  3185
	raise:#domainErrorSignal
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  3186
	receiver:self
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  3187
	selector:#arcTanh
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  3188
	arguments:#()
c31e7ac76ff5 os defs; osx fix
Claus Gittinger <cg@exept.de>
parents: 22560
diff changeset
  3189
	errorString:'bad receiver in arcTanh'
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3190
!
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3191
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3192
cos
7391
55ca5a24162a added more math functions (hyperbolic)
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3193
    "return the cosine of the receiver (interpreted as radians)"
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3194
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3195
%{  /* NOCONTEXT */
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3196
#ifdef __SCHTEAM__
18299
74723837b0ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 18296
diff changeset
  3197
    return context._RETURN( self.cos() );
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3198
#else
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3199
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3200
    double rslt;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3201
    OBJ newFloat;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3202
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3203
    __threadErrno = 0;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3204
    rslt = cos(__floatVal(self));
7393
23344038fa0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7391
diff changeset
  3205
    if (! isnan(rslt))  /* Currently all our systems support isnan() */
23344038fa0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7391
diff changeset
  3206
    {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3207
	if (__threadErrno == 0) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3208
	    __qMKFLOAT(newFloat, rslt);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3209
	    RETURN ( newFloat );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3210
	}
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3211
    }
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3212
#endif
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3213
%}.
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3214
    ^ self class
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3215
	raise:#domainErrorSignal
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3216
	receiver:self
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3217
	selector:#cos
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3218
	arguments:#()
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3219
	errorString:'bad receiver in cos'
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3220
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3221
    "Modified: / 16.11.2001 / 14:14:26 / cg"
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3222
!
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3223
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3224
cosh
7391
55ca5a24162a added more math functions (hyperbolic)
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3225
    "return the hyperbolic cosine of the receiver"
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3226
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3227
%{  /* NOCONTEXT */
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3228
#ifdef __SCHTEAM__
18299
74723837b0ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 18296
diff changeset
  3229
    return context._RETURN( self.cosh() );
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3230
#else
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3231
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3232
    double rslt;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3233
    OBJ newFloat;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3234
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3235
    __threadErrno = 0;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3236
    rslt = cosh(__floatVal(self));
7393
23344038fa0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7391
diff changeset
  3237
    if (! isnan(rslt))  /* Currently all our systems support isnan() */
23344038fa0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7391
diff changeset
  3238
    {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3239
	if (__threadErrno == 0) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3240
	    __qMKFLOAT(newFloat, rslt);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3241
	    RETURN ( newFloat );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3242
	}
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3243
    }
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3244
#endif
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3245
%}.
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3246
    ^ self class
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3247
	raise:#domainErrorSignal
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3248
	receiver:self
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3249
	selector:#cosh
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3250
	arguments:#()
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3251
	errorString:'bad receiver in cosh'
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3252
!
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3253
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3254
sin
7391
55ca5a24162a added more math functions (hyperbolic)
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3255
    "return the sine of the receiver (interpreted as radians)"
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3256
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3257
%{  /* NOCONTEXT */
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3258
#ifdef __SCHTEAM__
18299
74723837b0ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 18296
diff changeset
  3259
    return context._RETURN( self.sin() );
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3260
#else
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3261
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3262
    double rslt;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3263
    OBJ newFloat;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3264
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3265
    __threadErrno = 0;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3266
    rslt = sin(__floatVal(self));
7393
23344038fa0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7391
diff changeset
  3267
    if (! isnan(rslt))  /* Currently all our systems support isnan() */
23344038fa0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7391
diff changeset
  3268
    {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3269
	if (__threadErrno == 0) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3270
	    __qMKFLOAT(newFloat, rslt);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3271
	    RETURN ( newFloat );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3272
	}
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3273
    }
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3274
#endif
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3275
%}.
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3276
    ^ self class
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3277
	raise:#domainErrorSignal
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3278
	receiver:self
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3279
	selector:#sin
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3280
	arguments:#()
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3281
	errorString:'bad receiver in sin'
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3282
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3283
    "Modified: / 16.11.2001 / 14:14:37 / cg"
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3284
!
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3285
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3286
sinh
7391
55ca5a24162a added more math functions (hyperbolic)
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3287
    "return the hyperbolic sine of the receiver"
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3288
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3289
%{  /* NOCONTEXT */
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3290
#ifdef __SCHTEAM__
18299
74723837b0ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 18296
diff changeset
  3291
    return context._RETURN( self.sinh() );
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3292
#else
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3293
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3294
    double rslt;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3295
    OBJ newFloat;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3296
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3297
    __threadErrno = 0;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3298
    rslt = sinh(__floatVal(self));
7393
23344038fa0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7391
diff changeset
  3299
    if (! isnan(rslt))  /* Currently all our systems support isnan() */
23344038fa0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7391
diff changeset
  3300
    {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3301
	if (__threadErrno == 0) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3302
	    __qMKFLOAT(newFloat, rslt);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3303
	    RETURN ( newFloat );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3304
	}
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3305
    }
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3306
#endif
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3307
%}.
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3308
    ^ self class
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3309
	raise:#domainErrorSignal
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3310
	receiver:self
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3311
	selector:#sinh
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3312
	arguments:#()
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3313
	errorString:'bad receiver in sinh'
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3314
!
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3315
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3316
tan
7391
55ca5a24162a added more math functions (hyperbolic)
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3317
    "return the tangens of the receiver (interpreted as radians)"
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3318
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3319
%{  /* NOCONTEXT */
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3320
#ifdef __SCHTEAM__
18299
74723837b0ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 18296
diff changeset
  3321
    return context._RETURN( self.tan() );
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3322
#else
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3323
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3324
    double rslt;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3325
    OBJ newFloat;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3326
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3327
    __threadErrno = 0;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3328
    rslt = tan(__floatVal(self));
7393
23344038fa0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7391
diff changeset
  3329
    if (! isnan(rslt))  /* Currently all our systems support isnan() */
23344038fa0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7391
diff changeset
  3330
    {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3331
	if (__threadErrno == 0) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3332
	    __qMKFLOAT(newFloat, rslt);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3333
	    RETURN ( newFloat );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3334
	}
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3335
    }
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3336
#endif
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3337
%}.
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3338
    ^ self class
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3339
	raise:#domainErrorSignal
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3340
	receiver:self
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3341
	selector:#tan
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3342
	arguments:#()
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3343
	errorString:'bad receiver in tan'
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3344
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3345
    "Modified: / 16.11.2001 / 14:14:49 / cg"
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3346
!
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3347
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3348
tanh
7391
55ca5a24162a added more math functions (hyperbolic)
Claus Gittinger <cg@exept.de>
parents: 7385
diff changeset
  3349
    "return the hyperbolic tangens of the receiver"
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3350
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3351
%{  /* NOCONTEXT */
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3352
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3353
    double rslt;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3354
    OBJ newFloat;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3355
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3356
    __threadErrno = 0;
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3357
    rslt = tanh(__floatVal(self));
7393
23344038fa0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7391
diff changeset
  3358
    if (! isnan(rslt))  /* Currently all our systems support isnan() */
23344038fa0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7391
diff changeset
  3359
    {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3360
	if (__threadErrno == 0) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3361
	    __qMKFLOAT(newFloat, rslt);
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3362
	    RETURN ( newFloat );
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3363
	}
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3364
    }
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3365
%}.
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3366
    ^ self class
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3367
	raise:#domainErrorSignal
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3368
	receiver:self
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3369
	selector:#tanh
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3370
	arguments:#()
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3371
	errorString:'bad receiver in tanh'
7385
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3372
! !
852e84340d2b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7381
diff changeset
  3373
5552
31b5cc144476 category changes
Claus Gittinger <cg@exept.de>
parents: 5436
diff changeset
  3374
!Float methodsFor:'truncation & rounding'!
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3375
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3376
ceiling
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3377
    "return the smallest integer which is greater or equal to the receiver."
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3378
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3379
    |val|
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3380
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3381
%{
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3382
#ifdef __SCHTEAM__
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3383
    ERROR("unimplemented");
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3384
#else
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3385
    double dVal;
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3386
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  3387
    dVal = ceil(__floatVal(self));
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3388
    /*
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3389
     * ST-80 (and X3J20) returns integer.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3390
     */
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3391
    if ((dVal >= (double)_MIN_INT) && (dVal <= (double)_MAX_INT)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3392
	RETURN ( __mkSmallInteger( (INT) dVal ) );
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3393
    }
3163
212a539ee379 added #readFrom: to avoid returning an int.
Claus Gittinger <cg@exept.de>
parents: 3146
diff changeset
  3394
    __qMKFLOAT(val, dVal);
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3395
#endif
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3396
%}.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3397
    ^ val asInteger
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3398
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3399
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3400
ceilingAsFloat
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3401
    "return the smallest integer-valued float greater or equal to the receiver.
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3402
     This is much like #ceiling, but avoids a (possibly expensive) conversion
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3403
     of the result to an integer.
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  3404
     It may be useful, if the result is to be further used in another float-operation."
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3405
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3406
%{  /* NOCONTEXT */
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3407
#ifdef __SCHTEAM__
18299
74723837b0ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 18296
diff changeset
  3408
    return context._RETURN( self.ceiling() );
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3409
#else
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3410
    double dVal;
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  3411
    OBJ v;
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3412
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3413
    dVal = ceil(__floatVal(self));
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  3414
    __qMKFLOAT(v, dVal);
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  3415
    RETURN (v);
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3416
#endif
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3417
%}
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  3418
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3419
     0.5 ceilingAsFloat
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3420
     -0.5 ceilingAsFloat
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3421
     -1.5 ceilingAsFloat
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  3422
    "
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3423
!
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3424
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3425
floor
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3426
    "return the integer nearest the receiver towards negative infinity."
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3427
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3428
    |val|
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3429
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3430
%{
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3431
#ifdef __SCHTEAM__
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3432
    ERROR("unimplemented");
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3433
#else
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3434
    double dVal;
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3435
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  3436
    dVal = floor(__floatVal(self));
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3437
    /*
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3438
     * ST-80 (and X3J20) returns integer.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3439
     */
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3440
    if ((dVal >= (double)_MIN_INT) && (dVal <= (double)_MAX_INT)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3441
	RETURN ( __mkSmallInteger( (INT) dVal ) );
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3442
    }
3163
212a539ee379 added #readFrom: to avoid returning an int.
Claus Gittinger <cg@exept.de>
parents: 3146
diff changeset
  3443
    __qMKFLOAT(val, dVal);
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3444
#endif
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3445
%}.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3446
    ^ val asInteger
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3447
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3448
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3449
     0.5 floor
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3450
     0.5 floorAsFloat
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3451
     -0.5 floor
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3452
     -0.5 floorAsFloat
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3453
    "
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3454
!
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3455
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3456
floorAsFloat
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  3457
    "return the integer nearest the receiver towards negative infinity as a float.
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3458
     This is much like #floor, but avoids a (possibly expensive) conversion
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3459
     of the result to an integer.
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  3460
     It may be useful, if the result is to be further used in another float-operation."
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3461
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3462
%{  /* NOCONTEXT */
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3463
#ifdef __SCHTEAM__
18299
74723837b0ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 18296
diff changeset
  3464
    return context._RETURN( self.floor() );
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3465
#else
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3466
    double dVal;
3163
212a539ee379 added #readFrom: to avoid returning an int.
Claus Gittinger <cg@exept.de>
parents: 3146
diff changeset
  3467
    OBJ v;
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3468
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3469
    dVal = floor(__floatVal(self));
3163
212a539ee379 added #readFrom: to avoid returning an int.
Claus Gittinger <cg@exept.de>
parents: 3146
diff changeset
  3470
    __qMKFLOAT(v, dVal);
212a539ee379 added #readFrom: to avoid returning an int.
Claus Gittinger <cg@exept.de>
parents: 3146
diff changeset
  3471
    RETURN (v);
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3472
#endif
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3473
%}
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3474
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3475
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3476
     0.5 floor
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3477
     0.5 floorAsFloat
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3478
     -0.5 floor
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3479
     -0.5 floorAsFloat
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3480
    "
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3481
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3482
3896
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  3483
fractionPart
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  3484
    "extract the after-decimal fraction part.
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  3485
     such that (self truncated + self fractionPart) = self"
3896
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  3486
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  3487
%{  /* NOCONTEXT */
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  3488
14728
b947522816a7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 14720
diff changeset
  3489
    double modf(double, double*);
3896
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  3490
    double frac, trunc;
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  3491
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4825
diff changeset
  3492
    __threadErrno = 0;
3896
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  3493
    frac = modf(__floatVal(self), &trunc);
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3494
    if (! isnan(frac)) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3495
	if (__threadErrno == 0) {
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3496
	    RETURN (__MKFLOAT(frac));
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3497
	}
3896
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  3498
    }
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  3499
%}.
7403
857702a5a921 signals vs. errors
Claus Gittinger <cg@exept.de>
parents: 7393
diff changeset
  3500
    ^ self class
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3501
	raise:#domainErrorSignal
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3502
	receiver:self
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3503
	selector:#fractionPart
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3504
	arguments:#()
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3505
	errorString:'bad receiver in fractionPart'
3896
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  3506
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  3507
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3508
     1.6 fractionPart + 1.6 truncated
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3509
     -1.6 fractionPart + -1.6 truncated
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3510
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3511
     1.0 fractionPart
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3512
     2.0 fractionPart
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3513
     3.0 fractionPart
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3514
     4.0 fractionPart
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3515
     0.5 fractionPart
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3516
     0.25 fractionPart
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3517
     3.14159 fractionPart
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3518
     12345673.14159 fractionPart
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3519
     123456731231231231.14159 fractionPart
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3520
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3521
     3.14159 fractionPart + 3.14159 truncated
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3522
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3523
     12345673.14159 fractionPart + 12345673.14159 truncated
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3524
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3525
     123456731231231231.14159 fractionPart + 123456731231231231.14159 truncated
3896
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  3526
    "
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  3527
!
ff8ef5f6f3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3894
diff changeset
  3528
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3529
rounded
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3530
    "return the receiver rounded to the nearest integer"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3531
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3532
    |val|
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3533
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3534
%{
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3535
#ifdef __SCHTEAM__
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3536
    ERROR("unimplemented");
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3537
#else
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3538
    double dVal;
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3539
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3540
    dVal = __floatVal(self);
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3541
    if (dVal < 0.0) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3542
	dVal = ceil(dVal - 0.5);
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3543
    } else {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3544
	dVal = floor(dVal + 0.5);
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3545
    }
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3546
    /*
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3547
     * ST-80 (and X3J20) returns integer.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3548
     */
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3549
    if ((dVal >= (double)_MIN_INT) && (dVal <= (double)_MAX_INT)) {
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3550
	RETURN ( __mkSmallInteger( (INT) dVal ) );
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3551
    }
3163
212a539ee379 added #readFrom: to avoid returning an int.
Claus Gittinger <cg@exept.de>
parents: 3146
diff changeset
  3552
    __qMKFLOAT(val, dVal);
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3553
#endif
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3554
%}.
7355
96f466eeddf5 double dispatching fixed;
Claus Gittinger <cg@exept.de>
parents: 7258
diff changeset
  3555
    ^ val asInteger
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3556
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3557
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3558
     0.4 rounded
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3559
     0.5 rounded
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3560
     0.6 rounded
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3561
     -0.4 rounded
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3562
     -0.5 rounded
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3563
     -0.6 rounded
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3564
    "
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3565
!
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3566
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3567
roundedAsFloat
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3568
    "return the receiver rounded to the nearest integer as a float.
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3569
     This is much like #rounded, but avoids a (possibly expensive) conversion
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3570
     of the result to an integer.
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3571
     It may be useful, if the result is to be further used in another
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3572
     float-operation."
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3573
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3574
    |val|
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3575
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3576
%{  /* NOCONTEXT */
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3577
#ifdef __SCHTEAM__
18299
74723837b0ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 18296
diff changeset
  3578
    return context._RETURN( self.round() );
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3579
#else
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3580
    double dVal;
3163
212a539ee379 added #readFrom: to avoid returning an int.
Claus Gittinger <cg@exept.de>
parents: 3146
diff changeset
  3581
    OBJ v;
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3582
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3583
    dVal = __floatVal(self);
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3584
    if (dVal < 0.0) {
3127
590c7d2bb4b9 fixes isNAN (on linux); added #isInfinite
Claus Gittinger <cg@exept.de>
parents: 3118
diff changeset
  3585
	dVal = ceil(dVal - 0.5);
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3586
    } else {
3127
590c7d2bb4b9 fixes isNAN (on linux); added #isInfinite
Claus Gittinger <cg@exept.de>
parents: 3118
diff changeset
  3587
	dVal = floor(dVal + 0.5);
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3588
    }
3163
212a539ee379 added #readFrom: to avoid returning an int.
Claus Gittinger <cg@exept.de>
parents: 3146
diff changeset
  3589
    __qMKFLOAT(v, dVal);
212a539ee379 added #readFrom: to avoid returning an int.
Claus Gittinger <cg@exept.de>
parents: 3146
diff changeset
  3590
    RETURN (v);
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3591
#endif
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3592
%}
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3593
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3594
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3595
     0.5 rounded
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3596
     -0.5 rounded
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3597
     0.5 roundedAsFloat
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3598
     -0.5 roundedAsFloat
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3599
    "
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3600
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3601
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3602
truncated
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3603
    "return the receiver truncated towards zero as an integer"
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3604
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3605
    |val|
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3606
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3607
%{
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3608
#ifdef __SCHTEAM__
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3609
    ERROR("unimplemented");
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3610
#else
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3611
    double dVal;
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3612
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 809
diff changeset
  3613
    dVal = __floatVal(self);
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3614
    if (dVal < 0.0) {
3127
590c7d2bb4b9 fixes isNAN (on linux); added #isInfinite
Claus Gittinger <cg@exept.de>
parents: 3118
diff changeset
  3615
	dVal = ceil(dVal);
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3616
    } else {
3127
590c7d2bb4b9 fixes isNAN (on linux); added #isInfinite
Claus Gittinger <cg@exept.de>
parents: 3118
diff changeset
  3617
	dVal = floor(dVal);
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3618
    }
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3619
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3620
    /*
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3621
     * ST-80 (and X3J20) returns integer.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3622
     */
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3623
    if ((dVal >= (double)_MIN_INT) && (dVal <= (double)_MAX_INT)) {
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8901
diff changeset
  3624
	RETURN ( __mkSmallInteger( (INT) dVal ) );
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3625
    }
3163
212a539ee379 added #readFrom: to avoid returning an int.
Claus Gittinger <cg@exept.de>
parents: 3146
diff changeset
  3626
    __qMKFLOAT(val, dVal);
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3627
#endif
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3628
%}.
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3629
    ^ val asInteger
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3630
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3631
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3632
     0.5 truncated
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3633
     -0.5 truncated
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3634
     0.5 truncatedAsFloat
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3635
     -0.5 truncatedAsFloat
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3636
    "
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3637
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3638
!
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3639
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3640
truncatedAsFloat
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3641
    "return the receiver truncated towards zero as a float.
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3642
     This is much like #truncated, but avoids a (possibly expensive) conversion
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3643
     of the result to an integer.
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3644
     It may be useful, if the result is to be further used in another
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3645
     float-operation."
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3646
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3647
%{  /* NOCONTEXT */
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3648
#ifdef __SCHTEAM__
18300
5b641d73fc8c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 18299
diff changeset
  3649
    return context._RETURN( self.truncated() );
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3650
#else
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3651
    double dVal;
3163
212a539ee379 added #readFrom: to avoid returning an int.
Claus Gittinger <cg@exept.de>
parents: 3146
diff changeset
  3652
    OBJ v;
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3653
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3654
    dVal = __floatVal(self);
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3655
    if (dVal < 0.0) {
3127
590c7d2bb4b9 fixes isNAN (on linux); added #isInfinite
Claus Gittinger <cg@exept.de>
parents: 3118
diff changeset
  3656
	dVal = ceil(dVal);
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3657
    } else {
3127
590c7d2bb4b9 fixes isNAN (on linux); added #isInfinite
Claus Gittinger <cg@exept.de>
parents: 3118
diff changeset
  3658
	dVal = floor(dVal);
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3659
    }
3163
212a539ee379 added #readFrom: to avoid returning an int.
Claus Gittinger <cg@exept.de>
parents: 3146
diff changeset
  3660
    __qMKFLOAT(v, dVal);
212a539ee379 added #readFrom: to avoid returning an int.
Claus Gittinger <cg@exept.de>
parents: 3146
diff changeset
  3661
    RETURN (v);
18296
c8c42aeac4f5 schteam defs
Claus Gittinger <cg@exept.de>
parents: 18138
diff changeset
  3662
#endif
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3663
%}
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3664
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3665
    "
11945
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3666
     0.5 truncated
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3667
     -0.5 truncated
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3668
     0.5 truncatedAsFloat
8697e2333da3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11926
diff changeset
  3669
     -0.5 truncatedAsFloat
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3670
    "
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3671
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3672
! !
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3673
1879
26df273349c4 added ceilingAsFloat, floorAsFloat, truncatedAsFloat
Claus Gittinger <cg@exept.de>
parents: 1695
diff changeset
  3674
!Float class methodsFor:'documentation'!
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3675
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3676
version
18492
eca396c81443 class: Float
Claus Gittinger <cg@exept.de>
parents: 18300
diff changeset
  3677
    ^ '$Header$'
12423
a3c777accbb0 changed: #exponent
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  3678
!
a3c777accbb0 changed: #exponent
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  3679
a3c777accbb0 changed: #exponent
Claus Gittinger <cg@exept.de>
parents: 11945
diff changeset
  3680
version_CVS
18492
eca396c81443 class: Float
Claus Gittinger <cg@exept.de>
parents: 18300
diff changeset
  3681
    ^ '$Header$'
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 533
diff changeset
  3682
! !
6890
8e74eff54c3d added isNegativeZero to test for -0.0
Claus Gittinger <cg@exept.de>
parents: 6674
diff changeset
  3683
14599
3c1e4683d2f6 class: Float
Stefan Vogel <sv@exept.de>
parents: 14298
diff changeset
  3684
2387
3aafb49a86ac added #isNaN
Claus Gittinger <cg@exept.de>
parents: 2358
diff changeset
  3685
Float initialize!