specless.inference.partial_order

Inference Algorithm

Inference algorithms then use such demonstrations to come up with a specification.

Examples

>>> import specless as sl
>>> inference = sl.POInferenceAlgorithm()
>>> demonstrations: list = [
...     ["a", "b", "c"],
...     ["d", "e", "f"],
... ]
>>> specification: Specification = inference.infer(demonstrations)

Classes

POInferenceAlgorithm