We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b498399 commit 5f3770bCopy full SHA for 5f3770b
libraries/mathlib.km3
@@ -29,15 +29,19 @@ package mathlib {
29
30
static query piValue() : double
31
pre: true
32
- post: result = 3.14159265;
+ post: result = 3.1415926535897932384626433;
33
34
static query e() : double
35
36
post: result = 1->exp();
37
38
static query eValue() : double
39
40
- post: result = 1->exp();
+ post: result = 2.71828182845904523536028747135266249775724709369995;
41
+
42
+ static query gammaValue() : double
43
+ pre: true
44
+ post: result = 0.5772156649015328606065120900824024310421;
45
46
static operation setSeeds(x : int , y : int , z : int ) : void
47
0 commit comments