New random input data for integral tests
Former-commit-id: eb1c229e56956ec17f9bb23f1d8f49674d267656
This commit is contained in:
parent
2b0a16f56c
commit
572a5bb4bd
|
@ -0,0 +1,15 @@
|
|||
import random
|
||||
import math
|
||||
|
||||
nmu = 2
|
||||
mu = 1e-5
|
||||
ksigma = 1e7
|
||||
|
||||
for i in range(10000):
|
||||
R = abs(random.expovariate(1/mu))
|
||||
k = random.normalvariate(0,ksigma)
|
||||
n = math.ceil(abs(random.expovariate(1/nmu)))
|
||||
eta = abs(k/2/6**0.5)# abs(random.expovariate(8/k))
|
||||
print(n, k, R, eta)
|
||||
|
||||
|
|
@ -1 +1 @@
|
|||
b51737ecf7c0def73d9cac3706630d338825231c
|
||||
eda554a908f14fa74251c9cf0271ec0519c327fd
|
|
@ -0,0 +1 @@
|
|||
472b0ff06c979787a17d644828792f418fefb4ab
|
Loading…
Reference in New Issue