change settings
This commit is contained in:
@ -23,7 +23,7 @@ from typing import List, Any, Generator, Dict
|
|||||||
SOLUTIONS_TO_EVAL = 1000
|
SOLUTIONS_TO_EVAL = 1000
|
||||||
SOLUTIONS_TO_SHOW = 3
|
SOLUTIONS_TO_SHOW = 3
|
||||||
|
|
||||||
PRUNE = 10
|
PRUNE = 11
|
||||||
SOLVE = 7
|
SOLVE = 7
|
||||||
|
|
||||||
|
|
||||||
@ -71,7 +71,7 @@ def main():
|
|||||||
# list(EOLROrientation), EOLR_PERMUTATIONS
|
# list(EOLROrientation), EOLR_PERMUTATIONS
|
||||||
# )
|
# )
|
||||||
eolrb_states, n_states = eolrb_states_generator(
|
eolrb_states, n_states = eolrb_states_generator(
|
||||||
[EOLROrientation.OneOne, EOLROrientation.FourZero], EOLR_PERMUTATIONS
|
list(EOLROrientation), EOLR_PERMUTATIONS
|
||||||
)
|
)
|
||||||
for i, (eolrb_cube, ori, perm, pre_auf) in enumerate(eolrb_states):
|
for i, (eolrb_cube, ori, perm, pre_auf) in enumerate(eolrb_states):
|
||||||
print(
|
print(
|
||||||
|
|||||||
@ -15,6 +15,8 @@ def main():
|
|||||||
continue
|
continue
|
||||||
if case.startswith("Solved"):
|
if case.startswith("Solved"):
|
||||||
continue
|
continue
|
||||||
|
if "Arrow" in case:
|
||||||
|
continue
|
||||||
print(f'{case}: "{scramble['alg']}"')
|
print(f'{case}: "{scramble['alg']}"')
|
||||||
covered_cases.add(scramble["raw_alg"])
|
covered_cases.add(scramble["raw_alg"])
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user