All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jscl.math.operator.Quote Maven / Gradle / Ivy

There is a newer version: 2.4.17
Show newest version
package jscl.math.operator;

import jscl.math.Generic;
import jscl.math.Variable;

public class Quote extends Operator {
    public Quote(Generic expression) {
        super("quote",new Generic[] {expression});
    }

    public Generic compute() {
        return parameter[0];
    }

    public Generic expand() {
        return compute();
    }

    protected Variable newinstance() {
        return new Quote(null);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy