MultiStreamGenerator.java

  1. package org.drip.measure.crng;

  2. /*
  3.  * -*- mode: java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  4.  */

  5. /*!
  6.  * Copyright (C) 2020 Lakshmi Krishnamurthy
  7.  * Copyright (C) 2019 Lakshmi Krishnamurthy
  8.  * Copyright (C) 2018 Lakshmi Krishnamurthy
  9.  * Copyright (C) 2017 Lakshmi Krishnamurthy
  10.  *
  11.  *  This file is part of DROP, an open-source library targeting analytics/risk, transaction cost analytics,
  12.  *      asset liability management analytics, capital, exposure, and margin analytics, valuation adjustment
  13.  *      analytics, and portfolio construction analytics within and across fixed income, credit, commodity,
  14.  *      equity, FX, and structured products. It also includes auxiliary libraries for algorithm support,
  15.  *      numerical analysis, numerical optimization, spline builder, model validation, statistical learning,
  16.  *      and computational support.
  17.  *  
  18.  *      https://lakshmidrip.github.io/DROP/
  19.  *  
  20.  *  DROP is composed of three modules:
  21.  *  
  22.  *  - DROP Product Core - https://lakshmidrip.github.io/DROP-Product-Core/
  23.  *  - DROP Portfolio Core - https://lakshmidrip.github.io/DROP-Portfolio-Core/
  24.  *  - DROP Computational Core - https://lakshmidrip.github.io/DROP-Computational-Core/
  25.  *
  26.  *  DROP Product Core implements libraries for the following:
  27.  *  - Fixed Income Analytics
  28.  *  - Loan Analytics
  29.  *  - Transaction Cost Analytics
  30.  *
  31.  *  DROP Portfolio Core implements libraries for the following:
  32.  *  - Asset Allocation Analytics
  33.  *  - Asset Liability Management Analytics
  34.  *  - Capital Estimation Analytics
  35.  *  - Exposure Analytics
  36.  *  - Margin Analytics
  37.  *  - XVA Analytics
  38.  *
  39.  *  DROP Computational Core implements libraries for the following:
  40.  *  - Algorithm Support
  41.  *  - Computation Support
  42.  *  - Function Analysis
  43.  *  - Model Validation
  44.  *  - Numerical Analysis
  45.  *  - Numerical Optimizer
  46.  *  - Spline Builder
  47.  *  - Statistical Learning
  48.  *
  49.  *  Documentation for DROP is Spread Over:
  50.  *
  51.  *  - Main                     => https://lakshmidrip.github.io/DROP/
  52.  *  - Wiki                     => https://github.com/lakshmiDRIP/DROP/wiki
  53.  *  - GitHub                   => https://github.com/lakshmiDRIP/DROP
  54.  *  - Repo Layout Taxonomy     => https://github.com/lakshmiDRIP/DROP/blob/master/Taxonomy.md
  55.  *  - Javadoc                  => https://lakshmidrip.github.io/DROP/Javadoc/index.html
  56.  *  - Technical Specifications => https://github.com/lakshmiDRIP/DROP/tree/master/Docs/Internal
  57.  *  - Release Versions         => https://lakshmidrip.github.io/DROP/version.html
  58.  *  - Community Credits        => https://lakshmidrip.github.io/DROP/credits.html
  59.  *  - Issues Catalog           => https://github.com/lakshmiDRIP/DROP/issues
  60.  *  - JUnit                    => https://lakshmidrip.github.io/DROP/junit/index.html
  61.  *  - Jacoco                   => https://lakshmidrip.github.io/DROP/jacoco/index.html
  62.  *
  63.  *  Licensed under the Apache License, Version 2.0 (the "License");
  64.  *      you may not use this file except in compliance with the License.
  65.  *  
  66.  *  You may obtain a copy of the License at
  67.  *      http://www.apache.org/licenses/LICENSE-2.0
  68.  *  
  69.  *  Unless required by applicable law or agreed to in writing, software
  70.  *      distributed under the License is distributed on an "AS IS" BASIS,
  71.  *      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  72.  *  
  73.  *  See the License for the specific language governing permissions and
  74.  *      limitations under the License.
  75.  */

  76. /**
  77.  * <i>MultiStreamGenerator</i> helps generate Multiple Independent (i.e., Non-Overlapping) Streams of Random
  78.  * Numbers.
  79.  *
  80.  *  <br><br>
  81.  *  <ul>
  82.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ComputationalCore.md">Computational Core Module</a></li>
  83.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/NumericalAnalysisLibrary.md">Numerical Analysis Library</a></li>
  84.  *      <li><b>Project</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/measure/README.md">R<sup>d</sup> Continuous/Discrete Probability Measures</a></li>
  85.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/measure/crng/README.md">Continuous Random Number Stream Generator</a></li>
  86.  *  </ul>
  87.  *
  88.  * @author Lakshmi Krishnamurthy
  89.  */

  90. public class MultiStreamGenerator {

  91.     /**
  92.      * Generate Multiple Independent Streams using the Skip Ahead Technique
  93.      *
  94.      * @param rng The Random Number Generator
  95.      * @param iNumStream Number of Streams to be Generated
  96.      * @param iNumElementsPerStream Number of Elements Per Stream
  97.      *
  98.      * @return Double Array of Multiple Independent Streams
  99.      */

  100.     public static final double[][] SkipAhead (
  101.         final org.drip.measure.crng.RandomNumberGenerator rng,
  102.         final int iNumStream,
  103.         final int iNumElementsPerStream)
  104.     {
  105.         if (null == rng || 0 >= iNumStream || 0 >= iNumElementsPerStream) return null;

  106.         double[][] aadblRandomStream = new double[iNumStream][iNumElementsPerStream];

  107.         for (int iStream = 0; iStream < iNumStream; ++iStream) {
  108.             for (int iElement = 0; iElement < iNumElementsPerStream; ++iElement)
  109.                 aadblRandomStream[iStream][iElement] = rng.nextDouble01();
  110.         }

  111.         return aadblRandomStream;
  112.     }

  113.     /**
  114.      * Generate Multiple Independent Streams using the Leap Frog Technique
  115.      *
  116.      * @param rng The Random Number Generator
  117.      * @param iNumStream Number of Streams to be Generated
  118.      * @param iNumElementsPerStream Number of Elements Per Stream
  119.      *
  120.      * @return Double Array of Multiple Independent Streams
  121.      */

  122.     public static final double[][] LeapFrog (
  123.         final org.drip.measure.crng.RandomNumberGenerator rng,
  124.         final int iNumStream,
  125.         final int iNumElementsPerStream)
  126.     {
  127.         if (null == rng || 0 >= iNumStream || 0 >= iNumElementsPerStream) return null;

  128.         double[][] aadblRandomStream = new double[iNumStream][iNumElementsPerStream];

  129.         for (int iElement = 0; iElement < iNumElementsPerStream; ++iElement) {
  130.             for (int iStream = 0; iStream < iNumStream; ++iStream)
  131.                 aadblRandomStream[iStream][iElement] = rng.nextDouble01();
  132.         }

  133.         return aadblRandomStream;
  134.     }

  135.     /**
  136.      * Generate Multiple Independent Streams using the Skip Ahead Technique from the Default Random Number
  137.      *  Generator
  138.      *
  139.      * @param iNumStream Number of Streams to be Generated
  140.      * @param iNumElementsPerStream Number of Elements Per Stream
  141.      *
  142.      * @return Double Array of Multiple Independent Streams
  143.      */

  144.     public static final double[][] SkipAhead (
  145.         final int iNumStream,
  146.         final int iNumElementsPerStream)
  147.     {
  148.         return SkipAhead (new org.drip.measure.crng.RandomNumberGenerator(), iNumStream,
  149.             iNumElementsPerStream);
  150.     }

  151.     /**
  152.      * Generate Multiple Independent Streams using the Leap Frog Technique from the Default Random Number
  153.      *  Generator
  154.      *
  155.      * @param iNumStream Number of Streams to be Generated
  156.      * @param iNumElementsPerStream Number of Elements Per Stream
  157.      *
  158.      * @return Double Array of Multiple Independent Streams
  159.      */

  160.     public static final double[][] LeapFrog (
  161.         final int iNumStream,
  162.         final int iNumElementsPerStream)
  163.     {
  164.         return LeapFrog (new org.drip.measure.crng.RandomNumberGenerator(), iNumStream,
  165.             iNumElementsPerStream);
  166.     }
  167. }