Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit b6db584

Browse files
committed
trac #34079: pycodestyle cleanup
1 parent f8df808 commit b6db584

6 files changed

+90
-74
lines changed

src/sage/graphs/hypergraph_generators.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
---------------------
3232
"""
3333

34+
3435
class HypergraphGenerators():
3536
r"""
3637
A class consisting of constructors for common hypergraphs.
@@ -181,7 +182,7 @@ def nauty(self, number_of_sets, number_of_vertices,
181182
nauty_input += " -d" + str(vertex_min_degree) + ":" + str(set_min_size)
182183
nauty_input += " -D" + str(vertex_max_degree) + ":" + str(set_max_size)
183184

184-
nauty_input += " " + str(number_of_vertices) + " " + str(number_of_sets) + " "
185+
nauty_input += " " + str(number_of_vertices) + " " + str(number_of_sets) + " "
185186

186187
sp = subprocess.Popen(shlex.quote(genbgL_path) + " {0}".format(nauty_input), shell=True,
187188
stdin=subprocess.PIPE, stdout=subprocess.PIPE,

src/sage/graphs/independent_sets.pyx

+5-4
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ cdef inline int ismaximal(binary_matrix_t g, int n, bitset_t s):
2828

2929
return True
3030

31+
3132
cdef class IndependentSets:
3233
r"""
3334
The set of independent sets of a graph.
@@ -256,7 +257,7 @@ cdef class IndependentSets:
256257
count += 1
257258

258259
if not self.count_only:
259-
yield [self.vertices[j] for j in range(i + 1) if bitset_in(tmp,j)]
260+
yield [self.vertices[j] for j in range(i + 1) if bitset_in(tmp, j)]
260261
continue
261262

262263
else:
@@ -380,11 +381,11 @@ cdef class IndependentSets:
380381
try:
381382
bitset_set_first_n(s, 0)
382383

383-
for I in S:
384+
for v in S:
384385
try:
385-
i = self.vertex_to_int[I]
386+
i = self.vertex_to_int[v]
386387
except KeyError:
387-
raise ValueError(str(I) + " is not a vertex of the graph")
388+
raise ValueError(str(v) + " is not a vertex of the graph")
388389

389390
# Adding the new vertex to s
390391
bitset_add(s, i)

src/sage/graphs/isgci.py

+51-38
Original file line numberDiff line numberDiff line change
@@ -396,22 +396,24 @@ class is defined by the exclusion of subgraphs, one can write a generic
396396
from sage.structure.unique_representation import CachedRepresentation, UniqueRepresentation
397397
from sage.misc.unknown import Unknown
398398
from sage.env import GRAPHS_DATA_DIR
399+
from sage.misc.cachefunc import cached_method
399400

400401
import os
401402
import zipfile
402403
from urllib.request import urlopen
403404
from ssl import create_default_context as default_context
404405

405-
#*****************************************************************************
406+
# ****************************************************************************
406407
# Copyright (C) 2011 Nathann Cohen <[email protected]>
407408
#
408409
# Distributed under the terms of the GNU General Public License (GPL)
409-
# http://www.gnu.org/licenses/
410-
#*****************************************************************************
410+
# https://www.gnu.org/licenses/
411+
# ****************************************************************************
411412

412413
_XML_FILE = "isgci_sage.xml"
413414
_SMALLGRAPHS_FILE = "smallgraphs.txt"
414415

416+
415417
class GraphClass(SageObject, CachedRepresentation):
416418
r"""
417419
An instance of this class represents a Graph Class, matching some entry in
@@ -437,7 +439,7 @@ class GraphClass(SageObject, CachedRepresentation):
437439
"""
438440
def __init__(self, name, gc_id, recognition_function=None):
439441
r"""
440-
Class constructor
442+
Class constructor.
441443
442444
INPUT:
443445
@@ -460,7 +462,7 @@ class represented by ``gc_id`` ?*
460462

461463
def _repr_(self):
462464
r"""
463-
Returns a short description of the class
465+
Return a short description of the class.
464466
465467
EXAMPLES::
466468
@@ -471,7 +473,7 @@ def _repr_(self):
471473

472474
def __hash__(self):
473475
r"""
474-
Returns the class' ID hash
476+
Return the class' ID hash.
475477
476478
EXAMPLES::
477479
@@ -482,7 +484,7 @@ def __hash__(self):
482484

483485
def __le__(self, other):
484486
r"""
485-
<= operator
487+
<= operator.
486488
487489
EXAMPLES::
488490
@@ -493,22 +495,22 @@ def __le__(self, other):
493495

494496
def __ge__(self, other):
495497
r"""
496-
>= operator
498+
>= operator.
497499
498500
EXAMPLES::
499501
500502
sage: graph_classes.Chordal >= graph_classes.Tree
501503
True
502504
"""
503505
inclusion_digraph = GraphClasses().inclusion_digraph()
504-
if inclusion_digraph.shortest_path(self._gc_id,other._gc_id):
506+
if inclusion_digraph.shortest_path(self._gc_id, other._gc_id):
505507
return True
506508
else:
507509
return Unknown
508510

509511
def __eq__(self, other):
510512
r"""
511-
== operator
513+
== operator.
512514
513515
EXAMPLES::
514516
@@ -519,7 +521,7 @@ def __eq__(self, other):
519521

520522
def __lt__(self, other):
521523
r"""
522-
>, !=, and < operators
524+
>, !=, and < operators.
523525
524526
EXAMPLES::
525527
@@ -542,7 +544,7 @@ def __lt__(self, other):
542544

543545
def forbidden_subgraphs(self):
544546
r"""
545-
Returns the list of forbidden induced subgraphs defining the class.
547+
Return the list of forbidden induced subgraphs defining the class.
546548
547549
If the graph class is not defined by a *finite* list of forbidden
548550
induced subgraphs, ``None`` is returned instead.
@@ -561,15 +563,15 @@ def forbidden_subgraphs(self):
561563
classes = GraphClasses().classes()
562564
gc = classes[self._gc_id]
563565

564-
if gc.get("type",None) != "forbidden":
566+
if gc.get("type", None) != "forbidden":
565567
return None
566568

567569
excluded = gc.get("smallgraph", None)
568570

569571
if not excluded:
570572
return None
571573

572-
if not isinstance(excluded,list):
574+
if not isinstance(excluded, list):
573575
excluded = [excluded]
574576

575577
smallgraphs = GraphClasses().smallgraphs()
@@ -581,7 +583,7 @@ def forbidden_subgraphs(self):
581583

582584
def __contains__(self, g):
583585
r"""
584-
Tests if ``g`` belongs to the graph class represented by ``self``.
586+
Check if ``g`` belongs to the graph class represented by ``self``.
585587
586588
EXAMPLES::
587589
@@ -615,7 +617,7 @@ def __contains__(self, g):
615617
excluded = self.forbidden_subgraphs()
616618

617619
if excluded is None:
618-
raise NotImplementedError("No recognition algorithm is available "+
620+
raise NotImplementedError("No recognition algorithm is available "
619621
"for this class.")
620622

621623
for gg in excluded:
@@ -626,7 +628,7 @@ def __contains__(self, g):
626628

627629
def description(self):
628630
r"""
629-
Prints the information of ISGCI about the current class.
631+
Print the information of ISGCI about the current class.
630632
631633
EXAMPLES::
632634
@@ -673,16 +675,15 @@ def description(self):
673675
print("\nProblems :")
674676
print("-" * 11)
675677

676-
for pbname,data in sorted(cls["problem"].items()):
678+
for pbname, data in sorted(cls["problem"].items()):
677679
if "complexity" in data:
678680
print("{:30} : {}".format(pbname, data["complexity"]))
679681

680-
from sage.misc.cachefunc import cached_method
681682

682683
class GraphClasses(UniqueRepresentation):
683684
def get_class(self, id):
684685
r"""
685-
Returns the class corresponding to the given id in the ISGCI database.
686+
Return the class corresponding to the given id in the ISGCI database.
686687
687688
INPUT:
688689
@@ -718,12 +719,14 @@ def get_class(self, id):
718719

719720
return GraphClass(name, id)
720721
else:
721-
raise ValueError("The given class id does not exist in the ISGCI database. Is the db too old ? You can update it with graph_classes.update_db().")
722+
raise ValueError("The given class id does not exist in the ISGCI "
723+
"database. Is the db too old ? You can update it "
724+
"with graph_classes.update_db().")
722725

723726
@cached_method
724727
def classes(self):
725728
r"""
726-
Returns the graph classes, as a dictionary.
729+
Return the graph classes, as a dictionary.
727730
728731
Upon the first call, this loads the database from the local XML
729732
file. Subsequent calls are cached.
@@ -746,7 +749,7 @@ def classes(self):
746749
@cached_method
747750
def inclusions(self):
748751
r"""
749-
Returns the graph class inclusions
752+
Return the graph class inclusions.
750753
751754
OUTPUT:
752755
@@ -769,7 +772,7 @@ def inclusions(self):
769772
@cached_method
770773
def smallgraphs(self):
771774
r"""
772-
Returns a dictionary associating a graph to a graph description string.
775+
Return a dictionary associating a graph to a graph description string.
773776
774777
Upon the first call, this loads the database from the local XML files.
775778
Subsequent calls are cached.
@@ -794,7 +797,7 @@ def smallgraphs(self):
794797
@cached_method
795798
def inclusion_digraph(self):
796799
r"""
797-
Returns the class inclusion digraph
800+
Return the class inclusion digraph.
798801
799802
Upon the first call, this loads the database from the local XML file.
800803
Subsequent calls are cached.
@@ -804,23 +807,23 @@ def inclusion_digraph(self):
804807
sage: g = graph_classes.inclusion_digraph(); g
805808
Digraph on ... vertices
806809
"""
807-
classes = self.classes()
810+
classes = self.classes()
808811
inclusions = self.inclusions()
809812

810813
from sage.graphs.digraph import DiGraph
811814
inclusion_digraph = DiGraph()
812815
inclusion_digraph.add_vertices(classes.keys())
813816

814817
for edge in inclusions:
815-
if edge.get("confidence","") == "unpublished":
818+
if edge.get("confidence", "") == "unpublished":
816819
continue
817820
inclusion_digraph.add_edge(edge['super'], edge['sub'])
818821

819822
return inclusion_digraph
820823

821824
def _download_db(self):
822825
r"""
823-
Downloads the current version of the ISGCI db
826+
Download the current version of the ISGCI db.
824827
825828
EXAMPLES::
826829
@@ -842,7 +845,7 @@ def _download_db(self):
842845

843846
def _parse_db(self, directory):
844847
r"""
845-
Parses the ISGCI database and stores its content in ``self``.
848+
Parse the ISGCI database and stores its content in ``self``.
846849
847850
INPUT:
848851
@@ -873,8 +876,8 @@ def _parse_db(self, directory):
873876
smallgraph_file = open(os.path.join(GRAPHS_DATA_DIR, _SMALLGRAPHS_FILE), 'r')
874877
smallgraphs = {}
875878

876-
for l in smallgraph_file.readlines():
877-
key, string = l.split("\t")
879+
for line in smallgraph_file.readlines():
880+
key, string = line.split("\t")
878881
smallgraphs[key] = Graph(string)
879882

880883
smallgraph_file.close()
@@ -941,7 +944,7 @@ def _get_ISGCI(self):
941944

942945
# Which copy is the most recent on the disk ?
943946
if (os.path.getmtime(os.path.join(SAGE_DB, _XML_FILE)) >
944-
os.path.getmtime(os.path.join(GRAPHS_DATA_DIR, _XML_FILE))):
947+
os.path.getmtime(os.path.join(GRAPHS_DATA_DIR, _XML_FILE))):
945948

946949
directory = os.path.join(SAGE_DB, _XML_FILE)
947950

@@ -976,8 +979,8 @@ def show_all(self):
976979
# We want to print the different fields, and this dictionary stores the
977980
# maximal number of characters of each field.
978981
MAX = {
979-
"id" : 0,
980-
"type" : 0,
982+
"id": 0,
983+
"type": 0,
981984
"smallgraph": 0,
982985
"name": 0
983986
}
@@ -1002,20 +1005,29 @@ def sort_key(x):
10021005
MAX[key] = min(length, MAX_LEN)
10031006

10041007
# Head of the table
1005-
print(("{0:"+str(MAX["id"])+"} | {1:"+str(MAX["name"])+"} | {2:"+str(MAX["type"])+"} | {3:"+str(MAX["smallgraph"])+"}").format("id", "name", "type", "smallgraph"))
1008+
st = ("{:" + str(MAX["id"]) + "}").format("id")
1009+
st += (" | {:" + str(MAX["name"]) + "}").format("name")
1010+
st += (" | {:" + str(MAX["type"]) + "}").format("type")
1011+
st += (" | {:" + str(MAX["smallgraph"]) + "}").format("smallgraph")
1012+
print(st)
10061013
print("-" * (sum(MAX.values())+9))
10071014

10081015
# Entries
10091016
for entry in classes_list:
10101017
ID = entry.get("id", "")
10111018
name = entry.get("name", "")
1012-
type = entry.get("type", "")
1019+
typ = entry.get("type", "")
10131020
smallgraph = entry.get("smallgraph", "")
1014-
print(("{0:"+str(MAX["id"])+"} | {1:"+str(MAX["name"])+"} | {2:"+str(MAX["type"])+"} | ").format(ID, name[:MAX_LEN], type[:MAX_LEN])+str(smallgraph)[:MAX_LEN])
1021+
st = ("{:" + str(MAX["id"]) + "}").format(ID)
1022+
st += (" | {:" + str(MAX["name"]) + "}").format(name[:MAX_LEN])
1023+
st += (" | {:" + str(MAX["type"]) + "}").format(typ[:MAX_LEN])
1024+
st += " | " + str(smallgraph)[:MAX_LEN]
1025+
print(st)
1026+
10151027

10161028
def _XML_to_dict(root):
10171029
r"""
1018-
Returns the XML data as a dictionary
1030+
Return the XML data as a dictionary.
10191031
10201032
INPUT:
10211033
@@ -1050,6 +1062,7 @@ def _XML_to_dict(root):
10501062
return root.text
10511063
return ans
10521064

1065+
10531066
graph_classes = GraphClasses()
10541067

10551068
# Any object added to this list should also appear in the class' documentation, at the top of the file.

0 commit comments

Comments
 (0)