R1CombinatorialVector.java

  1. package org.drip.spaces.tensor;

  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>R1CombinatorialVector</i> exposes the normed/non-normed Discrete Spaces with R<sup>1</sup>
  80.  * Combinatorial Vector Elements.
  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/tensor/README.md">R<sup>x</sup> Continuous/Combinatorial Tensor Spaces</a></li>
  88.  *  </ul>
  89.  * <br><br>
  90.  *
  91.  * @author Lakshmi Krishnamurthy
  92.  */

  93. public class R1CombinatorialVector implements org.drip.spaces.tensor.R1GeneralizedVector {
  94.     private java.util.List<java.lang.Double> _lsElementSpace = new java.util.ArrayList<java.lang.Double>();

  95.     /**
  96.      * R1CombinatorialVector Constructor
  97.      *
  98.      * @param lsElementSpace The List Space of Elements
  99.      *
  100.      * @throws java.lang.Exception Thrown if the Inputs are Invalid
  101.      */

  102.     public R1CombinatorialVector (
  103.         final java.util.List<java.lang.Double> lsElementSpace)
  104.         throws java.lang.Exception
  105.     {
  106.         if (null == (_lsElementSpace = lsElementSpace) || 0 == _lsElementSpace.size())
  107.             throw new java.lang.Exception ("R1CombinatorialVector ctr: Invalid Inputs");
  108.     }

  109.     /**
  110.      * Retrieve the Full Candidate List of Elements
  111.      *
  112.      * @return The Full Candidate List of Elements
  113.      */

  114.     public java.util.List<java.lang.Double> elementSpace()
  115.     {
  116.         return _lsElementSpace;
  117.     }

  118.     @Override public double leftEdge()
  119.     {
  120.         double dblLeftEdge = java.lang.Double.NaN;

  121.         for (double dblElement : _lsElementSpace) {
  122.             if (java.lang.Double.NEGATIVE_INFINITY == dblElement) return dblElement;

  123.             if (!org.drip.numerical.common.NumberUtil.IsValid (dblLeftEdge))
  124.                 dblLeftEdge = dblElement;
  125.             else {
  126.                 if (dblLeftEdge > dblElement) dblLeftEdge = dblElement;
  127.             }
  128.         }

  129.         return dblLeftEdge;
  130.     }

  131.     @Override public double rightEdge()
  132.     {
  133.         double dblRightEdge = java.lang.Double.NaN;

  134.         for (double dblElement : _lsElementSpace) {
  135.             if (java.lang.Double.POSITIVE_INFINITY == dblElement) return dblElement;

  136.             if (!org.drip.numerical.common.NumberUtil.IsValid (dblRightEdge))
  137.                 dblRightEdge = dblElement;
  138.             else {
  139.                 if (dblRightEdge < dblElement) dblRightEdge = dblElement;
  140.             }
  141.         }

  142.         return dblRightEdge;
  143.     }

  144.     @Override public boolean validateInstance (
  145.         final double dblX)
  146.     {
  147.         return _lsElementSpace.contains (dblX);
  148.     }

  149.     @Override public org.drip.spaces.tensor.Cardinality cardinality()
  150.     {
  151.         return org.drip.spaces.tensor.Cardinality.CountablyFinite (_lsElementSpace.size());
  152.     }

  153.     @Override public boolean match (
  154.         final org.drip.spaces.tensor.GeneralizedVector gvOther)
  155.     {
  156.         if (null == gvOther || !(gvOther instanceof R1CombinatorialVector)) return false;

  157.         R1CombinatorialVector r1cvOther = (R1CombinatorialVector) gvOther;

  158.         if (!cardinality().match (r1cvOther.cardinality())) return false;

  159.         java.util.List<java.lang.Double> lsElementSpaceOther = r1cvOther.elementSpace();

  160.         for (double dblElement : _lsElementSpace) {
  161.             if (!lsElementSpaceOther.contains (dblElement)) return false;
  162.         }

  163.         return true;
  164.     }

  165.     @Override public boolean subset (
  166.         final org.drip.spaces.tensor.GeneralizedVector gvOther)
  167.     {
  168.         if (null == gvOther || !(gvOther instanceof R1CombinatorialVector)) return false;

  169.         R1CombinatorialVector r1cvOther = (R1CombinatorialVector) gvOther;

  170.         if (cardinality().number() < r1cvOther.cardinality().number()) return false;

  171.         java.util.List<java.lang.Double> lsElementSpaceOther = r1cvOther.elementSpace();

  172.         for (double dblElement : _lsElementSpace) {
  173.             if (!lsElementSpaceOther.contains (dblElement)) return false;
  174.         }

  175.         return true;
  176.     }

  177.     @Override public boolean isPredictorBounded()
  178.     {
  179.         return leftEdge() != java.lang.Double.NEGATIVE_INFINITY && rightEdge() !=
  180.             java.lang.Double.POSITIVE_INFINITY;
  181.     }

  182.     @Override public double hyperVolume()
  183.         throws java.lang.Exception
  184.     {
  185.         if (!isPredictorBounded())
  186.             throw new java.lang.Exception ("R1CombinatorialVector::hyperVolume => Space not Bounded");

  187.         return rightEdge() - leftEdge();
  188.     }
  189. }