This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
from abc import ABC, abstractmethod | |
from aalpy import SUL, RandomWordEqOracle, run_Lstar, run_RPNI, bisimilar, compare_automata | |
class AbstractVendingMachine(ABC): | |
@abstractmethod | |
def add_coin(self, coin): |