您最多选择25个标签 标签必须以中文、字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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.