Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
emuskardin committed Apr 21, 2021
1 parent 1a427d9 commit 63127ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aalpy/learning_algs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# public API for running learning algorithms
# public API for running automata learning algorithms
from .deterministic.LStar import run_Lstar
from .non_deterministic.OnfsmLstar import run_non_det_Lstar
from .non_deterministic.AbstractedOnfsmLstar import run_abstracted_Lstar_ONFSM
Expand Down
2 changes: 1 addition & 1 deletion aalpy/learning_algs/stochastic/StochasticLStar.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def run_stochastic_Lstar(input_alphabet, sul: SUL, eq_oracle: Oracle, n_c=20, n_
else:
# stop based on number of unambiguous rows
stop_based_on_unambiguity = observation_table.stop(learning_rounds, target_unambiguity=target_unambiguity,
min_rounds=min_rounds,max_rounds=max_rounds,
min_rounds=min_rounds, max_rounds=max_rounds,
print_unambiguity=print_level > 1)
if stop_based_on_unambiguity:
break
Expand Down

0 comments on commit 63127ce

Please sign in to comment.