Skip to content

Commit fc6248b

Browse files
committed
update graph legend text
1 parent 33d0d0f commit fc6248b

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

robotmbt/visualise/graphs/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,19 +33,19 @@ class ScenarioGraph(AbstractGraph[ScenarioInfo, None]):
3333

3434
@staticmethod
3535
def get_legend_info_final_trace_node() -> str:
36-
return "Executed Scenario (in final trace)"
36+
return "Scenario (part of trace)"
3737

3838
@staticmethod
3939
def get_legend_info_other_node() -> str:
40-
return "Executed Scenario (backtracked)"
40+
return "Scenario (not in trace)"
4141

4242
@staticmethod
4343
def get_legend_info_final_trace_edge() -> str:
44-
return "Execution Flow (final trace)"
44+
return "path included in trace"
4545

4646
@staticmethod
4747
def get_legend_info_other_edge() -> str:
48-
return "Execution Flow (backtracked)"
48+
return "not selected for trace"
4949

5050
@staticmethod
5151
def get_tooltip_name() -> str:

robotmbt/visualise/graphs/scenariodeltavaluegraph.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,19 +70,19 @@ def create_edge_label(info: None) -> str:
7070

7171
@staticmethod
7272
def get_legend_info_final_trace_node() -> str:
73-
return "Executed Scenario w/ Changes in Execution State (in final trace)"
73+
return "Scenario + effect on model (part of trace)"
7474

7575
@staticmethod
7676
def get_legend_info_other_node() -> str:
77-
return "Executed Scenario w/ Changes in Execution State (backtracked)"
77+
return "Scenario + effect on model (not in trace)"
7878

7979
@staticmethod
8080
def get_legend_info_final_trace_edge() -> str:
81-
return "Execution Flow (final trace)"
81+
return "path included in trace"
8282

8383
@staticmethod
8484
def get_legend_info_other_edge() -> str:
85-
return "Execution Flow (backtracked)"
85+
return "not selected for trace"
8686

8787
@staticmethod
8888
def get_tooltip_name() -> str:

robotmbt/visualise/graphs/scenariograph.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,19 +60,19 @@ def create_edge_label(info: None) -> str:
6060

6161
@staticmethod
6262
def get_legend_info_final_trace_node() -> str:
63-
return "Executed Scenario (in final trace)"
63+
return "Scenario (part of trace)"
6464

6565
@staticmethod
6666
def get_legend_info_other_node() -> str:
67-
return "Executed Scenario (backtracked)"
67+
return "Scenario (not in trace)"
6868

6969
@staticmethod
7070
def get_legend_info_final_trace_edge() -> str:
71-
return "Execution Flow (final trace)"
71+
return "path included in trace"
7272

7373
@staticmethod
7474
def get_legend_info_other_edge() -> str:
75-
return "Execution Flow (backtracked)"
75+
return "not selected for trace"
7676

7777
@staticmethod
7878
def get_tooltip_name() -> str:

0 commit comments

Comments
 (0)