@@ -396,22 +396,24 @@ class is defined by the exclusion of subgraphs, one can write a generic
396
396
from sage .structure .unique_representation import CachedRepresentation , UniqueRepresentation
397
397
from sage .misc .unknown import Unknown
398
398
from sage .env import GRAPHS_DATA_DIR
399
+ from sage .misc .cachefunc import cached_method
399
400
400
401
import os
401
402
import zipfile
402
403
from urllib .request import urlopen
403
404
from ssl import create_default_context as default_context
404
405
405
- #* ****************************************************************************
406
+ # ****************************************************************************
406
407
# Copyright (C) 2011 Nathann Cohen <[email protected] >
407
408
#
408
409
# 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
+ # ****************************************************************************
411
412
412
413
_XML_FILE = "isgci_sage.xml"
413
414
_SMALLGRAPHS_FILE = "smallgraphs.txt"
414
415
416
+
415
417
class GraphClass (SageObject , CachedRepresentation ):
416
418
r"""
417
419
An instance of this class represents a Graph Class, matching some entry in
@@ -437,7 +439,7 @@ class GraphClass(SageObject, CachedRepresentation):
437
439
"""
438
440
def __init__ (self , name , gc_id , recognition_function = None ):
439
441
r"""
440
- Class constructor
442
+ Class constructor.
441
443
442
444
INPUT:
443
445
@@ -460,7 +462,7 @@ class represented by ``gc_id`` ?*
460
462
461
463
def _repr_ (self ):
462
464
r"""
463
- Returns a short description of the class
465
+ Return a short description of the class.
464
466
465
467
EXAMPLES::
466
468
@@ -471,7 +473,7 @@ def _repr_(self):
471
473
472
474
def __hash__ (self ):
473
475
r"""
474
- Returns the class' ID hash
476
+ Return the class' ID hash.
475
477
476
478
EXAMPLES::
477
479
@@ -482,7 +484,7 @@ def __hash__(self):
482
484
483
485
def __le__ (self , other ):
484
486
r"""
485
- <= operator
487
+ <= operator.
486
488
487
489
EXAMPLES::
488
490
@@ -493,22 +495,22 @@ def __le__(self, other):
493
495
494
496
def __ge__ (self , other ):
495
497
r"""
496
- >= operator
498
+ >= operator.
497
499
498
500
EXAMPLES::
499
501
500
502
sage: graph_classes.Chordal >= graph_classes.Tree
501
503
True
502
504
"""
503
505
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 ):
505
507
return True
506
508
else :
507
509
return Unknown
508
510
509
511
def __eq__ (self , other ):
510
512
r"""
511
- == operator
513
+ == operator.
512
514
513
515
EXAMPLES::
514
516
@@ -519,7 +521,7 @@ def __eq__(self, other):
519
521
520
522
def __lt__ (self , other ):
521
523
r"""
522
- >, !=, and < operators
524
+ >, !=, and < operators.
523
525
524
526
EXAMPLES::
525
527
@@ -542,7 +544,7 @@ def __lt__(self, other):
542
544
543
545
def forbidden_subgraphs (self ):
544
546
r"""
545
- Returns the list of forbidden induced subgraphs defining the class.
547
+ Return the list of forbidden induced subgraphs defining the class.
546
548
547
549
If the graph class is not defined by a *finite* list of forbidden
548
550
induced subgraphs, ``None`` is returned instead.
@@ -561,15 +563,15 @@ def forbidden_subgraphs(self):
561
563
classes = GraphClasses ().classes ()
562
564
gc = classes [self ._gc_id ]
563
565
564
- if gc .get ("type" ,None ) != "forbidden" :
566
+ if gc .get ("type" , None ) != "forbidden" :
565
567
return None
566
568
567
569
excluded = gc .get ("smallgraph" , None )
568
570
569
571
if not excluded :
570
572
return None
571
573
572
- if not isinstance (excluded ,list ):
574
+ if not isinstance (excluded , list ):
573
575
excluded = [excluded ]
574
576
575
577
smallgraphs = GraphClasses ().smallgraphs ()
@@ -581,7 +583,7 @@ def forbidden_subgraphs(self):
581
583
582
584
def __contains__ (self , g ):
583
585
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``.
585
587
586
588
EXAMPLES::
587
589
@@ -615,7 +617,7 @@ def __contains__(self, g):
615
617
excluded = self .forbidden_subgraphs ()
616
618
617
619
if excluded is None :
618
- raise NotImplementedError ("No recognition algorithm is available " +
620
+ raise NotImplementedError ("No recognition algorithm is available "
619
621
"for this class." )
620
622
621
623
for gg in excluded :
@@ -626,7 +628,7 @@ def __contains__(self, g):
626
628
627
629
def description (self ):
628
630
r"""
629
- Prints the information of ISGCI about the current class.
631
+ Print the information of ISGCI about the current class.
630
632
631
633
EXAMPLES::
632
634
@@ -673,16 +675,15 @@ def description(self):
673
675
print ("\n Problems :" )
674
676
print ("-" * 11 )
675
677
676
- for pbname ,data in sorted (cls ["problem" ].items ()):
678
+ for pbname , data in sorted (cls ["problem" ].items ()):
677
679
if "complexity" in data :
678
680
print ("{:30} : {}" .format (pbname , data ["complexity" ]))
679
681
680
- from sage .misc .cachefunc import cached_method
681
682
682
683
class GraphClasses (UniqueRepresentation ):
683
684
def get_class (self , id ):
684
685
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.
686
687
687
688
INPUT:
688
689
@@ -718,12 +719,14 @@ def get_class(self, id):
718
719
719
720
return GraphClass (name , id )
720
721
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()." )
722
725
723
726
@cached_method
724
727
def classes (self ):
725
728
r"""
726
- Returns the graph classes, as a dictionary.
729
+ Return the graph classes, as a dictionary.
727
730
728
731
Upon the first call, this loads the database from the local XML
729
732
file. Subsequent calls are cached.
@@ -746,7 +749,7 @@ def classes(self):
746
749
@cached_method
747
750
def inclusions (self ):
748
751
r"""
749
- Returns the graph class inclusions
752
+ Return the graph class inclusions.
750
753
751
754
OUTPUT:
752
755
@@ -769,7 +772,7 @@ def inclusions(self):
769
772
@cached_method
770
773
def smallgraphs (self ):
771
774
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.
773
776
774
777
Upon the first call, this loads the database from the local XML files.
775
778
Subsequent calls are cached.
@@ -794,7 +797,7 @@ def smallgraphs(self):
794
797
@cached_method
795
798
def inclusion_digraph (self ):
796
799
r"""
797
- Returns the class inclusion digraph
800
+ Return the class inclusion digraph.
798
801
799
802
Upon the first call, this loads the database from the local XML file.
800
803
Subsequent calls are cached.
@@ -804,23 +807,23 @@ def inclusion_digraph(self):
804
807
sage: g = graph_classes.inclusion_digraph(); g
805
808
Digraph on ... vertices
806
809
"""
807
- classes = self .classes ()
810
+ classes = self .classes ()
808
811
inclusions = self .inclusions ()
809
812
810
813
from sage .graphs .digraph import DiGraph
811
814
inclusion_digraph = DiGraph ()
812
815
inclusion_digraph .add_vertices (classes .keys ())
813
816
814
817
for edge in inclusions :
815
- if edge .get ("confidence" ,"" ) == "unpublished" :
818
+ if edge .get ("confidence" , "" ) == "unpublished" :
816
819
continue
817
820
inclusion_digraph .add_edge (edge ['super' ], edge ['sub' ])
818
821
819
822
return inclusion_digraph
820
823
821
824
def _download_db (self ):
822
825
r"""
823
- Downloads the current version of the ISGCI db
826
+ Download the current version of the ISGCI db.
824
827
825
828
EXAMPLES::
826
829
@@ -842,7 +845,7 @@ def _download_db(self):
842
845
843
846
def _parse_db (self , directory ):
844
847
r"""
845
- Parses the ISGCI database and stores its content in ``self``.
848
+ Parse the ISGCI database and stores its content in ``self``.
846
849
847
850
INPUT:
848
851
@@ -873,8 +876,8 @@ def _parse_db(self, directory):
873
876
smallgraph_file = open (os .path .join (GRAPHS_DATA_DIR , _SMALLGRAPHS_FILE ), 'r' )
874
877
smallgraphs = {}
875
878
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 " )
878
881
smallgraphs [key ] = Graph (string )
879
882
880
883
smallgraph_file .close ()
@@ -941,7 +944,7 @@ def _get_ISGCI(self):
941
944
942
945
# Which copy is the most recent on the disk ?
943
946
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 ))):
945
948
946
949
directory = os .path .join (SAGE_DB , _XML_FILE )
947
950
@@ -976,8 +979,8 @@ def show_all(self):
976
979
# We want to print the different fields, and this dictionary stores the
977
980
# maximal number of characters of each field.
978
981
MAX = {
979
- "id" : 0 ,
980
- "type" : 0 ,
982
+ "id" : 0 ,
983
+ "type" : 0 ,
981
984
"smallgraph" : 0 ,
982
985
"name" : 0
983
986
}
@@ -1002,20 +1005,29 @@ def sort_key(x):
1002
1005
MAX [key ] = min (length , MAX_LEN )
1003
1006
1004
1007
# 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 )
1006
1013
print ("-" * (sum (MAX .values ())+ 9 ))
1007
1014
1008
1015
# Entries
1009
1016
for entry in classes_list :
1010
1017
ID = entry .get ("id" , "" )
1011
1018
name = entry .get ("name" , "" )
1012
- type = entry .get ("type" , "" )
1019
+ typ = entry .get ("type" , "" )
1013
1020
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
+
1015
1027
1016
1028
def _XML_to_dict (root ):
1017
1029
r"""
1018
- Returns the XML data as a dictionary
1030
+ Return the XML data as a dictionary.
1019
1031
1020
1032
INPUT:
1021
1033
@@ -1050,6 +1062,7 @@ def _XML_to_dict(root):
1050
1062
return root .text
1051
1063
return ans
1052
1064
1065
+
1053
1066
graph_classes = GraphClasses ()
1054
1067
1055
1068
# Any object added to this list should also appear in the class' documentation, at the top of the file.
0 commit comments