/* * JAME 6.2.1 * http://jame.sourceforge.net * * Copyright 2001, 2016 Andrea Medeghini * * This file is part of JAME. * * JAME is an application for creating fractals and other graphics artifacts. * * JAME is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * JAME is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with JAME. If not, see <http://www.gnu.org/licenses/>. * */ package net.sf.jame.contextfree.parser; import org.antlr.v4.runtime.Token; class ASTReal extends ASTExpression { private double value; private String text; public ASTReal(double value, Token location) { super(true, false, EExpType.NumericType, location); this.value = value; isNatural = Math.floor(value) == value && value >= 0 && value < 9007199254740992.0; locality = ELocality.PureLocal; } public ASTReal(String text, boolean negative, Token location) { super(true, false, EExpType.NumericType, location); if (negative) { this.text = "-" + text; this.value = Double.parseDouble(text); } else { this.text = text; this.value = Double.parseDouble(text); } isNatural = Math.floor(value) == value && value >= 0 && value < 9007199254740992.0; locality = ELocality.PureLocal; } public String getText() { return text; } public void setText(String text) { this.text = text; } public double getValue() { return value; } @Override public void entropy(StringBuilder e) { e.append(text); } @Override public int evaluate(double[] result, int length, RTI rti) { if (result != null && length < 1) { return -1; } if (result != null) { result[0] = value; } return 1; } }