Results 21 comments of Hisashi Miyashita

Oh, I thought this discussion thread is on GitHub issues. Please use the SysML v2 Release Google Group if you want to continue. It seems you understand most of my...

By this fix, the example above is correctly rendered: ![Screenshot 2024-06-23 at 12 23 07 AM](https://github.com/Systems-Modeling/SysML-v2-Pilot-Implementation/assets/10537/a5bd21e5-176d-4a01-8e51-a6c3e9d68430)

Since this fix corrected the algorithm to handle redefinitions, I also checked about it. For example, ``` package TestRedef2 { action a1 { action a11; } action a1x { action...

Thank you for your valuable suggestion. I think I could do what you requested. Without `SHOWINHERITED`, the result would be: ![image](https://github.com/user-attachments/assets/dd293fd1-436b-4956-bb73-d81ffcf15683)

I also want to fix ST6RI-784 here if you are ok because Sandy reported and I would like to fix it quickly. This is actually a silly mistake I made.

In order to test redefining redefined target, I slightly improved `TestRedef2`: ``` package TestRedef2 { action a1 { action a11; } action a1x { action a110; } action a2 :>...

By f8bd28c, ``` package TestSubsetting1 { part p0 { perform a1; part p01 { perform a1.a01; } } action a1 { action a01; } } ``` gives ![image](https://github.com/user-attachments/assets/4a3f909d-4e74-4296-9e49-30c61ca95e4a) This correctly...

Also ``` package TestSubsetting2 { part p0 { part p01 :> p1; part p02 { part p021 :> p01.p10; } } part p1 { part p10; } } ``` is...

I forgot to say that set_local_config() does not work properly if name_or_uri is **None** but global_config_uri is effective. In that case, simply skip the code to handle `global_config_uri`

@barny thank you for your reply. In my understanding, GC is actually a tree although we cannot get it from gcapi. Instead `[GetFlatListOfContributionsForGcHiearchy](https://jazz.net/gc/doc/scenario?id=GetFlatListOfContributionsForGcHiearchy)` returns a flat list that ensures the...