/** * Code by Daniel Rinehart * Created for CSG260 Fall 2006 with Karl Lieberherr */ package edu.neu.ccs.satsolver; public class MockPolynomial implements PolynomialI { private double coefficients[]; public MockPolynomial(double coefficients[]) { this.coefficients = coefficients; } public double getCoefficient(int degree) { return coefficients[degree]; } }