Skip to content

Instantly share code, notes, and snippets.

View tonyxty's full-sized avatar

Tony Beta Lambda tonyxty

View GitHub Profile
@tonyxty
tonyxty / angluin.py
Last active February 23, 2016 11:02
Implementation of Angluin's Learning Algorithm for Regular Sets
#!/usr/bin/env python3
import copy
class Node:
def __init__(self, label, sub=None):
self.label, self.sub = label, sub
class AngluinLearner: