buh
This commit is contained in:
@ -56,11 +56,16 @@ def create_eolrb_prune_table(prune_depth: int):
|
||||
|
||||
generator = lse_brute_force_generator(prune_depth)
|
||||
|
||||
pruned = 0
|
||||
|
||||
# TODO: for every solved state (pre auf), we can apply the generator's moves and save to prune table?
|
||||
for alg in generator:
|
||||
cube.reset()
|
||||
cube.alg(" ".join(alg))
|
||||
prune_table[cube.eolrb_hash()].append(reverse_algorithm(alg))
|
||||
pruned += 1
|
||||
if pruned % 1000 == 0:
|
||||
print(pruned)
|
||||
|
||||
return prune_table
|
||||
|
||||
|
||||
Reference in New Issue
Block a user