Hi
I have tried to create a bind between a subsystem the system.
package BIND_Test {
port def power_port;
part def SystemDef {
port power_input :power_port;
}
part def SubSystemDef {
port power_in :power_port;
}
part System : SystemDef {
part sub_system1 : SubSystemDef;
part sub_system2 : SubSystemDef;
bind System.power_input = sub_system1.power_in;
}
}
In syside following diagram is generated.
What is the reason for the double connection to sub_system1 and sub_system2 to the power_input port?
