From 095f4fbf219bb155c758bbda5a373a70fe6ca91a Mon Sep 17 00:00:00 2001 From: Jens Vollinga Date: Tue, 31 Jul 2007 16:57:48 +0000 Subject: [PATCH] Fixed error in examples for match. --- doc/tutorial/ginac.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tutorial/ginac.texi b/doc/tutorial/ginac.texi index 8f10e13b..e05f6693 100644 --- a/doc/tutorial/ginac.texi +++ b/doc/tutorial/ginac.texi @@ -4446,7 +4446,7 @@ FAIL > match((a+b)*(a+c),($1+b)*($1+c)); @{$1==a@} > match((a+b)*(a+c),(a+$1)*(a+$2)); -@{$1==c,$2==b@} +@{$1==b,$2==c@} (Unpredictable. The result might also be [$1==c,$2==b].) > match((a+b)*(a+c),($1+$2)*($1+$3)); (The result is undefined. Due to the sequential nature of the algorithm -- 2.44.0