diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2007-01-24 12:22:57 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2007-01-24 12:22:57 +0000 |
commit | 80e1738a8474b9761036b73a4cc0180e6cee080c (patch) | |
tree | 97748bfef9deed057c42504a9056f60fbd1a5757 /tests/matrix_test.php | |
parent | 937d04f2094624af45c0241bc75f3cbef4182c70 (diff) | |
download | zetacomponents-graph-80e1738a8474b9761036b73a4cc0180e6cee080c.zip zetacomponents-graph-80e1738a8474b9761036b73a4cc0180e6cee080c.tar.gz |
- Fixed issue #9950: Improved ezcGraphPolynom::__toString method for more
exact output
# Based on a patch by Matthew Carroll
Diffstat (limited to 'tests/matrix_test.php')
-rw-r--r-- | tests/matrix_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/matrix_test.php b/tests/matrix_test.php index 7c94209..ec54772 100644 --- a/tests/matrix_test.php +++ b/tests/matrix_test.php @@ -315,7 +315,7 @@ class ezcGraphMatrixTest extends ezcTestCase $polynom = $a->solveNonlinearEquatation( $b ); $this->assertEquals( - '-0.12 * x^2 + 0.02 * x + 0.35', + '-1.15e-1 x^2 + 1.92e-2 x + 3.46e-1', $polynom->__toString() ); } |