FunctionClassSupremum.java

  1. package org.drip.function.r1tor1;

  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>FunctionClassSupremum</i> implements the Univariate Function that corresponds to the Supremum among the
  80.  * specified Class of Functions.
  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/NumericalAnalysisLibrary.md">Numerical Analysis Library</a></li>
  86.  *      <li><b>Project</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/function/README.md">R<sup>d</sup> To R<sup>d</sup> Function Analysis</a></li>
  87.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/function/r1tor1/README.md">Built-in R<sup>1</sup> To R<sup>1</sup> Functions</a></li>
  88.  *  </ul>
  89.  *
  90.  * @author Lakshmi Krishnamurthy
  91.  */

  92. public class FunctionClassSupremum extends org.drip.function.definition.R1ToR1 {
  93.     class IndexSupremum {
  94.         int _iIndex = -1;
  95.         double _dblSupremum = java.lang.Double.NaN;

  96.         IndexSupremum (
  97.             final int iIndex,
  98.             final double dblSupremum)
  99.         {
  100.             _iIndex = iIndex;
  101.             _dblSupremum = dblSupremum;
  102.         }
  103.     };

  104.     private org.drip.function.definition.R1ToR1[] _aAUClass = null;

  105.     private IndexSupremum supremum (
  106.         final double dblVariate)
  107.     {
  108.         int iIndex = 0;
  109.         int iNumFunction = _aAUClass.length;

  110.         try {
  111.             double dblSupremum = _aAUClass[0].evaluate (dblVariate);

  112.             for (int i = 1; i < iNumFunction; ++i) {
  113.                 double dblValue = _aAUClass[i].evaluate (dblVariate);

  114.                 if (dblValue > dblSupremum) {
  115.                     iIndex = i;
  116.                     dblSupremum = dblValue;
  117.                 }
  118.             }

  119.             return new IndexSupremum (iIndex, dblSupremum);
  120.         } catch (java.lang.Exception e) {
  121.             e.printStackTrace();
  122.         }

  123.         return null;
  124.     }

  125.     /**
  126.      * FunctionClassSupremum Cnstructor
  127.      *
  128.      * @param aAUClass Array of Functions in the Class
  129.      *
  130.      * @throws java.lang.Exception Thrown if the Inputs are Invalid
  131.      */

  132.     public FunctionClassSupremum (
  133.         final org.drip.function.definition.R1ToR1[] aAUClass)
  134.         throws java.lang.Exception
  135.     {
  136.         super (null);

  137.         if (null == (_aAUClass = aAUClass) || 0 == _aAUClass.length)
  138.             throw new java.lang.Exception ("FunctionClassSupremum ctr => Invalid Inputs");
  139.     }

  140.     /**
  141.      * Retrieve the Class of Functions
  142.      *
  143.      * @return The Class of Functions
  144.      */

  145.     public org.drip.function.definition.R1ToR1[] functionClass()
  146.     {
  147.         return _aAUClass;
  148.     }

  149.     /**
  150.      * Retrieve the Supremum Function corresponding to the specified Variate
  151.      *
  152.      * @param dblVariate The Variate
  153.      *
  154.      * @return The Supremum Function corresponding to the specified Variate
  155.      */

  156.     public org.drip.function.definition.R1ToR1 supremumFunction (
  157.         final double dblVariate)
  158.     {
  159.         IndexSupremum is = supremum (dblVariate);

  160.         return null == is ? null : _aAUClass[is._iIndex];
  161.     }

  162.     @Override public double evaluate (
  163.         final double dblVariate)
  164.         throws java.lang.Exception
  165.     {
  166.         IndexSupremum is = supremum (dblVariate);

  167.         if (null == is) throw new java.lang.Exception ("FunctionClassSupremum::evaluate => Invalid Inputs");

  168.         return is._dblSupremum;
  169.     }

  170.     @Override public double derivative (
  171.         final double dblVariate,
  172.         final int iOrder)
  173.         throws java.lang.Exception
  174.     {
  175.         IndexSupremum is = supremum (dblVariate);

  176.         if (null == is)
  177.             throw new java.lang.Exception ("FunctionClassSupremum::derivative => Invalid Inputs");

  178.         return _aAUClass[is._iIndex].derivative (dblVariate, iOrder);
  179.     }

  180.     @Override public double integrate (
  181.         final double dblBegin,
  182.         final double dblEnd)
  183.         throws java.lang.Exception
  184.     {
  185.         IndexSupremum is = supremum (0.5 * (dblBegin + dblEnd));

  186.         if (null == is) throw new java.lang.Exception ("FunctionClassSupremum::integrate => Invalid Inputs");

  187.         return _aAUClass[is._iIndex].integrate (dblBegin, dblEnd);
  188.     }
  189. }