You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When combining n words, the separators aren't used properly to go in between and some candidates are missing from the generated output.
Example :
With extra_combinations set to false, the following command returns 15 results including the abc string
# With extra_combinations set to false
bopscrk -m 1 -M 20 -n 3 -w a,b,c
[...]
a
b
c
ab
ac
ba
bc
ca
cb
abc
acb
bac
bca
cab
cba
Same command but with extra_combinations set to true and separators_chars=_ only to illustrate my issue, I get the following result with 39 words generated
a
b
c
ab
ac
ba
bc
ca
cb
abc
acb
bac
bca
cab
cba
a_
_a
b_
_b
c_
_c
b_a
ab_
_ba
a_b
c_a
ac_
_ca
a_c
ba_
_ab
c_b
bc_
_cb
b_c
ca_
_ac
cb_
_bc
Since the upper limit of number of words used for combinations (-n 3) and min/max length isn't an issue, I would expect to see words such as a_b_c in the generated list as the _ is used as a separator and as such would be used whenever n words are combined together.
Is this an expected behaviour or am I missing something ?
Thank you
The text was updated successfully, but these errors were encountered:
Hello there,
When combining n words, the separators aren't used properly to go in between and some candidates are missing from the generated output.
Example :
With
extra_combinations
set tofalse
, the following command returns 15 results including theabc
stringSame command but with
extra_combinations
set totrue
andseparators_chars=_
only to illustrate my issue, I get the following result with 39 words generatedSince the upper limit of number of words used for combinations (
-n 3
) and min/max length isn't an issue, I would expect to see words such asa_b_c
in the generated list as the_
is used as a separator and as such would be used whenever n words are combined together.Is this an expected behaviour or am I missing something ?
Thank you
The text was updated successfully, but these errors were encountered: