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 359 B

1234567891011121314151617
  1. # -*-coding:utf-8 -*-
  2. """Pygraph - c_ext module
  3. This package binds some C++ code to python
  4. lsape_binders.py : binders to C++ code of LSAPE methods implemented in
  5. https://bougleux.users.greyc.fr/lsape/
  6. """
  7. # info
  8. __version__ = "0.1"
  9. __author__ = "Benoit Gaüzère"
  10. __date__ = "November 2017"
  11. # import sub modules
  12. from pygraph.c_ext import lsape_binders

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