RdSpanningStateSpaceScan.java

  1. package org.drip.spaces.iterator;

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

  78. /**
  79.  * <i>RdSpanningStateSpaceScan</i> is the Abstract Iterator Class that contains the Functionality to perform
  80.  * a Spanning Iterative Scan through an R<sup>d</sup> State Space.
  81.  *
  82.  * <br><br>
  83.  *  <ul>
  84.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ComputationalCore.md">Computational Core Module</a></li>
  85.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/StatisticalLearningLibrary.md">Statistical Learning Library</a></li>
  86.  *      <li><b>Project</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/spaces/README.md">R<sup>1</sup> and R<sup>d</sup> Vector/Tensor Spaces (Validated and/or Normed), and Function Classes</a></li>
  87.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/spaces/iterator/README.md">Iterative/Exhaustive Vector Space Scanners</a></li>
  88.  *  </ul>
  89.  * <br><br>
  90.  *
  91.  * @author Lakshmi Krishnamurthy
  92.  */

  93. public abstract class RdSpanningStateSpaceScan {
  94.     private boolean _bCyclicalScan = false;
  95.     private int[] _aiStateIndexCursor = null;
  96.     private int[] _aiTerminalStateIndex = null;

  97.     protected RdSpanningStateSpaceScan (
  98.         final int[] aiTerminalStateIndex,
  99.         final boolean bCyclicalScan)
  100.         throws java.lang.Exception
  101.     {
  102.         if (null == aiTerminalStateIndex)
  103.             throw new java.lang.Exception ("RdSpanningStateSpaceScan ctr: Invalid Input");

  104.         int iDimension = aiTerminalStateIndex.length;
  105.         _aiTerminalStateIndex = new int[iDimension];
  106.         _aiStateIndexCursor = new int[iDimension];
  107.         _bCyclicalScan = bCyclicalScan;

  108.         if (0 == iDimension)
  109.             throw new java.lang.Exception ("RdSpanningStateSpaceScan ctr: Invalid Input");

  110.         for (int i = 0; i < iDimension; ++i) {
  111.             if (0 >= (_aiTerminalStateIndex[i] = aiTerminalStateIndex[i]))
  112.                 throw new java.lang.Exception ("RdSpanningStateSpaceScan ctr: Invalid Input");

  113.             _aiStateIndexCursor[i] = 0;
  114.         }
  115.     }

  116.     protected boolean setStateIndexCursor (
  117.         final int[] aiStateIndexCursor)
  118.     {
  119.         if (null == _aiStateIndexCursor || _aiStateIndexCursor.length != _aiTerminalStateIndex.length)
  120.             return false;

  121.         _aiStateIndexCursor = aiStateIndexCursor;
  122.         return true;
  123.     }

  124.     /**
  125.      * Retrieve the Array of the Terminal State Indexes
  126.      *
  127.      * @return The Array of the Terminal State Indexes
  128.      */

  129.     public int[] terminalStateIndex()
  130.     {
  131.         return _aiTerminalStateIndex;
  132.     }

  133.     /**
  134.      * Retrieve the Dimension
  135.      *
  136.      * @return The Dimension
  137.      */

  138.     public int dimension()
  139.     {
  140.         return _aiTerminalStateIndex.length;
  141.     }

  142.     /**
  143.      * Retrieve the State Index Cursor
  144.      *
  145.      * @return The State Index Cursor
  146.      */

  147.     public int[] stateIndexCursor()
  148.     {
  149.         return _aiStateIndexCursor;
  150.     }

  151.     /**
  152.      * Retrieve the Cyclical Scan Flag
  153.      *
  154.      * @return The Cyclical Scan Flag
  155.      */

  156.     public boolean cyclicalScan()
  157.     {
  158.         return _bCyclicalScan;
  159.     }

  160.     /**
  161.      * Reset and retrieve the State Index Cursor
  162.      *
  163.      * @return The Reset State Index Cursor
  164.      */

  165.     public abstract int[] resetStateIndexCursor();

  166.     /**
  167.      * Move to the Subsequent Index Cursor
  168.      *
  169.      * @return The Subsequent Index Cursor
  170.      */

  171.     public abstract int[] nextStateIndexCursor();
  172. }