Skip to content

Commit 5e7ed7b

Browse files
committed
fix Rivest name
1 parent f180995 commit 5e7ed7b

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

aalpy/learning_algs/deterministic/CounterExampleProcessing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def longest_prefix_cex_processing(s_union_s_dot_a: list, cex: tuple, closedness=
4646
def rs_cex_processing(sul: SUL, cex: tuple, hypothesis, suffix_closedness=True, closedness='suffix',
4747
is_vpa=False, lower=None, upper=None):
4848
"""
49-
Riverst-Schapire counter example processing.
49+
Rivest-Schapire counter example processing.
5050
5151
Args:
5252

aalpy/learning_algs/deterministic/KV.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def run_KV(alphabet: Union[list, SevpaAlphabet], sul: SUL, eq_oracle: Oracle, au
2929
3030
automaton_type: type of automaton to be learned. One of 'dfa', 'mealy', 'moore', 'vpa'
3131
32-
cex_processing: Counterexample processing strategy. Either 'rs' (Riverst-Schapire), 'longest_prefix'.
32+
cex_processing: Counterexample processing strategy. Either 'rs' (Rivest-Schapire), 'longest_prefix'.
3333
(Default value = 'rs'), 'longest_prefix', 'linear_fwd', 'linear_bwd', 'exponential_fwd', 'exponential_bwd'
3434
3535
max_learning_rounds: number of learning rounds after which learning will terminate (Default value = None)

aalpy/learning_algs/deterministic/LStar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def run_Lstar(alphabet: list, sul: SUL, eq_oracle: Oracle, automaton_type, sampl
3636
closing_strategy: closing strategy used in the close method. Either 'longest_first', 'shortest_first' or
3737
'single' (Default value = 'shortest_first')
3838
39-
cex_processing: Counterexample processing strategy. Either None, 'rs' (Riverst-Schapire), 'longest_prefix'.
39+
cex_processing: Counterexample processing strategy. Either None, 'rs' (Rivest-Schapire), 'longest_prefix'.
4040
(Default value = 'rs'), 'longest_prefix', 'linear_fwd', 'linear_bwd', 'exponential_fwd', 'exponential_bwd'
4141
4242
e_set_suffix_closed: True option ensures that E set is suffix closed,

aalpy/learning_algs/stochastic/StochasticCexProcessing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def stochastic_longest_prefix(cex, prefixes):
4343

4444

4545
def stochastic_rs(sul: SUL, cex: tuple, hypothesis):
46-
"""Riverst-Schapire counter example processing.
46+
"""Rivest-Schapire counter example processing.
4747
4848
Args:
4949

0 commit comments

Comments
 (0)