Example usage for org.jfree.data.function PolynomialFunction2D hashCode

List of usage examples for org.jfree.data.function PolynomialFunction2D hashCode

Introduction

In this page you can find the example usage for org.jfree.data.function PolynomialFunction2D hashCode.

Prototype

@Override
public int hashCode() 

Source Link

Document

Returns a hash code for this instance.

Usage

From source file:org.jfree.data.function.PolynomialFunction2DTest.java

/**
 * Objects that are equal should have the same hash code otherwise FindBugs
 * will tell on us.../*from ww  w . j a va  2 s  .c o  m*/
 */
@Test
public void testHashCode() {
    PolynomialFunction2D f1 = new PolynomialFunction2D(new double[] { 1.0, 2.0 });
    PolynomialFunction2D f2 = new PolynomialFunction2D(new double[] { 1.0, 2.0 });
    assertEquals(f1.hashCode(), f2.hashCode());

}