LatentStateMergeSubStretch.java

  1. package org.drip.state.representation;

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

  80. /**
  81.  * <i>LatentStateMergeSubStretch</i> implements merged stretch that is common to multiple latent states. It
  82.  * is identified by the start/end date predictor ordinates, and the Latent State Label. Its methods provide
  83.  * the following functionality:
  84.  *
  85.  *  <br><br>
  86.  *  <ul>
  87.  *      <li>
  88.  *          Identify if the specified predictor ordinate belongs to the sub stretch
  89.  *      </li>
  90.  *      <li>
  91.  *          Shift that sub stretch start/end
  92.  *      </li>
  93.  *      <li>
  94.  *          Identify if the this overlaps the supplied sub stretch, and coalesce them if possible
  95.  *      </li>
  96.  *      <li>
  97.  *          Retrieve the label, start, and end
  98.  *      </li>
  99.  *  </ul>
  100.  *
  101.  *  <br><br>
  102.  *  <ul>
  103.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ProductCore.md">Product Core Module</a></li>
  104.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/FixedIncomeAnalyticsLibrary.md">Fixed Income Analytics</a></li>
  105.  *      <li><b>Project</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/state/README.md">Latent State Inference and Creation Utilities</a></li>
  106.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/state/representation/README.md">Latent State Merge Sub-stretch</a></li>
  107.  *  </ul>
  108.  * <br><br>
  109.  *
  110.  * @author Lakshmi Krishnamurthy
  111.  */

  112. public class LatentStateMergeSubStretch {
  113.     private double _dblEndDate = java.lang.Double.NaN;
  114.     private double _dblStartDate = java.lang.Double.NaN;
  115.     private org.drip.state.identifier.LatentStateLabel _lsl = null;

  116.     /**
  117.      * LatentStateMergeSubStretch constructor
  118.      *
  119.      * @param dblStartDate Merge Stretch Start Date
  120.      * @param dblEndDate Merge Stretch End Date
  121.      * @param lsl The Latent State Label
  122.      *
  123.      * @throws java.lang.Exception Thrown if Inputs are invalid
  124.      */

  125.     public LatentStateMergeSubStretch (
  126.         final double dblStartDate,
  127.         final double dblEndDate,
  128.         final org.drip.state.identifier.LatentStateLabel lsl)
  129.         throws java.lang.Exception
  130.     {
  131.         if (!org.drip.numerical.common.NumberUtil.IsValid (_dblStartDate = dblStartDate) ||
  132.             !org.drip.numerical.common.NumberUtil.IsValid (_dblEndDate = dblEndDate) || _dblStartDate >=
  133.                 _dblEndDate || null == (_lsl = lsl))
  134.             throw new java.lang.Exception ("LatentStateMergeSubStretch ctr: Invalid Inputs");
  135.     }

  136.     /**
  137.      * Retrieve the Merge Stretch Start Date
  138.      *
  139.      * @return The Merge Stretch Start Date
  140.      */

  141.     public double start()
  142.     {
  143.         return _dblStartDate;
  144.     }

  145.     /**
  146.      * Shift/Adjust the Start Date
  147.      *
  148.      * @param dblNewStartDate The new Date to be Shifted to
  149.      *
  150.      * @return TRUE - Start Date successfully shifted
  151.      */

  152.     public boolean shiftStart (
  153.         final double dblNewStartDate)
  154.     {
  155.         if (!org.drip.numerical.common.NumberUtil.IsValid (dblNewStartDate)) return false;

  156.         _dblStartDate = dblNewStartDate;
  157.         return true;
  158.     }

  159.     /**
  160.      * Retrieve the Merge Stretch End Date
  161.      *
  162.      * @return The Merge Stretch End Date
  163.      */

  164.     public double end()
  165.     {
  166.         return _dblEndDate;
  167.     }

  168.     /**
  169.      * Shift/Adjust the End Date
  170.      *
  171.      * @param dblNewEndDate The new Date to be Shifted to
  172.      *
  173.      * @return TRUE - End Date successfully shifted
  174.      */

  175.     public boolean shiftEnd (
  176.         final double dblNewEndDate)
  177.     {
  178.         if (!org.drip.numerical.common.NumberUtil.IsValid (dblNewEndDate)) return false;

  179.         _dblEndDate = dblNewEndDate;
  180.         return true;
  181.     }

  182.     /**
  183.      * Retrieve the Latent State Label
  184.      *
  185.      * @return The Latent State Label
  186.      */

  187.     public org.drip.state.identifier.LatentStateLabel label()
  188.     {
  189.         return _lsl;
  190.     }

  191.     /**
  192.      * Indicate whether Specified Merge Stretch's Label matches with the current one
  193.      *
  194.      * @param lsmsOther The Supplied Merge Stretch
  195.      *
  196.      * @return TRUE - Merge Stretches Index Match
  197.      */

  198.     public boolean indexMatch (
  199.         final LatentStateMergeSubStretch lsmsOther)
  200.     {
  201.         return null != _lsl && null != lsmsOther && lsmsOther.label().match (label());
  202.     }

  203.     /**
  204.      * Indicate whether the specified Date is "inside" the Stretch Range.
  205.      *
  206.      * @param dblDate Date whose "inside"ness is asked for
  207.      *
  208.      * @return TRUE - Date is Inside
  209.      */

  210.     public boolean in (
  211.         final double dblDate)
  212.     {
  213.         if (!org.drip.numerical.common.NumberUtil.IsValid (dblDate)) return false;

  214.         return dblDate >= _dblStartDate && dblDate <= _dblEndDate;
  215.     }

  216.     /**
  217.      * Identify if the Supplied Merge Stretch overlaps with the provided one.
  218.      *
  219.      * @param lsmlOther The Supplied Merge Stretch
  220.      *
  221.      * @return TRUE - Merge Stretches Overlap
  222.      */

  223.     public boolean overlap (
  224.         final LatentStateMergeSubStretch lsmlOther)
  225.     {
  226.         return null == lsmlOther || lsmlOther.start() >= end() || lsmlOther.end() <= start() ? false : true;
  227.     }

  228.     /**
  229.      * Coalesce the supplied Merge Stretch with the current one (if possible) to create a new Merge Stretch
  230.      *
  231.      * @param lsmlOther The Supplied Merge Stretch
  232.      *
  233.      * @return The Coalesced Merge Stretch
  234.      */

  235.     public LatentStateMergeSubStretch coalesce (
  236.         final LatentStateMergeSubStretch lsmlOther)
  237.     {
  238.         if (!overlap (lsmlOther) || !indexMatch (lsmlOther)) return null;

  239.         try {
  240.             return new LatentStateMergeSubStretch (start() < lsmlOther.start() ? start() :
  241.                 lsmlOther.start(), end() > lsmlOther.end() ? end() : lsmlOther.end(), label());
  242.         } catch (java.lang.Exception e) {
  243.             e.printStackTrace();
  244.         }

  245.         return null;
  246.     }
  247. }