Skip to content

Commit fc758b2

Browse files
committed
[FIX] repeated arguments
1 parent 78d77f8 commit fc758b2

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/algorithms/sequentialcovering.jl

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,6 @@ This involves iteratively learning a single rule, and removing the newly covered
4747
* `default_alphabet::Union{Nothing,AbstractAlphabet}=nothing` offers the flexibility to define a tailored alphabet upon which antecedents generation occurs.
4848
* `discretizedomain::Bool=false`: discretizes continuous variables by identifying optimal cut points
4949
* `significance_alpha::Union{Real,Nothing}=0.0` is the significant alpha
50-
* `min_rule_coverage::Union{Nothing,Integer} = 1` specifies the minimum number of instances covered by each rule.
51-
* `max_rule_length::Union{Nothing,Integer} = nothing` specifies the maximum length allowed for a rule in the search algorithm.
5250
* `max_rulebase_length::Union{Nothing,Integer}` is the maximum length of the rulebase;
5351
* `suppress_parity_warning::Bool` if `true`, suppresses parity warnings.
5452
* Any additional keyword argument will be imputed to the `searchmethod`, replacing its original value.
@@ -128,8 +126,6 @@ function sequentialcovering(
128126
significance_alpha::Union{Real,Nothing}=0.0,
129127
min_rule_coverage::Integer=1,
130128
max_rule_length::Union{Nothing,Integer}=nothing,
131-
min_rule_coverage::Integer=1,
132-
max_rule_length::Union{Nothing,Integer}=nothing,
133129
max_rulebase_length::Union{Nothing,Integer}=nothing,
134130
suppress_parity_warning::Bool=false,
135131
kwargs...

0 commit comments

Comments
 (0)