You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You may want to consider using ObjectifyWithAttributes instead of Objectify where suitable. It is somewhat more efficient. Perhaps it doesn't matter for you now, but if you create a lot of objects, it can add up.
type := NewType( CollectionsFamily( GeneralMappingsFamily(
ElementsFamily( FamilyObj( M ) ),
ElementsFamily( FamilyObj( N ) ) ) ),
IsPathAlgebraMatModuleHomomorphism and IsPathAlgebraMatModuleHomomorphismRep and IsWholeFamily );
map := rec( maps := linmaps );
ObjectifyWithAttributes(
map, type,
PathAlgebraOfMatModuleMap, A,
Source, M,
Range, N
);
The text was updated successfully, but these errors were encountered:
You may want to consider using
ObjectifyWithAttributes
instead ofObjectify
where suitable. It is somewhat more efficient. Perhaps it doesn't matter for you now, but if you create a lot of objects, it can add up.For example, this could
could be rewritten like this:
The text was updated successfully, but these errors were encountered: