summaryrefslogtreecommitdiff
path: root/java
diff options
context:
space:
mode:
authorPaul Jungeblut <s_jungeb@i08pc71.atis-stud.uni-karlsruhe.de>2014-11-26 18:34:33 +0100
committerPaul Jungeblut <s_jungeb@i08pc71.atis-stud.uni-karlsruhe.de>2014-11-26 18:34:33 +0100
commit9cf344075f66a3bd2e404b08b72812356bb3f565 (patch)
treee2c2069662997a7cfa22c09f536cf2041ce849b5 /java
parent61677a43deb5b16bcbcc4b12a9a5933258481cad (diff)
Feinschliff
Diffstat (limited to 'java')
-rw-r--r--java/java.tex4
1 files changed, 2 insertions, 2 deletions
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.