Examples of ColtMatrixAlgebra


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
Copyright © 2018 www.massapi.com. 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.