blob: 1df21332b09ddd4ac6ec8f05ef7bf443fddf3f76 (
plain)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
<!doctype html>
<html lang="en">
<head>
<title> Nissy | Nissy </title>
<meta name="viewport" content="width=device-width" /> <link rel="stylesheet" type="text/css" href="/style.css">
<link rel="icon" href="/favicon.png">
<meta charset="utf-8">
</head>
<body>
<nav class="top">
<table class="menu">
<tr>
<td class="logo"> <a href="/"><img src="/favicon.png" alt="logo"></a> </td>
<td class="links">
<a href="/download/">Download</a> |
<a href="/examples/">Examples</a>
</td>
</tr>
</table>
</nav>
<hr class="line">
<h1>Nissy</h1>
<p class=subtitle>A Rubik's cube solver and FMC assistant</p>
<img src="/screenshot.png" alt="A screenshot of nissy running in a terminal emulator">
<p>
Nissy is a command-line Rubik's cube solver. It can find optimal solutions
for random positions using techniques from Herbert Kociemba's
<a href="http://kociemba.org/cube.htm">Cube Explorer</a> and
Tomas Rokicki's
<a href="https://github.com/rokici/cube20src/blob/master/nxopt.md">nxopt</a>.
With 4 cores at 2.5GHz and using less than 3Gb of RAM, Nissy can find an optimal
solution in about a minute on average.
</p>
<p>
Nissy aims at being a complete tool
for FMC (Fewest Moves Challenge) practice. It can solve different steps
of Thistlethwaite's algorithm (also know as DR/HTR) and cans use NISS
(Normal-Inverse Scramble Switch).
</p>
<p>
You should use Nissy if:
</p>
<ul>
<li>
You want to analyze your DR solutions or check for multiple optimal
(or sub-optimal) solutions for EO/DR/HTR or similar steps.
</li>
<li>
You just want a Rubik's cube solver and you like command line interfaces.
</li>
<li>
You want an alternative to Cube Explorer.
</li>
</ul>
<p>
To get started, head to the <a href="/download/">download</a> page.
</p>
<p>
You can also see its source code by cloning the git repository
<a href="https://git.tronto.net/nissy/">git.tronto.net/nissy</a>
</p>
<hr class="line">
<nav class="bottom">
<table class="footer">
<tr>
<td class="contact">
<a href="https://sebastiano.tronto.net">sebastiano.tronto.net</a>
</td>
<td class="hosted">
<a href="mailto:sebastiano@tronto.net">
sebastiano@tronto.net
</a>
</td>
</tr>
</table>
</nav>
</body>
</html>
|