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.
2 parents 2dc3fda + 96c1ed1 commit 5094e9bCopy full SHA for 5094e9b
bench/demo.fpcore
@@ -67,3 +67,9 @@
67
:precision binary64
68
:pre (and (<= -1e9 a 1e9) (<= -1e9 b 1e9) (<= -1e9 c 1e9))
69
(pow (/ (- (* 3.0 (* a c)) (pow b 2.0)) (* 9.0 (pow a 2.0))) 3.0))
70
+
71
+(FPCore (x a)
72
+ :name "Success Probability"
73
+ :precision binary64
74
+ :pre (and (<= 0.0 x 1) (<= 1/3 a 3.0))
75
+ (- 1.0 (pow (- 1.0 x) a)))
0 commit comments