This is an automated email from the ASF dual-hosted git repository. erans pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-math.git
The following commit(s) were added to refs/heads/master by this push: new eab3bce MATH-1600: Interface is not used anymore. eab3bce is described below commit eab3bcec3c6ee118ec0adaf54d2ecb34c2449c08 Author: Gilles Sadowski <gillese...@gmail.com> AuthorDate: Sun Jul 11 02:56:35 2021 +0200 MATH-1600: Interface is not used anymore. --- .../legacy/random/NormalizedRandomGenerator.java | 37 ---------------------- 1 file changed, 37 deletions(-) diff --git a/commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/random/NormalizedRandomGenerator.java b/commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/random/NormalizedRandomGenerator.java deleted file mode 100644 index e41a008..0000000 --- a/commons-math-legacy/src/main/java/org/apache/commons/math4/legacy/random/NormalizedRandomGenerator.java +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.apache.commons.math4.legacy.random; - -/** - * This interface represent a normalized random generator for - * scalars. - * Normalized generator provide null mean and unit standard deviation scalars. - * @since 1.2 - */ -public interface NormalizedRandomGenerator { - - /** Generate a random scalar with null mean and unit standard deviation. - * <p>This method does <strong>not</strong> specify the shape of the - * distribution, it is the implementing class that provides it. The - * only contract here is to generate numbers with null mean and unit - * standard deviation.</p> - * @return a random scalar with null mean and unit standard deviation - */ - double nextNormalizedDouble(); - -}