mirror of
https://github.com/corda/corda.git
synced 2025-01-09 06:23:04 +00:00
112 lines
2.4 KiB
Java
112 lines
2.4 KiB
Java
/* Copyright (c) 2008, Avian Contributors
|
|
|
|
Permission to use, copy, modify, and/or distribute this software
|
|
for any purpose with or without fee is hereby granted, provided
|
|
that the above copyright notice and this permission notice appear
|
|
in all copies.
|
|
|
|
There is NO WARRANTY for this software. See license.txt for
|
|
details. */
|
|
|
|
package java.lang;
|
|
|
|
public final class Math {
|
|
public static final double E = 2.718281828459045;
|
|
public static final double PI = 3.141592653589793;
|
|
private static boolean randomInitialized = false;
|
|
|
|
private Math() { }
|
|
|
|
public static double max(double a, double b) {
|
|
return (a < b ? b : a);
|
|
}
|
|
|
|
public static double min(double a, double b) {
|
|
return (a > b ? b : a);
|
|
}
|
|
|
|
public static float max(float a, float b) {
|
|
return (a < b ? b : a);
|
|
}
|
|
|
|
public static float min(float a, float b) {
|
|
return (a > b ? b : a);
|
|
}
|
|
|
|
public static long max(long a, long b) {
|
|
return (a < b ? b : a);
|
|
}
|
|
|
|
public static long min(long a, long b) {
|
|
return (a > b ? b : a);
|
|
}
|
|
|
|
public static int max(int a, int b) {
|
|
return (a < b ? b : a);
|
|
}
|
|
|
|
public static int min(int a, int b) {
|
|
return (a > b ? b : a);
|
|
}
|
|
|
|
public static int abs(int v) {
|
|
return (v < 0 ? -v : v);
|
|
}
|
|
|
|
public static long abs(long v) {
|
|
return (v < 0 ? -v : v);
|
|
}
|
|
|
|
public static float abs(float v) {
|
|
return (v < 0 ? -v : v);
|
|
}
|
|
|
|
public static double abs(double v) {
|
|
return (v < 0 ? -v : v);
|
|
}
|
|
|
|
public static long round(double v) {
|
|
return (long) Math.floor(v + 0.5);
|
|
}
|
|
|
|
public static int round(float v) {
|
|
return (int) Math.floor(v + 0.5);
|
|
}
|
|
|
|
public static double random() {
|
|
if (randomInitialized) {
|
|
natRandomInitialize(System.currentTimeMillis());
|
|
randomInitialized = true;
|
|
}
|
|
return natRandom();
|
|
}
|
|
|
|
public static native void natRandomInitialize(long val);
|
|
|
|
public static native double natRandom();
|
|
|
|
public static native double floor(double v);
|
|
|
|
public static native double ceil(double v);
|
|
|
|
public static native double exp(double v);
|
|
|
|
public static native double log(double v);
|
|
|
|
public static native double cos(double v);
|
|
|
|
public static native double sin(double v);
|
|
|
|
public static native double tan(double v);
|
|
|
|
public static native double acos(double v);
|
|
|
|
public static native double asin(double v);
|
|
|
|
public static native double atan(double v);
|
|
|
|
public static native double sqrt(double v);
|
|
|
|
public static native double pow(double v, double e);
|
|
}
|