[Mathlib-commitlog] SF.net SVN: mathlib:[731] JMathLib/trunk/src/jmathlib/core/functions/ External
Status: Beta
Brought to you by:
st_mueller
|
From: <st_...@us...> - 2009-01-23 20:11:18
|
Revision: 731
http://mathlib.svn.sourceforge.net/mathlib/?rev=731&view=rev
Author: st_mueller
Date: 2009-01-23 20:11:12 +0000 (Fri, 23 Jan 2009)
Log Message:
-----------
changed signature of evaluate(Token[] operands)
to
evaluate(Token[] operands, GlobalValues globals)
Modified Paths:
--------------
JMathLib/trunk/src/jmathlib/core/functions/ExternalElementWiseFunction.java
Modified: JMathLib/trunk/src/jmathlib/core/functions/ExternalElementWiseFunction.java
===================================================================
--- JMathLib/trunk/src/jmathlib/core/functions/ExternalElementWiseFunction.java 2009-01-23 20:09:07 UTC (rev 730)
+++ JMathLib/trunk/src/jmathlib/core/functions/ExternalElementWiseFunction.java 2009-01-23 20:11:12 UTC (rev 731)
@@ -1,5 +1,15 @@
+/*
+ * This file is part or JMathLib
+ *
+ * Check it out at http://www.jmathlib.de
+ *
+ * Author: Stefan Mueller (st...@he...)
+ * (c) 2008, 2009
+ */
+
package jmathlib.core.functions;
+import jmathlib.core.interpreter.GlobalValues;
import jmathlib.core.tokens.numbertokens.DoubleNumberToken;
import jmathlib.core.tokens.OperandToken;
import jmathlib.core.tokens.Token;
@@ -11,9 +21,10 @@
/**
* standard function for evaluation of general external functions
* @param operands
+ * @param pointer to the global values (interpreter, function manager, graphics,...)
* @return
*/
- public OperandToken evaluate(Token[] operands)
+ public OperandToken evaluate(Token[] operands, GlobalValues globals)
{
// function works for one argument only
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|