PolynomialEntry Class Reference

PolynomialEntry container data entry for scalars. Items are stored in a list of Tuple2's. Data is input in the form, e.g. for an entry <entryName> that describes y = x^2 + 2x^3. More...

Detailed Description

PolynomialEntry container data entry for scalars. Items are stored in a list of Tuple2's. Data is input in the form, e.g. for an entry <entryName> that describes y = x^2 + 2x^3.

Inline specification:

    <entryName>  polynomial
    (
        (1  2)
        (2  3)
    );

Dictionary format:

    <entryName>
    {
        type   polynomial;
        coeffs
        (
            (1 2)
            (2 3)
        );
    }
Source files

The documentation for this class was generated from the following file: