Skip to content

Commit f58d07c

Browse files
committed
Extend Math redux class with a missing method
1 parent baa810b commit f58d07c

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

  • key.core/src/main/resources/de/uka/ilkd/key/java/JavaRedux/java/lang

key.core/src/main/resources/de/uka/ilkd/key/java/JavaRedux/java/lang/Math.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package java.lang;
22

33
public final class Math {
4-
4+
55
private Math() {}
66

77
/*@ public normal_behavior
@@ -92,4 +92,6 @@ public static float max(float a, float b) {
9292
public static double pow(double a , double b);
9393
public static double exp(double a);
9494
public static double atan(double a);
95+
96+
public static double random();
9597
}

0 commit comments

Comments
 (0)