lib: rename `standard` as `core`
[nit.git] / lib / standard / math.nit
diff --git a/lib/standard/math.nit b/lib/standard/math.nit
deleted file mode 100644 (file)
index d52c05d..0000000
+++ /dev/null
@@ -1,235 +0,0 @@
-# This file is part of NIT ( http://www.nitlanguage.org ).
-#
-# Copyright 2004-2008 Jean Privat <jean@pryen.org>
-#
-# This file is free software, which comes along with NIT.  This software is
-# distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
-# without  even  the implied warranty of  MERCHANTABILITY or  FITNESS FOR A 
-# PARTICULAR PURPOSE.  You can modify it is you want,  provided this header
-# is kept unaltered, and a notification of the changes is added.
-# You  are  allowed  to  redistribute it and sell it, alone or is a part of
-# another product.
-
-# Mathematical operations
-module math
-
-import kernel
-import collection
-
-in "C header" `{
-#include <math.h>
-`}
-
-redef class Int
-       # Returns a random `Int` in `[0 .. self[`.
-       fun rand: Int is extern "kernel_Int_Int_rand_0"
-
-       # Returns the result of a binary AND operation on `self` and `i`
-       #
-       #    assert 0x10.bin_and(0x01) == 0
-       fun bin_and(i: Int): Int is extern "kernel_Int_Int_binand_0"
-
-       # Returns the result of a binary OR operation on `self` and `i`
-       #
-       #    assert 0x10.bin_or(0x01) == 0x11
-       fun bin_or(i: Int): Int is extern "kernel_Int_Int_binor_0"
-
-       # Returns the result of a binary XOR operation on `self` and `i`
-       #
-       #    assert 0x101.bin_xor(0x110) == 0x11
-       fun bin_xor(i: Int): Int is extern "kernel_Int_Int_binxor_0"
-
-       # Returns the 1's complement of `self`
-       #
-       #    assert 0x2F.bin_not == -48
-       fun bin_not: Int is extern "kernel_Int_Int_binnot_0"
-
-       # Returns the square root of `self`
-       #
-       #    assert 16.sqrt == 4
-       fun sqrt: Int `{ return sqrt(recv); `}
-
-       # Returns the greatest common divisor of `self` and `o`
-       #
-       #     assert 54.gcd(24)   == 6
-       #     assert -54.gcd(-24) == 6
-       #     assert 54.gcd(-24)  == -6
-       #     assert -54.gcd(24)  == -6
-       #     assert 12.gcd(6)    == 6
-       fun gcd(o: Int): Int
-       do
-               if self < 0 then return -(-self).gcd(o)
-               if o < 0 then return -(self.gcd(-o))
-               if self == 0 or o == self then return o
-               if o == 0 then return self
-               if self.bin_and(1) == 0 then
-                       if o.bin_and(1) == 1 then
-                               return self.rshift(1).gcd(o)
-                       else
-                               return self.rshift(1).gcd(o.rshift(1)).lshift(1)
-                       end
-               end
-               if o.bin_and(1) == 0 then return self.gcd(o.rshift(1))
-               if self > o then return (self - o).rshift(1).gcd(o)
-               return (o - self).rshift(1).gcd(self)
-       end
-
-       # Is `self` even ?
-       #
-       #    assert 12.is_even
-       fun is_even: Bool do return self % 2 == 0
-
-       # Is `self` odd ?
-       #
-       #    assert not 13.is_even
-       fun is_odd: Bool do return not is_even
-
-       # Returns the `self` raised to the power of `e`.
-       #
-       #    assert 2 ** 3 == 8
-       fun **(e: Int): Int
-       do
-               return self.to_f.pow(e.to_f).to_i
-       end
-
-       # The factorial of `self` (aka `self!`)
-       #
-       # Returns `1 * 2 * 3 * ... * self-1 * self`
-       #
-       #    assert 0.factorial == 1  # by convention for an empty product
-       #    assert 1.factorial == 1
-       #    assert 4.factorial == 24
-       #    assert 9.factorial == 362880
-       fun factorial: Int
-       do
-               assert self >= 0
-               var res = 1
-               var n = self
-               while n > 0 do
-                       res = res * n
-                       n -= 1
-               end
-               return res
-       end
-end
-
-redef class Float
-
-       # Returns the non-negative square root of `self`.
-       fun sqrt: Float is extern "kernel_Float_Float_sqrt_0"
-
-       # Computes the cosine of `self` (expressed in radians).
-       fun cos: Float is extern "kernel_Float_Float_cos_0"
-
-       # Computes the sine of `self` (expressed in radians).
-       fun sin: Float is extern "kernel_Float_Float_sin_0"
-
-       # Computes the cosine of x (expressed in radians).
-       fun tan: Float is extern "kernel_Float_Float_tan_0"
-
-       # Computes the arc cosine of `self`.
-       fun acos: Float is extern "kernel_Float_Float_acos_0"
-
-       # Computes the arc sine of `self`.
-       fun asin: Float is extern "kernel_Float_Float_asin_0"
-
-       # Computes the arc tangent of `self`.
-       fun atan: Float is extern "kernel_Float_Float_atan_0"
-
-       # Returns the absolute value of `self`.
-       fun abs: Float `{ return fabs(recv); `}
-
-       # Returns `self` raised at `e` power.
-       fun pow(e: Float): Float is extern "kernel_Float_Float_pow_1"
-
-       # Returns the logarithm of `self`.
-       fun log: Float is extern "kernel_Float_Float_log_0"
-
-       # Returns **e** raised to `self`.
-       fun exp: Float is extern "kernel_Float_Float_exp_0"
-
-       #     assert 1.1.ceil == 2.0
-       #     assert 1.9.ceil == 2.0
-       #     assert 2.0.ceil == 2.0
-       #     assert (-1.5).ceil == -1.0
-       fun ceil: Float `{ return ceil(recv); `}
-
-       #     assert 1.1.floor == 1.0
-       #     assert 1.9.floor == 1.0
-       #     assert 2.0.floor == 2.0
-       #     assert (-1.5).floor == -2.0
-       fun floor: Float `{ return floor(recv); `}
-       
-       # Returns a random `Float` in `[0.0 .. self[`.
-       fun rand: Float is extern "kernel_Float_Float_rand_0"
-
-       # Returns the euclidean distance from `b`.
-       fun hypot_with(b : Float): Float is extern "hypotf"
-
-       # Returns true is self is not a number.
-       fun is_nan: Bool is extern "isnan"
-
-       # Is the float an infinite value
-       # this function returns:
-       #
-       #  * 1 if self is positive infinity
-       #  * -1 if self is negative infinity
-       #  * 0 otherwise
-       fun is_inf: Int do
-               if is_inf_extern then
-                       if self < 0.0 then return -1
-                       return 1
-               end
-               return 0
-       end
-
-       private fun is_inf_extern: Bool is extern "isinf"
-end
-
-redef class Collection[ E ]
-       # Return a random element form the collection
-       # There must be at least one element in the collection
-       fun rand: E
-       do
-               if is_empty then abort
-               var rand_index = length.rand
-
-               for e in self do
-                       if rand_index == 0 then return e
-                       rand_index -= 1
-               end
-               abort
-       end
-end
-
-redef class Sys
-       init
-       do
-               srand
-       end
-end
-
-# Computes the arc tangent given `x` and `y`.
-fun atan2(x: Float, y: Float): Float is extern "kernel_Any_Any_atan2_2"
-
-# Approximate value of **pi**.
-fun pi: Float is extern "kernel_Any_Any_pi_0"
-
-# Initialize the pseudo-random generator with the given seed.
-# The pseudo-random generator is used by the method `rand` and other to generate sequence of numbers.
-# These sequences are repeatable by calling `srand_from` with a same seed value.
-#
-# ~~~~
-# srand_from(0)
-# var a = 10.rand
-# var b = 100.rand
-# srand_from(0)
-# assert 10.rand == a
-# assert 100.rand == b
-# ~~~~
-fun srand_from(x: Int) is extern "kernel_Any_Any_srand_from_1"
-
-# Reinitialize the pseudo-random generator used by the method `rand` and other.
-# This method is automatically invoked at the begin of the program, so usually, there is no need to manually invoke it.
-# The only exception is in conjunction with `srand_from` to reset the pseudo-random generator.
-fun srand is extern "kernel_Any_Any_srand_0"