forked from hkociemba/RubiksCube-TwophaseSolver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmisc.py
41 lines (33 loc) · 1.08 KB
/
misc.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# ######################################## Miscellaneous functions ####################################################
from os import path, mkdir
def rotate_right(arr, l, r):
""""Rotates array arr right between l and r. r is included."""
temp = arr[r]
for i in range(r, l, -1):
arr[i] = arr[i-1]
arr[l] = temp
def rotate_left(arr, l, r):
""""Rotates array arr left between l and r. r is included."""
temp = arr[l]
for i in range(l, r):
arr[i] = arr[i+1]
arr[r] = temp
def c_nk(n, k):
"""Binomial coefficient [n choose k]."""
if n < k:
return 0
if k > n // 2:
k = n - k
s, i, j = 1, n, 1
while i != n - k:
s *= i
s //= j
i -= 1
j += 1
return s
def get_pruning_table_path(table_name):
"""Returns the path corresponding to the given pruning table"""
pruning_dir = path.join(path.dirname(path.realpath(__file__)), 'pruning')
if not path.exists(pruning_dir):
mkdir(pruning_dir)
return path.join(pruning_dir, table_name)