| Superset Of | Max-IO<Segment>, Max-IO<Feature> |
| See Also | Max-BR, other OO constraints |
| Subset Of | Max |
| Name | Max-IO |
| Description | Every segment in the input must appear in the output |
def maxIO(i,o):
"""Name=Max-IO
Description=Every segment in the input must appear in the output
Superset Of=Max-IO<Segment>, Max-IO<Feature>
Subset Of=Max
See Also=Max-BR, other OO constraints"""
return _optimal_path(_levenshtein(i,o), i, o)[1] # (dels,_ins_,subs)
Back to main page TODO:Put examples here, or automatically import test cases from the wiki, or something.