change settings

This commit is contained in:
2024-09-12 17:05:53 +03:00
parent e3b065ff53
commit 074878ee9f
2 changed files with 4 additions and 2 deletions

View File

@ -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(

View File

@ -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"])