@@ -3088,7 +3088,7 @@ def is_chordal_bipartite(self, certificate=False):
30883088 pewveo .extend (certif )
30893089 return True , pewveo
30903090 return all (gg .is_chordal_bipartite () for gg in
3091- self .connected_components_subgraphs ())
3091+ self .connected_components_subgraphs ())
30923092
30933093 left = [v for v , c in bipartite_certificate .items () if c == 0 ]
30943094 right = [v for v , c in bipartite_certificate .items () if c == 1 ]
@@ -3756,8 +3756,8 @@ def summand(stack, dsf, sizes):
37563756 # edges in stack to current subgraph.
37573757 if not stack :
37583758 return p .monomial (_Partitions (sorted (
3759- [s for v , s in sizes .items () if dsf [v ] is None ],
3760- reverse = True )))
3759+ [s for v , s in sizes .items () if dsf [v ] is None ],
3760+ reverse = True )))
37613761 ret = p .zero ()
37623762 e = stack .pop ()
37633763 u = find (dsf , e [0 ])
@@ -7732,7 +7732,7 @@ def modular_decomposition(self, algorithm=None, style="tuple"):
77327732 PARALLEL[5[], 6[], 7[]]]
77337733 """
77347734 from sage .graphs .graph_decompositions .modular_decomposition import \
7735- modular_decomposition
7735+ modular_decomposition
77367736
77377737 D = modular_decomposition (self , algorithm = algorithm )
77387738
@@ -8033,7 +8033,7 @@ def is_prime(self, algorithm=None):
80338033 True
80348034 """
80358035 from sage .graphs .graph_decompositions .modular_decomposition import \
8036- modular_decomposition
8036+ modular_decomposition
80378037
80388038 if self .order () <= 1 :
80398039 return True
@@ -9565,7 +9565,7 @@ def is_projective_planar(self, return_map=False):
95659565
95669566 EXAMPLES:
95679567
9568- The Peterson graph is a known projective planar graph::
9568+ The Petersen graph is a known projective planar graph::
95699569
95709570 sage: P = graphs.PetersenGraph()
95719571 sage: P.is_projective_planar() # long time
@@ -9731,6 +9731,6 @@ def is_projective_planar(self, return_map=False):
97319731 "is_matching_covered" : "Matching" ,
97329732 "matching" : "Matching" ,
97339733 "perfect_matchings" : "Matching"
9734- }
9734+ }
97359735
97369736__doc__ = __doc__ .replace ("{INDEX_OF_METHODS}" , gen_thematic_rest_table_index (Graph , _additional_categories ))
0 commit comments