You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 336 B

1234567891011121314151617
  1. # -*-coding:utf-8 -*-
  2. """Pygraph - utils module
  3. Implement some methods to manage graphs
  4. graphfiles.py : load .gxl and .ct files
  5. utils.py : compute some properties on networkX graphs
  6. """
  7. # info
  8. __version__ = "0.1"
  9. __author__ = "Benoit Gaüzère"
  10. __date__ = "November 2017"
  11. # from utils import graphfiles
  12. # from utils import utils

A Python package for graph kernels, graph edit distances and graph pre-image problem.