From: Jens Vollinga Date: Tue, 31 Jul 2007 16:57:48 +0000 (+0000) Subject: Fixed error in examples for match. X-Git-Tag: release_1-4-0~16 X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=commitdiff_plain;h=095f4fbf219bb155c758bbda5a373a70fe6ca91a Fixed error in examples for match. --- 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