Skip to content
Snippets Groups Projects

fixe typo from lables to labels

Merged Bryan Brancotte requested to merge typo-lables into main
3 files
+ 14
14
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 4
4
@@ -121,13 +121,13 @@ class Graph():
def get_specification_graph(self, filename = "specification_graph", render_graphs = True):
generate_graph(self.get_output_dir()/'graphs'/filename, self.full_dico, render_graphs = render_graphs)
def get_specification_graph_wo_lables(self, filename = "specification_graph_wo_labels", render_graphs = True):
def get_specification_graph_wo_labels(self, filename = "specification_graph_wo_labels", render_graphs = True):
generate_graph(self.get_output_dir()/'graphs'/filename, self.full_dico, label_edge=False, label_node=False, render_graphs = render_graphs)
def get_specification_graph_wo_orphan_operations(self, filename = "specification_wo_orphan_operations", render_graphs = True):
generate_graph(self.get_output_dir()/'graphs'/filename, graph_dico_wo_orphan_operations(self.full_dico), render_graphs = render_graphs)
def get_specification_graph_wo_orphan_operations_wo_lables(self, filename = "specification_wo_orphan_operations_wo_labels", render_graphs = True):
def get_specification_graph_wo_orphan_operations_wo_labels(self, filename = "specification_wo_orphan_operations_wo_labels", render_graphs = True):
generate_graph(self.get_output_dir()/'graphs'/filename, graph_dico_wo_orphan_operations(self.full_dico), label_edge=False, label_node=False, render_graphs = render_graphs)
def get_process_dependency_graph(self):
@@ -268,13 +268,13 @@ class Graph():
def render_dependency_graph(self, filename = "dependency_graph", render_graphs = True):
generate_graph(self.get_output_dir()/'graphs'/filename, self.dico_wo_branch_operation, render_graphs = render_graphs)
def get_dependency_graph_wo_lables(self, filename = "dependency_graph_wo_lables", render_graphs = True):
def get_dependency_graph_wo_labels(self, filename = "dependency_graph_wo_labels", render_graphs = True):
generate_graph(self.get_output_dir()/'graphs'/filename, self.dico_wo_branch_operation, label_edge=False, label_node=False, render_graphs = render_graphs)
def get_dependency_graph_wo_orphan_operations(self, filename = "dependency_graph_wo_orphan_operations", render_graphs = True):
generate_graph(self.get_output_dir()/'graphs'/filename, graph_dico_wo_orphan_operations(self.dico_wo_branch_operation), render_graphs = render_graphs)
def get_dependency_graph_wo_orphan_operations_wo_lables(self, filename = "dependency_graph_wo_orphan_operations_wo_lables", render_graphs = True):
def get_dependency_graph_wo_orphan_operations_wo_labels(self, filename = "dependency_graph_wo_orphan_operations_wo_labels", render_graphs = True):
generate_graph(self.get_output_dir()/'graphs'/filename, graph_dico_wo_orphan_operations(self.dico_wo_branch_operation), label_edge=False, label_node=False, render_graphs = render_graphs)
Loading