From 9cf344075f66a3bd2e404b08b72812356bb3f565 Mon Sep 17 00:00:00 2001 From: Paul Jungeblut Date: Wed, 26 Nov 2014 18:34:33 +0100 Subject: Feinschliff --- java/java.tex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'java/java.tex') diff --git a/java/java.tex b/java/java.tex index e8e132c..d9c3a75 100644 --- a/java/java.tex +++ b/java/java.tex @@ -28,7 +28,7 @@ Hier ein kleiner überblick über die Methoden der Klasse BigInteger: //Returns this +,*,/,- val BigInteger add(BigInteger val), multiply(BigInteger val), divide(BigInteger val), substract(BigInteger val) -//Returns this\(^e\) +//Returns this^e BigInteger pow(BigInteger e) //Bit-Operations @@ -37,7 +37,7 @@ BigInteger and(BigInteger val), or(BigInteger val), xor(BigInteger val), not(), //Returns the greatest common divisor of abs(this) and abs(val) BigInteger gcd(BigInteger val) -//Returns this mod m, this\(^{-1}\) mod m, this\(^e\) mod m +//Returns this mod m, this^-1 mod m, this^e mod m BigInteger mod(BigInteger m), modInverse(BigInteger m), modPow(BigInteger e, BigInteger m) //Returns the next number that is greater than this and that is probably a prime. -- cgit v1.2.3