Ignore:
Timestamp:
07/26/07 02:07:18 (6 years ago)
Author:
Emily Kirkman <eakirkman@…>
Branch:
default
Children:
5685:821e035e08d1, 5686:7f2035c7de8a
Message:

doctests pass now...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sage/graphs/bruhat.py

    r5683 r5684  
    5656    EXAMPLES: 
    5757        sage: b = BruhatSn(4) 
    58         sage.: (b.get_graph()).show() 
     58        sage.: b.show_graph() 
    5959        sage: b_sub = b.sub_interval_from_id((4,2,3,1),5) 
    60         sage.: (b_sub.get_graph()).show() 
     60        sage.: b_sub.show_graph() 
    6161    """ 
    6262    def __init__(self, end_height, start_height=None): 
     
    146146        EXAMPLES: 
    147147            sage: b = BruhatSn(4) 
    148             sage.: (b.get_graph()).show() 
     148            sage.: b.show_graph() 
    149149            sage: b_sub = b.sub_interval_from_id((4,2,3,1),5) 
    150             sage.: (b_sub.get_graph()).show() 
     150            sage.: b_sub.show_graph() 
    151151        """ 
    152152        sub_interval=BruhatInterval(height) 
     
    175175        EXAMPLES: 
    176176            sage: b = BruhatSn(4) 
    177             sage: b.__graph__.show() 
     177            sage.: b.show_graph() 
    178178            sage: b_sub = b.sub_interval_from_id((4,2,3,1),5) 
    179             sage: b_sub.__graph__.show() 
     179            sage.: b.show_graph() 
    180180            sage: b.is_isomorphic(b_sub) 
    181181            False 
     
    289289        INPUT: 
    290290            labels -- whether or not to display node labels (permutations) 
     291             
     292        EXAMPLES: 
     293            sage: b = BruhatSn(4) 
     294            sage.: b.show_graph() 
     295            sage: b_sub = b.sub_interval_from_id((4,2,3,1),5) 
     296            sage.: b_sub.show_graph() 
    291297        """ 
    292298        heights=height_unknown(self.__graph__) 
Note: See TracChangeset for help on using the changeset viewer.