Package com.opengamma.analytics.math.matrix

Examples of com.opengamma.analytics.math.matrix.ColtMatrixAlgebra


  }

  @Test
  public void testEqualsAndHashCode() {
    final DeltaGammaCovarianceMatrixSkewnessCalculator f1 = new DeltaGammaCovarianceMatrixSkewnessCalculator(ALGEBRA);
    final DeltaGammaCovarianceMatrixSkewnessCalculator f2 = new DeltaGammaCovarianceMatrixSkewnessCalculator(new ColtMatrixAlgebra());
    assertEquals(f1, F);
    assertEquals(f1.hashCode(), F.hashCode());
    assertFalse(f1.equals(f2));
  }
View Full Code Here

TOP

Related Classes of com.opengamma.analytics.math.matrix.ColtMatrixAlgebra

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.