Open dinkelbachjan opened 1 year ago
Marking as override final
is not feasible yet, since several composite components (e.g. DP_Ph1_Transformer.h
) do override mnaComp...
methods. It needs to be double-checked whether this is really required in all cases, or whether instead mnaParent...
can be used instead and the override final
marking realized.
Probably override final
limits flexibility to much. Nonetheless, double-check whether composite components could use mnaParent...
instead of mnaComp...
A developer of a certain
CompositePowerComp
should implement custom behaviours forInitialize
,ApplySystemMatrixStamp
etc. by means of themnaParent...
methods and not by means of themnaComp...
methods of the composite component class. So I would propose to use hereoverride final
for allmnaComp...
methods.