Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 526 Bytes

README.md

File metadata and controls

20 lines (17 loc) · 526 Bytes

pygapbide

Migrated from Google Code Archive. Python implementation of Gap-Bide algorithm.

To use the code:

from pygapbide import *
sdb = [[1, 2, 3, 4],
       [1, 4, 2, 3, 5],
       [1, 2, 4, 3, 1, 2, 3, 1],
       [1, 2, 4, 3, 1],
       [1, 3, 5],
       [2, 3, 4],
       [2, 1, 5],
       [3, 5, 3, 1],
       [2, 4, 1, 5, 2, 3, 3]]
g = Gapbide(sdb, 3, 0, 2)
g.run()