All Downloads are FREE. Search and download functionalities are using the official Maven repository.

umontreal.ssj.randvar.UnuranContinuous Maven / Gradle / Ivy

There is a newer version: 3.3.2
Show newest version
/*
 * Class:        UnuranContinuous
 * Description:  create continuous univariate generators using UNURAN
 * Environment:  Java
 * Software:     SSJ 
 * Copyright (C) 2001  Pierre L'Ecuyer and Universite de Montreal
 * Organization: DIRO, Universite de Montreal
 * @author       
 * @since
 *
 *
 * Licensed 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 umontreal.ssj.randvar;
import umontreal.ssj.probdist.Distribution;
import umontreal.ssj.rng.RandomStream;

/**
 * This class permits one to create continuous univariate generators using
 * UNURAN via its string API.
 *
 * 
* * @ingroup randvar_unuran */ public class UnuranContinuous extends RandomVariateGen { private RandUnuran unuran = new RandUnuran(); /** * Same as {@link #UnuranContinuous() UnuranContinuous(s, s, genStr)}. */ public UnuranContinuous (RandomStream s, String genStr) { if (s == null) throw new IllegalArgumentException ("s must not be null."); unuran.mainStream = unuran.auxStream = s; unuran.init (genStr); if (!unuran.isContinuous()) { unuran.close(); throw new IllegalArgumentException ("not a continuous distribution"); } } /** * Constructs a new continuous random number generator using the UNURAN * generator specification string `genStr`, main stream `s`, and * auxiliary stream `aux`. */ public UnuranContinuous (RandomStream s, RandomStream aux, String genStr) { if (s == null) throw new IllegalArgumentException ("s must not be null."); if (aux == null) throw new IllegalArgumentException ("aux must not be null."); unuran.mainStream = s; unuran.auxStream = aux; unuran.init (genStr); if (!unuran.isContinuous()) { unuran.close(); throw new IllegalArgumentException ("not a continuous distribution"); } } public double nextDouble() { if (unuran.nativeParams == 0) throw new IllegalStateException(); return unuran.getRandCont (unuran.mainStream.nextDouble(), unuran.nativeParams); } public void nextArrayOfDouble (double[] v, int start, int n) { if (v == null || start < 0 || n < 0 || (start+n) > v.length) throw new IllegalArgumentException(); if (unuran.unifArray == null || unuran.unifArray.length < n) unuran.unifArray = new double[n]; if (unuran.mainStream != unuran.auxStream && (unuran.unifAuxArray == null || unuran.unifAuxArray.length < n)) unuran.unifAuxArray = new double[n]; unuran.getRandContArray (unuran.nativeParams, unuran.unifArray, unuran.unifAuxArray, v, start, n); } protected void finalize() { unuran.close(); } public Distribution getDistribution() { return null; } public RandomStream getStream() { return unuran.mainStream; } /** * Returns the auxiliary random number stream. */ public RandomStream getAuxStream() { return unuran.auxStream; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy