kendrick icon indicating copy to clipboard operation
kendrick copied to clipboard

Why not possible to do a tensor sum of a concern with another concern?

Open SergeStinckwich opened this issue 3 years ago • 3 comments

This is possible to do a tensor sum (integrate:) a model with a concern:

model := KEModel new.
concernA := KEModelPart new.
concernB := KEModelPart new.
model integrate: concernA.
model integrate: concernB.

but not the reverse:

concernA integrate: concernB.

because integrate: is not defined on KEModelPart

SergeStinckwich avatar Aug 26 '20 08:08 SergeStinckwich