• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2021 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5package rand
6
7func GetNormalDistributionParameters() (float64, [128]uint32, [128]float32, [128]float32) {
8	return rn, kn, wn, fn
9}
10
11func GetExponentialDistributionParameters() (float64, [256]uint32, [256]float32, [256]float32) {
12	return re, ke, we, fe
13}
14