CreditCurveRegressor.java

  1. package org.drip.regression.curve;

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

  81. /**
  82.  * <i>CreditCurveRegressor</i> implements the regression set analysis for the Credit Curve.
  83.  * CreditCurveRegressor regresses 12 scenarios:
  84.  *
  85.  * <br><br>
  86.  *  <ul>
  87.  *      <li>
  88.  *          #1: Create an SNAC CDS.
  89.  *      </li>
  90.  *      <li>
  91.  *          #2: Create the credit curve from a set of CDS instruments.
  92.  *      </li>
  93.  *      <li>
  94.  *          #3: Create the credit curve from a flat hazard rate.
  95.  *      </li>
  96.  *      <li>
  97.  *          #4: Create the credit curve from a set of survival probabilities.
  98.  *      </li>
  99.  *      <li>
  100.  *          #5: Create the credit curve from an array of hazard rates.
  101.  *      </li>
  102.  *      <li>
  103.  *          #6: Extract the credit curve instruments and quotes.
  104.  *      </li>
  105.  *      <li>
  106.  *          #7: Create a parallel hazard shifted credit curve.
  107.  *      </li>
  108.  *      <li>
  109.  *          #8: Create a parallel quote shifted credit curve.
  110.  *      </li>
  111.  *      <li>
  112.  *          #9: Create a node tweaked credit curve.
  113.  *      </li>
  114.  *      <li>
  115.  *          #10: Set a specific default date on the credit curve.
  116.  *      </li>
  117.  *      <li>
  118.  *          #11: Compute the effective survival probability between 2 dates.
  119.  *      </li>
  120.  *      <li>
  121.  *          #12: Compute the effective hazard rate between 2 dates.
  122.  *      </li>
  123.  *  </ul>
  124.  *
  125.  * <br><br>
  126.  *  <ul>
  127.  *      <li><b>Module </b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ComputationalCore.md">Computational Core Module</a></li>
  128.  *      <li><b>Library</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/ComputationSupportLibrary.md">Computation Support</a></li>
  129.  *      <li><b>Project</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/regression/README.md">Regression Engine Core and the Unit Regressors</a></li>
  130.  *      <li><b>Package</b> = <a href = "https://github.com/lakshmiDRIP/DROP/tree/master/src/main/java/org/drip/regression/curve/README.md">Curve Construction/Reconciliation Regression Engine</a></li>
  131.  *  </ul>
  132.  * <br><br>
  133.  *
  134.  * @author Lakshmi Krishnamurthy
  135.  */

  136. public class CreditCurveRegressor implements org.drip.regression.core.RegressorSet {
  137.     private java.lang.String _strCurrency = "";
  138.     private org.drip.state.credit.CreditCurve _cc = null;
  139.     private org.drip.state.discount.MergedDiscountForwardCurve _dc = null;
  140.     private org.drip.analytics.date.JulianDate _dtStart = null;
  141.     private java.lang.String _strRegressionScenario = "org.drip.analytics.curve.CreditCurve";

  142.     private java.util.List<org.drip.regression.core.UnitRegressor> _setRegressors = new
  143.         java.util.ArrayList<org.drip.regression.core.UnitRegressor>();

  144.     /**
  145.      * Do Nothing CreditCurveRegressor constructor.
  146.      */

  147.     public CreditCurveRegressor()
  148.     {
  149.     }

  150.     /*
  151.      * Set up the unit functional regressors for the credit curve regression set
  152.      */
  153.    
  154.     @Override public boolean setupRegressors()
  155.     {
  156.         try {
  157.             /*
  158.              * Testing creation of the Credit Curve from SNAC instruments - implements the pre-regression, the
  159.              *  post-regression, and the actual regression functionality of the UnitRegressorExecutor class.
  160.              */

  161.             _setRegressors.add (new org.drip.regression.core.UnitRegressionExecutor ("CreateSNAC",
  162.                 _strRegressionScenario)
  163.             {
  164.                 private double[] _adblQuotes = new double[5];
  165.                 private java.lang.String[] _astrCalibMeasure = new java.lang.String[5];
  166.                 private org.drip.product.definition.CreditDefaultSwap[] _aCDS = new
  167.                     org.drip.product.definition.CreditDefaultSwap[5];

  168.                 @Override public boolean preRegression()
  169.                 {
  170.                     _strCurrency = "USD";

  171.                     if (null == (_dtStart = org.drip.analytics.date.DateUtil.CreateFromYMD (2010,
  172.                         org.drip.analytics.date.DateUtil.MAY, 12)))
  173.                         return false;

  174.                     if (null == (_dc =
  175.                         org.drip.state.creator.ScenarioDiscountCurveBuilder.ExponentiallyCompoundedFlatRate
  176.                             (_dtStart, _strCurrency, 0.04)))
  177.                         return false;

  178.                     for (int i = 0; i < 5; ++i) {
  179.                         _adblQuotes[i] = 50. * (i + 1);
  180.                         _astrCalibMeasure[i] = "FairPremium";

  181.                         if (null == (_aCDS[i] = org.drip.product.creator.CDSBuilder.CreateSNAC (_dtStart, (i
  182.                             + 1) + "Y", 0.01, "CORP")))
  183.                             return false;
  184.                     }

  185.                     return true;
  186.                 }

  187.                 @Override public boolean execRegression()
  188.                 {
  189.                     return null != (_cc = org.drip.state.creator.ScenarioCreditCurveBuilder.Custom ("CORP",
  190.                         _dtStart, _aCDS, _dc, _adblQuotes, _astrCalibMeasure, 0.4, false));
  191.                 }
  192.             });

  193.             /*
  194.              * Testing creation of the Credit Curve from flat hazard - implements the pre-regression, the
  195.              *  post-regression, and the actual regression functionality of the UnitRegressorExecutor class.
  196.              */

  197.             _setRegressors.add (new org.drip.regression.core.UnitRegressionExecutor ("FromFlatHazard",
  198.                 _strRegressionScenario)
  199.             {
  200.                 private org.drip.state.credit.CreditCurve _ccFromFlatHazard = null;

  201.                 @Override public boolean execRegression()
  202.                 {
  203.                     return null != (_ccFromFlatHazard =
  204.                         org.drip.state.creator.ScenarioCreditCurveBuilder.FlatHazard (_dtStart.julian(),
  205.                             "CORP", "USD", 0.02, 0.4));
  206.                 }

  207.                 @Override public boolean postRegression (
  208.                     final org.drip.regression.core.RegressionRunDetail rnvd)
  209.                 {
  210.                     final int NUM_DC_INSTRUMENTS = 5;
  211.                     double adblHazard[] = new double[NUM_DC_INSTRUMENTS];
  212.                     org.drip.analytics.date.JulianDate adt[] = new
  213.                         org.drip.analytics.date.JulianDate[NUM_DC_INSTRUMENTS];

  214.                     for (int i = 0; i < NUM_DC_INSTRUMENTS; ++i) {
  215.                         try {
  216.                             if (!org.drip.numerical.common.NumberUtil.IsValid (adblHazard[i] =
  217.                                 _ccFromFlatHazard.hazard (_dtStart, (adt[i] = _dtStart.addYears (i + 1)))))
  218.                                 return false;

  219.                             rnvd.set ("HazardRateFromHazardCurve[" + adt[i] + "]",
  220.                                 org.drip.numerical.common.FormatUtil.FormatDouble (adblHazard[i], 1, 4, 1));

  221.                             if (!org.drip.numerical.common.NumberUtil.WithinTolerance (adblHazard[i], 0.02))
  222.                                 return false;
  223.                         } catch (java.lang.Exception e) {
  224.                             e.printStackTrace();

  225.                             return false;
  226.                         }
  227.                     }

  228.                     return true;
  229.                 }
  230.             });

  231.             /*
  232.              * Testing creation of the Credit Curve from flat survival - implements the pre-regression, the
  233.              *  post-regression, and the actual regression functionality of the UnitRegressorExecutor class.
  234.              */

  235.             _setRegressors.add (new org.drip.regression.core.UnitRegressionExecutor ("FromSurvival",
  236.                 _strRegressionScenario)
  237.             {
  238.                 private static final int NUM_DC_INSTRUMENTS = 5;

  239.                 private int _aiDate[] = new int[NUM_DC_INSTRUMENTS];
  240.                 private double _adblSurvival[] = new double[NUM_DC_INSTRUMENTS];
  241.                 private org.drip.state.credit.CreditCurve _ccFromSurvival = null;

  242.                 @Override public boolean preRegression()
  243.                 {
  244.                     for (int i = 0; i < NUM_DC_INSTRUMENTS; ++i) {
  245.                         _aiDate[i] = _dtStart.addYears (i + 1).julian();

  246.                         _adblSurvival[i] = 1. - (i + 1) * 0.1;
  247.                     }

  248.                     return true;
  249.                 }

  250.                 @Override public boolean execRegression()
  251.                 {
  252.                     return null != (_ccFromSurvival =
  253.                         org.drip.state.creator.ScenarioCreditCurveBuilder.Survival (_dtStart.julian(),
  254.                             "CORP", "USD", _aiDate, _adblSurvival, 0.4));
  255.                 }

  256.                 @Override public boolean postRegression (
  257.                     final org.drip.regression.core.RegressionRunDetail rnvd)
  258.                 {
  259.                     double adblSurvivalCalc[] = new double[NUM_DC_INSTRUMENTS];

  260.                     for (int i = 0; i < NUM_DC_INSTRUMENTS; ++i) {
  261.                         try {
  262.                             if (!org.drip.numerical.common.NumberUtil.IsValid (adblSurvivalCalc[i] =
  263.                                 _ccFromSurvival.survival (_aiDate[i])))
  264.                                 return false;

  265.                             org.drip.analytics.date.JulianDate dt = new org.drip.analytics.date.JulianDate
  266.                                 (_aiDate[i]);

  267.                             rnvd.set ("SurvivalFromOriginal[" + dt + "]",
  268.                                 org.drip.numerical.common.FormatUtil.FormatDouble (_adblSurvival[i], 1, 4, 1));

  269.                             rnvd.set ("SurvivalFromSurvival[" + dt + "]",
  270.                                 org.drip.numerical.common.FormatUtil.FormatDouble (adblSurvivalCalc[i], 1, 4, 1));

  271.                             if (!org.drip.numerical.common.NumberUtil.WithinTolerance (adblSurvivalCalc[i],
  272.                                 _adblSurvival[i]))
  273.                                 return false;
  274.                         } catch (java.lang.Exception e) {
  275.                             e.printStackTrace();

  276.                             return false;
  277.                         }
  278.                     }

  279.                     return true;
  280.                 }
  281.             });

  282.             /*
  283.              * Testing creation of the Credit Curve from hazard nodes - implements the pre-regression, the
  284.              *  post-regression, and the actual regression functionality of the UnitRegressorExecutor class.
  285.              */

  286.             _setRegressors.add (new org.drip.regression.core.UnitRegressionExecutor ("FromHazard",
  287.                 _strRegressionScenario)
  288.             {
  289.                 private static final int NUM_DC_INSTRUMENTS = 5;

  290.                 private int _aiDate[] = new int[NUM_DC_INSTRUMENTS];
  291.                 private double _adblHazard[] = new double[NUM_DC_INSTRUMENTS];
  292.                 private org.drip.state.credit.CreditCurve _ccFromHazard = null;

  293.                 @Override public boolean preRegression()
  294.                 {
  295.                     for (int i = 0; i < NUM_DC_INSTRUMENTS; ++i) {
  296.                         _aiDate[i] = _dtStart.addYears (i + 1).julian();

  297.                         _adblHazard[i] = 0.01 * (1. - (i + 1) * 0.1);
  298.                     }

  299.                     return true;
  300.                 }

  301.                 @Override public boolean execRegression()
  302.                 {
  303.                     return null != (_ccFromHazard = org.drip.state.creator.ScenarioCreditCurveBuilder.Hazard
  304.                         (_dtStart, "CORP", "USD", _aiDate, _adblHazard, 0.4));
  305.                 }

  306.                 @Override public boolean postRegression (
  307.                     final org.drip.regression.core.RegressionRunDetail rnvd)
  308.                 {
  309.                     org.drip.analytics.date.JulianDate dt1 = _dtStart;
  310.                     double adblHazardCalc[] = new double[NUM_DC_INSTRUMENTS];

  311.                     for (int i = 0; i < NUM_DC_INSTRUMENTS; ++i) {
  312.                         try {
  313.                             if (!org.drip.numerical.common.NumberUtil.IsValid (adblHazardCalc[i] =
  314.                                 _ccFromHazard.hazard (dt1, dt1.addYears (1))))
  315.                                 return false;

  316.                             org.drip.analytics.date.JulianDate dt2 = dt1.addYears (1);

  317.                             rnvd.set ("HazardFromOriginal[" + dt1 + "-" + dt2 + "]",
  318.                                 org.drip.numerical.common.FormatUtil.FormatDouble (_adblHazard[i], 1, 4, 1));

  319.                             rnvd.set ("HazardFromHazard[" + dt1 + "-" + dt2 + "]",
  320.                                 org.drip.numerical.common.FormatUtil.FormatDouble (adblHazardCalc[i], 1, 4, 1));

  321.                             if (!org.drip.numerical.common.NumberUtil.WithinTolerance (adblHazardCalc[i],
  322.                                 _adblHazard[i]))
  323.                                 return false;

  324.                             dt1 = dt1.addYears (1);
  325.                         } catch (java.lang.Exception e) {
  326.                             e.printStackTrace();

  327.                             return false;
  328.                         }
  329.                     }

  330.                     return true;
  331.                 }
  332.             });

  333.             /*
  334.              * Testing extraction of the credit curve components and quotes - implements the pre-regression, the
  335.              *  post-regression, and the actual regression functionality of the UnitRegressorExecutor class.
  336.              */

  337.             _setRegressors.add (new org.drip.regression.core.UnitRegressionExecutor ("CompAndQuotes",
  338.                 _strRegressionScenario)
  339.             {
  340.                 private org.drip.product.definition.CalibratableComponent[] _aCalibComp = null;

  341.                 @Override public boolean execRegression()
  342.                 {
  343.                     return null != (_aCalibComp = _cc.calibComp()) && 0 != _aCalibComp.length;
  344.                 }

  345.                 @Override public boolean postRegression (
  346.                     final org.drip.regression.core.RegressionRunDetail rnvd)
  347.                 {
  348.                     for (int i = 0; i < _aCalibComp.length; ++i) {
  349.                         org.drip.analytics.date.JulianDate dt = _aCalibComp[i].maturityDate();

  350.                         java.lang.String strCode = _aCalibComp[i].primaryCode();

  351.                         if (null == dt || null == strCode || strCode.isEmpty()) return false;

  352.                         try {
  353.                             rnvd.set ("CompQuote" + "_" + strCode + "[" + dt + "]",
  354.                                 org.drip.numerical.common.FormatUtil.FormatDouble (_cc.manifestMeasure
  355.                                     (strCode).get ("FairPremium"), 1, 4, 1));
  356.                         } catch (java.lang.Exception e) {
  357.                             e.printStackTrace();

  358.                             return false;
  359.                         }
  360.                     }

  361.                     return true;
  362.                 }
  363.             });

  364.             /*
  365.              * Testing creation of a parallel hazard shifted Credit Curve - implements the pre-regression, the
  366.              *  post-regression, and the actual regression functionality of the UnitRegressorExecutor class.
  367.              */

  368.             _setRegressors.add (new org.drip.regression.core.UnitRegressionExecutor
  369.                 ("ParallelHazardShiftedCurve", _strRegressionScenario)
  370.             {
  371.                 private org.drip.state.credit.CreditCurve _ccParallelShifted = null;

  372.                 @Override public boolean execRegression()
  373.                 {
  374.                     if (null == (_ccParallelShifted = (org.drip.state.credit.CreditCurve)
  375.                         _cc.parallelShiftQuantificationMetric (0.0005)))
  376.                         return false;

  377.                     return true;
  378.                 }

  379.                 @Override public boolean postRegression (
  380.                     final org.drip.regression.core.RegressionRunDetail rnvd)
  381.                 {
  382.                     org.drip.product.definition.CalibratableComponent[] aCalibComp =
  383.                         _cc.calibComp();

  384.                     org.drip.analytics.date.JulianDate dt1 = _dtStart;

  385.                     for (int i = 0; i < aCalibComp.length; ++i) {
  386.                         org.drip.analytics.date.JulianDate dt = aCalibComp[i].maturityDate();

  387.                         double dblBaseHazard = java.lang.Double.NaN;
  388.                         double dblShiftedHazard = java.lang.Double.NaN;

  389.                         try {
  390.                             if (!org.drip.numerical.common.NumberUtil.IsValid (dblShiftedHazard =
  391.                                 _ccParallelShifted.hazard (dt1, dt)) ||
  392.                                     !org.drip.numerical.common.NumberUtil.IsValid (dblBaseHazard = _cc.hazard
  393.                                         (dt1, dt)))
  394.                                 return false;
  395.                         } catch (java.lang.Exception e) {
  396.                             e.printStackTrace();

  397.                             return false;
  398.                         }

  399.                         rnvd.set ("BaseCurveHazard[" + dt1 + "-" + dt + "]",
  400.                             org.drip.numerical.common.FormatUtil.FormatDouble (dblBaseHazard, 1, 4, 1));

  401.                         rnvd.set ("ParallelShiftedCurveHazard[" + dt1 + "-" + dt + "]",
  402.                             org.drip.numerical.common.FormatUtil.FormatDouble (dblShiftedHazard, 1, 4, 1));

  403.                         dt = dt1;

  404.                         if (!org.drip.numerical.common.NumberUtil.WithinTolerance (dblBaseHazard + 0.0005,
  405.                             dblShiftedHazard))
  406.                             return false;
  407.                     }

  408.                     return true;
  409.                 }
  410.             });

  411.             /*
  412.              * Testing creation of the parallel quote shifted credit curve - implements the pre-regression, the
  413.              *  post-regression, and the actual regression functionality of the UnitRegressorExecutor class.
  414.              */

  415.             _setRegressors.add (new org.drip.regression.core.UnitRegressionExecutor
  416.                 ("ParallelQuoteShiftedCurve", _strRegressionScenario)
  417.             {
  418.                 private org.drip.state.credit.CreditCurve _ccParallelShifted = null;

  419.                 @Override public boolean execRegression()
  420.                 {
  421.                     return null != (_ccParallelShifted = (org.drip.state.credit.CreditCurve)
  422.                         _cc.parallelShiftManifestMeasure ("FairPremium", 5.));
  423.                 }

  424.                 @Override public boolean postRegression (
  425.                     final org.drip.regression.core.RegressionRunDetail rnvd)
  426.                 {
  427.                     org.drip.product.definition.CalibratableComponent[] aCalibComp =
  428.                         _cc.calibComp();

  429.                     org.drip.analytics.date.JulianDate dt1 = _dtStart;

  430.                     for (int i = 0; i < aCalibComp.length; ++i) {
  431.                         org.drip.analytics.date.JulianDate dt = aCalibComp[i].maturityDate();

  432.                         try {
  433.                             rnvd.set ("BaseCurveQuote[" + dt + "]",
  434.                                 org.drip.numerical.common.FormatUtil.FormatDouble (_cc.manifestMeasure
  435.                                     (aCalibComp[i].primaryCode()).get ("FairPremium"), 1, 5, 1));

  436.                             rnvd.set ("ParallelShiftedCurveQuote[" + dt + "]",
  437.                                 org.drip.numerical.common.FormatUtil.FormatDouble
  438.                                     (_ccParallelShifted.manifestMeasure (aCalibComp[i].primaryCode()).get
  439.                                         ("FairPremium"), 1, 5, 1));

  440.                             dt = dt1;

  441.                             if (!org.drip.numerical.common.NumberUtil.WithinTolerance (_cc.manifestMeasure
  442.                                 (aCalibComp[i].primaryCode()).get ("FairPremium") + 5.,
  443.                                     _ccParallelShifted.manifestMeasure (aCalibComp[i].primaryCode()).get
  444.                                         ("FairPremium")))
  445.                                 return false;
  446.                         } catch (java.lang.Exception e) {
  447.                             e.printStackTrace();

  448.                             return false;
  449.                         }
  450.                     }

  451.                     return true;
  452.                 }
  453.             });

  454.             /*
  455.              * Testing creation of the node tweaked Credit Curve - implements the pre-regression, the
  456.              *  post-regression, and the actual regression functionality of the UnitRegressorExecutor class.
  457.              */

  458.             _setRegressors.add (new org.drip.regression.core.UnitRegressionExecutor ("NodeTweakedCurve",
  459.                 _strRegressionScenario)
  460.             {
  461.                 private static final int TWEAKED_NODE = 0;

  462.                 private org.drip.param.definition.CreditManifestMeasureTweak _cntp = null;
  463.                 private org.drip.state.credit.CreditCurve _ccTweakedCurve = null;

  464.                 @Override public boolean preRegression()
  465.                 {
  466.                     try {
  467.                         _cntp = new org.drip.param.definition.CreditManifestMeasureTweak
  468.                             (org.drip.param.definition.CreditManifestMeasureTweak.CREDIT_TWEAK_NODE_PARAM_QUOTE,
  469.                                 org.drip.param.definition.CreditManifestMeasureTweak.CREDIT_TWEAK_NODE_MEASURE_QUOTE,
  470.                             TWEAKED_NODE, true, 0.1, false);
  471.                     } catch (java.lang.Exception e) {
  472.                         e.printStackTrace();

  473.                         return false;
  474.                     }

  475.                     return true;
  476.                 }

  477.                 @Override public boolean execRegression()
  478.                 {
  479.                     return null != (_ccTweakedCurve = (org.drip.state.credit.CreditCurve)
  480.                         _cc.customTweakManifestMeasure ("FairPremium", _cntp));
  481.                 }

  482.                 @Override public boolean postRegression (
  483.                     final org.drip.regression.core.RegressionRunDetail rnvd)
  484.                 {
  485.                     org.drip.product.definition.CalibratableComponent[] aCalibComp =
  486.                         _cc.calibComp();

  487.                     org.drip.analytics.date.JulianDate dt1 = _dtStart;

  488.                     for (int i = 0; i < aCalibComp.length; ++i) {
  489.                         org.drip.analytics.date.JulianDate dt = aCalibComp[i].maturityDate();

  490.                         double dblBaseHazard = java.lang.Double.NaN;
  491.                         double dblShiftedHazard = java.lang.Double.NaN;

  492.                         try {
  493.                             if (!org.drip.numerical.common.NumberUtil.IsValid (dblShiftedHazard =
  494.                                 _ccTweakedCurve.hazard (dt1, dt)) ||
  495.                                     !org.drip.numerical.common.NumberUtil.IsValid (dblBaseHazard = _cc.hazard
  496.                                         (dt1, dt)))
  497.                                 return false;
  498.                         } catch (Exception e) {
  499.                             e.printStackTrace();

  500.                             return false;
  501.                         }

  502.                         rnvd.set ("UntweakedHazard[" + dt + "]",
  503.                             org.drip.numerical.common.FormatUtil.FormatDouble (dblBaseHazard, 1, 5, 1));

  504.                         rnvd.set ("TweakedHazard[" + dt + "]", org.drip.numerical.common.FormatUtil.FormatDouble
  505.                             (dblShiftedHazard, 1, 5, 1));

  506.                         dt = dt1;
  507.                     }

  508.                     return true;
  509.                 }
  510.             });

  511.             /*
  512.              * Testing creation of the Credit Curve from flat/quoted spread - implements the pre-regression, the
  513.              *  post-regression, and the actual regression functionality of the UnitRegressorExecutor class.
  514.              */

  515.             _setRegressors.add (new org.drip.regression.core.UnitRegressionExecutor ("FlatCurve",
  516.                 _strRegressionScenario)
  517.             {
  518.                 private org.drip.state.credit.CreditCurve _ccFlatCurve = null;

  519.                 @Override public boolean execRegression()
  520.                 {
  521.                     if (null == (_ccFlatCurve = _cc.flatCurve (90., false, 0.35))) return false;

  522.                     return true;
  523.                 }

  524.                 @Override public boolean postRegression (
  525.                     final org.drip.regression.core.RegressionRunDetail rnvd)
  526.                 {
  527.                     final int NUM_DC_INSTRUMENTS = 5;

  528.                     for (int i = 0; i < NUM_DC_INSTRUMENTS; ++i) {
  529.                         org.drip.analytics.date.JulianDate dt = _dtStart.addYears (i + 1);

  530.                         double dblHazard = java.lang.Double.NaN;

  531.                         try {
  532.                             if (!org.drip.numerical.common.NumberUtil.IsValid (dblHazard = _ccFlatCurve.hazard
  533.                                 (dt)))
  534.                                 return false;
  535.                         } catch (java.lang.Exception e) {
  536.                             e.printStackTrace();

  537.                             return false;
  538.                         }

  539.                         rnvd.set ("FlatHazard[" + dt + "]", org.drip.numerical.common.FormatUtil.FormatDouble
  540.                             (dblHazard, 1, 5, 1));
  541.                     }

  542.                     return true;
  543.                 }
  544.             });

  545.             /*
  546.              * Testing setting/removing specific default dates - implements the pre-regression, the
  547.              *  post-regression, and the actual regression functionality of the UnitRegressorExecutor class.
  548.              */

  549.             _setRegressors.add (new org.drip.regression.core.UnitRegressionExecutor ("SpecificDefault",
  550.                 _strRegressionScenario)
  551.             {
  552.                 private int _iSpecificDefaultDate = java.lang.Integer.MIN_VALUE;

  553.                 @Override public boolean preRegression()
  554.                 {
  555.                     return !org.drip.numerical.common.NumberUtil.IsValid (_iSpecificDefaultDate = _dtStart.addYears
  556.                         (2).julian());
  557.                 }

  558.                 @Override public boolean execRegression()
  559.                 {
  560.                     return _cc.setSpecificDefault (_iSpecificDefaultDate);
  561.                 }

  562.                 @Override public boolean postRegression (
  563.                     final org.drip.regression.core.RegressionRunDetail rnvd)
  564.                 {
  565.                     double dblSurvivalProb = java.lang.Double.NaN;

  566.                     org.drip.analytics.date.JulianDate dtSurvival = _dtStart.addYears (3);

  567.                     int iSurvivalDate = dtSurvival.julian();

  568.                     try {
  569.                         if (!org.drip.numerical.common.NumberUtil.IsValid (dblSurvivalProb = _cc.survival
  570.                             (iSurvivalDate)))
  571.                             return false;
  572.                     } catch (Exception e) {
  573.                         e.printStackTrace();

  574.                         return false;
  575.                     }

  576.                     rnvd.set ("SpecificDefaultSetSurvival[" + dtSurvival + "]", "" + dblSurvivalProb);

  577.                     if (!_cc.unsetSpecificDefault()) return false;

  578.                     try {
  579.                         if (!org.drip.numerical.common.NumberUtil.IsValid (dblSurvivalProb = _cc.survival
  580.                             (iSurvivalDate)))
  581.                             return false;
  582.                     } catch (java.lang.Exception e) {
  583.                         e.printStackTrace();

  584.                         return false;
  585.                     }

  586.                     rnvd.set ("SpecificDefaultUnsetSurvival[" + dtSurvival + "]", "" + dblSurvivalProb);

  587.                     return true;
  588.                 }
  589.             });

  590.             /*
  591.              * Testing calculation of effective survival between2 dates - implements the pre-regression, the
  592.              *  post-regression, and the actual regression functionality of the UnitRegressorExecutor class.
  593.              */

  594.             _setRegressors.add (new org.drip.regression.core.UnitRegressionExecutor ("EffectiveSurvival",
  595.                 _strRegressionScenario)
  596.             {
  597.                 private static final int NUM_DC_INSTRUMENTS = 5;

  598.                 private int _aiDate[] = new int[NUM_DC_INSTRUMENTS];
  599.                 private double _adblSurvival[] = new double[NUM_DC_INSTRUMENTS];

  600.                 @Override public boolean preRegression()
  601.                 {
  602.                     for (int i = 0; i < NUM_DC_INSTRUMENTS; ++i)
  603.                         _aiDate[i] = _dtStart.addYears (i + 1).julian();

  604.                     return true;
  605.                 }

  606.                 @Override public boolean execRegression()
  607.                 {
  608.                     for (int i = 0; i < NUM_DC_INSTRUMENTS; ++i) {
  609.                         try {
  610.                             if (!org.drip.numerical.common.NumberUtil.IsValid (_adblSurvival[i] =
  611.                                 _cc.effectiveSurvival ((i + 1) + "Y", (i + 2) + "Y")))
  612.                                 return false;
  613.                         } catch (java.lang.Exception e) {
  614.                             e.printStackTrace();

  615.                             return false;
  616.                         }
  617.                     }

  618.                     return true;
  619.                 }

  620.                 @Override public boolean postRegression (
  621.                     final org.drip.regression.core.RegressionRunDetail rnvd)
  622.                 {
  623.                     for (int i = 0; i < NUM_DC_INSTRUMENTS; ++i) {
  624.                         try {
  625.                             rnvd.set ("EffectiveSurvival[" + new org.drip.analytics.date.JulianDate
  626.                                 (_aiDate[i]) + "]", org.drip.numerical.common.FormatUtil.FormatDouble
  627.                                     (_adblSurvival[i], 1, 4, 1));
  628.                         } catch (java.lang.Exception e) {
  629.                             e.printStackTrace();

  630.                             return false;
  631.                         }
  632.                     }

  633.                     return true;
  634.                 }
  635.             });

  636.             /*
  637.              * Testing calculation of effective recovery between2 dates - implements the pre-regression, the
  638.              *  post-regression, and the actual regression functionality of the UnitRegressorExecutor class.
  639.              */

  640.             _setRegressors.add (new org.drip.regression.core.UnitRegressionExecutor ("EffectiveRecovery",
  641.                 _strRegressionScenario)
  642.             {
  643.                 private static final int NUM_DC_INSTRUMENTS = 5;

  644.                 private double _adblEffectiveRecovery[] = new double[NUM_DC_INSTRUMENTS];

  645.                 @Override public boolean execRegression()
  646.                 {
  647.                     for (int i = 0; i < NUM_DC_INSTRUMENTS; ++i) {
  648.                         try {
  649.                             if (!org.drip.numerical.common.NumberUtil.IsValid (_adblEffectiveRecovery[i] =
  650.                                 _cc.effectiveRecovery ((i + 1) + "Y", (i + 2) + "Y")))
  651.                                 return false;
  652.                         } catch (java.lang.Exception e) {
  653.                             e.printStackTrace();

  654.                             return false;
  655.                         }
  656.                     }

  657.                     return true;
  658.                 }

  659.                 @Override public boolean postRegression (
  660.                     final org.drip.regression.core.RegressionRunDetail rnvd)
  661.                 {
  662.                     for (int i = 0; i < NUM_DC_INSTRUMENTS; ++i) {
  663.                         try {
  664.                             rnvd.set ("EffectiveRecovery[" + (i + 1) + "Y-" + (i + 2) + "Y]",
  665.                                 org.drip.numerical.common.FormatUtil.FormatDouble (_adblEffectiveRecovery[i], 1,
  666.                                     4, 1));

  667.                             rnvd.set ("CurveRecovery[" + (i + 1) + "Y-" + (i + 2) + "Y]",
  668.                                 org.drip.numerical.common.FormatUtil.FormatDouble (_cc.recovery ((i + 1) + "Y"),
  669.                                     1, 4, 1) + "-" + org.drip.numerical.common.FormatUtil.FormatDouble
  670.                                         (_cc.recovery ((i + 2) + "Y"), 1, 4, 1));
  671.                         } catch (java.lang.Exception e) {
  672.                             e.printStackTrace();

  673.                             return false;
  674.                         }
  675.                     }

  676.                     return true;
  677.                 }
  678.             });
  679.         } catch (Exception e) {
  680.             e.printStackTrace();

  681.             return false;
  682.         }

  683.         return true;
  684.     }

  685.     @Override public java.util.List<org.drip.regression.core.UnitRegressor> getRegressorSet()
  686.     {
  687.         return _setRegressors;
  688.     }

  689.     @Override public java.lang.String getSetName()
  690.     {
  691.         return _strRegressionScenario;
  692.     }
  693. }