[Mathlib-commitlog] SF.net SVN: mathlib:[782] JMathLib/trunk/src/jmathlib/core/interpreter/ Parser.
Status: Beta
Brought to you by:
st_mueller
|
From: <st_...@us...> - 2009-01-26 19:47:31
|
Revision: 782
http://mathlib.svn.sourceforge.net/mathlib/?rev=782&view=rev
Author: st_mueller
Date: 2009-01-26 19:47:27 +0000 (Mon, 26 Jan 2009)
Log Message:
-----------
removed debug output
Modified Paths:
--------------
JMathLib/trunk/src/jmathlib/core/interpreter/Parser.java
Modified: JMathLib/trunk/src/jmathlib/core/interpreter/Parser.java
===================================================================
--- JMathLib/trunk/src/jmathlib/core/interpreter/Parser.java 2009-01-25 22:23:40 UTC (rev 781)
+++ JMathLib/trunk/src/jmathlib/core/interpreter/Parser.java 2009-01-26 19:47:27 UTC (rev 782)
@@ -1506,15 +1506,14 @@
boolean numberIndicatorB = false; //
boolean singleIndicatorB = false; //
boolean imagIndicatorB = false; //
- System.out.println("*+*");
+
// remove spaces between "[" and first element (e.g. [ 2,3] -> [2,3]
while (isExpectedDelimiter(peekNextToken(MATRIX), ' '))
getNextToken();
- System.out.println("*++*");
+
// parse code of matrices (e.g. [1,2,3;4,5,6] or [1 sin(2) 3; 4 5+1 a]
while(!endMatrix)
{
- System.out.println("**");
// get next parameter (whitespaces are treated as delimiter, too)
OperandToken nextParameter = parseArithExpression(MATRIX);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|