Metadata-Version: 1.0
Name: GraphState
Version: 1.0.3
Summary: Graph library implementation using generalization of B.G.Nickel et al. algorithm for identifying graphs.
Home-page: http://pypi.python.org/pypi/GraphState/
Author: D. Batkovich, S. Novikov
Author-email: batya239@gmail.com, dr.snov@gmail.com
License: LICENSE.txt
Description: 1.to install in userspace run:
        
        $ python setup.py install --user
        
        or to setup in global space
        
        $ sudo setup.py install
        
        2. run tests:
        
        $ cd nickel; python nickel_test.py; cd ..
        $ cd graph_state; python graph_state_test.py; cd ..
        
        You must see "OK" after test execution
        
        3. run simple example from python CLI interface:
        
        >>> import graph_state
        >>> g = graph_state.GraphState.from_str("ee12|e22|e|")
        >>> print g
        ee12|e22|e|
        >>> print g.edges
        (((0,), ), ((0,), ), ((0, 1), ), ((0, 2), ), ((1,), ), ((1, 2), ), ((1, 2), ), ((2,), ))
        >>> print g.nodes
        [-1, 0, 1, 2]
        
        
        
Platform: UNKNOWN
