diff options
-rw-r--r-- | src/ChangeLog | 4 | ||||
-rw-r--r-- | src/algebra/matcat.spad.pamphlet | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 91302ecf..30febf85 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,9 @@ 2013-05-19 Gabriel Dos Reis <gdr@integrable-solutions.net> + * algebra/matcat.spad.pamphlet: Use ShallowlyMutableAggregate. + +2013-05-19 Gabriel Dos Reis <gdr@integrable-solutions.net> + * algebra/aggcat2.spad.pamphlet: Use ShallowlyMutableAggregate. 2013-05-19 Gabriel Dos Reis <gdr@integrable-solutions.net> diff --git a/src/algebra/matcat.spad.pamphlet b/src/algebra/matcat.spad.pamphlet index 530a083a..6b4a56d5 100644 --- a/src/algebra/matcat.spad.pamphlet +++ b/src/algebra/matcat.spad.pamphlet @@ -493,7 +493,7 @@ MatrixCategory(R,Row,Col): Category == Definition where --convert [convert('matrix)@InputForm, --convert listOfLists x]$List(InputForm) - if Col has shallowlyMutable then + if Col has ShallowlyMutableAggregate R then x:% * v:Col == ncols(x) ~= #v => @@ -507,7 +507,7 @@ MatrixCategory(R,Row,Col): Category == Definition where sum w - if Row has shallowlyMutable then + if Row has ShallowlyMutableAggregate R then v:Row * x:% == nrows(x) ~= #v => |