| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Removed some unused code (khuge). Improved optimal solver performance by ↵ | Sebastiano Tronto | 2022-02-27 | 7 | -126/+28 |
| | | | | | about 10% using raw transition tables (same for dr step). | ||||
| * | Removed array-size constants for certain objects (steps, commands...) | Sebastiano Tronto | 2022-02-27 | 7 | -65/+20 |
| | | |||||
| * | Moved random_cube() from cube.c to commands.c and fixed a bug in corners ↵ | Sebastiano Tronto | 2022-02-27 | 5 | -43/+67 |
| | | | | | | | only and edges only scrambles. Added fmc scrambles (with R'U'F). Updated manpage for scramble and cleanup. | ||||
| * | Changed unniss() to return an Alg*. Addedd inplace() to run a function on an ↵ | Sebastiano Tronto | 2022-02-27 | 4 | -14/+24 |
| | | | | | alg in place. | ||||
| * | Removed possible cancellable moves from 2phase solver | Sebastiano Tronto | 2022-02-25 | 1 | -2/+5 |
| | | |||||
| * | Added cleanup command | Sebastiano Tronto | 2022-02-25 | 3 | -0/+145 |
| | | |||||
| * | Fixed bug in using niss | Sebastiano Tronto | 2022-02-21 | 1 | -1/+1 |
| | | |||||
| * | Fixed bug in reading scrambles with unmatched parentheses | Sebastiano Tronto | 2022-02-13 | 2 | -14/+12 |
| | | |||||
| * | Added one adhoc test (cornerhtr from CO) | Sebastiano Tronto | 2022-01-15 | 3 | -23/+28 |
| | | |||||
| * | Added option -i to accept scramble(s) from stdin, very useful for batch mode | Sebastiano Tronto | 2021-12-27 | 4 | -16/+37 |
| | | |||||
| * | Added scramble command | Sebastiano Tronto | 2021-12-26 | 5 | -31/+181 |
| | | |||||
| * | Added two-phase solver | Sebastiano Tronto | 2021-12-26 | 7 | -32/+165 |
| | | |||||
| * | Better trans-detection system (for e.g. drfin for HTR scramble) | Sebastiano Tronto | 2021-12-26 | 3 | -149/+93 |
| | | |||||
| * | Added -O option for solve (specify number of moves within optimal) | Sebastiano Tronto | 2021-12-25 | 3 | -9/+24 |
| | | |||||
| * | Added the invert and unniss commands | Sebastiano Tronto | 2021-12-25 | 2 | -1/+52 |
| | | |||||
| * | Transform solutions early so that -v gives meaningful info | Sebastiano Tronto | 2021-12-25 | 1 | -11/+15 |
| | | |||||
| * | Changed -s (max solutions) option to -n and -n (NISS) to -N | Sebastiano Tronto | 2021-12-25 | 1 | -2/+2 |
| | | |||||
| * | Better error message when option for solve is unrecognized | Sebastiano Tronto | 2021-12-25 | 1 | -3/+12 |
| | | |||||
| * | added some optimal-after-EO steps | Sebastiano Tronto | 2021-12-24 | 1 | -0/+63 |
| | | |||||
| * | Fixed bug that prevented switching depending on branch factor (leftover from ↵ | Sebastiano Tronto | 2021-12-24 | 1 | -3/+0 |
| | | | | | previous debugging) | ||||
| * | Changed default behavior of -s | Sebastiano Tronto | 2021-12-24 | 1 | -0/+10 |
| | | |||||
| * | Added -c option for solve | Sebastiano Tronto | 2021-12-24 | 3 | -1/+29 |
| | | |||||
| * | use nxopt31 (compressed) by default for optimal solving | Sebastiano Tronto | 2021-12-24 | 4 | -23/+37 |
| | | |||||
| * | Fixes for yesterday's commit | Sebastiano Tronto | 2021-12-23 | 4 | -12/+31 |
| | | |||||
| * | Added the possibility to compress tables to 2 bits per entry. | Sebastiano Tronto | 2021-12-23 | 3 | -33/+108 |
| | | | | | | | | | | | | | This is done similarly to nxopt: one base value is selected and entries are memorized based on that base value. Values higher than base+3 are returned as base+3 (still a valid estimate) and values lower or equal to base require a lookup on a "fallback" table, which must give a valid estimate for the larger one (e.g. nxopt31 or khuge can fallback to drud_sym16). I have also added some info to the pruning table files: base value and distribution. Unfortunately this means that everyone who has used nissy 2.0beta has to re-generate the tables. | ||||
| * | fixed typo | Sebastiano Tronto | 2021-12-22 | 1 | -2/+1 |
| | | |||||
| * | some progress | Sebastiano Tronto | 2021-12-17 | 7 | -62/+31 |
| | | |||||
| * | Added a new pruning table (equivalent to nxopt31). I have not tested it yet, ↵ | Sebastiano Tronto | 2021-12-16 | 14 | -323/+547 |
| | | | | | | | | it takes a while to generate. Plus I have done a whole lot of refactoring in random places because I cannot focus on one thing at the time. | ||||
| * | fixed a bug | Sebastiano Tronto | 2021-12-14 | 1 | -0/+4 |
| | | |||||
| * | Added light optimal solver - about 5 times slower but takes only 500Mb of RAM | Sebastiano Tronto | 2021-12-14 | 1 | -7/+119 |
| | | |||||
| * | Better output in batch mode | Sebastiano Tronto | 2021-12-14 | 1 | -5/+14 |
| | | |||||
| * | removed old inverse_cube() | Sebastiano Tronto | 2021-12-14 | 1 | -38/+0 |
| | | |||||
| * | minor restyling | Sebastiano Tronto | 2021-12-14 | 1 | -2/+3 |
| | | |||||
| * | little restyling | Sebastiano Tronto | 2021-12-14 | 1 | -24/+19 |
| | | |||||
| * | random attempts | Sebastiano Tronto | 2021-12-14 | 1 | -27/+29 |
| | | |||||
| * | Faster optimal solver. | Sebastiano Tronto | 2021-12-13 | 8 | -287/+616 |
| | | | | | | | | | | | | This is a pretty big one, but unfortunately performance only improved by about 5%. I implemented one of the main ideas of nxopt, that is switching to the inverse scramble on the fly if it gives a lower branching factor. On the one hand it makes sense that it does not have such a huge impact, since it only rarely happens that we do have a lower branching factor on inverse, but on the other hand I am quite sad that the improvement is barely noticeable :-( Maybe the problem is that I have introduced a lot of new overhead and I can improve that in the future. Or maybe I am just overlooking something stupid. | ||||
| * | Faster inverse cube; makes optimal solving about 30% faster | Sebastiano Tronto | 2021-12-12 | 5 | -1/+241 |
| | | |||||
| * | Improved where_is_edge | Sebastiano Tronto | 2021-12-11 | 1 | -19/+13 |
| | | |||||
| * | Added batch mode | Sebastiano Tronto | 2021-12-10 | 2 | -10/+18 |
| | | |||||
| * | Fixed segfault when passing malformed command arguments to solve | Sebastiano Tronto | 2021-12-10 | 1 | -4/+4 |
| | | |||||
| * | Added gen command and modified installation instructions for tables | Sebastiano Tronto | 2021-12-10 | 3 | -0/+74 |
| | | |||||
| * | Fixed genptable for small tables and tables that do not use symmetry | Sebastiano Tronto | 2021-12-09 | 1 | -1/+5 |
| | | |||||
| * | Multi-threaded pruning table generation - now it's actually fast :) | Sebastiano Tronto | 2021-12-09 | 6 | -37/+114 |
| | | |||||
| * | Just refortmatting and added one type | Sebastiano Tronto | 2021-12-08 | 3 | -170/+191 |
| | | |||||
| * | tiny cleanup | Sebastiano Tronto | 2021-12-08 | 1 | -1/+1 |
| | | |||||
| * | Cleanup | Sebastiano Tronto | 2021-12-08 | 1 | -176/+0 |
| | | |||||
| * | Faster and nice pruning table generation. Can still be improved with ↵ | Sebastiano Tronto | 2021-12-08 | 4 | -38/+110 |
| | | | | | multithreading. | ||||
| * | Faster ptable generation (but I can make it faster) | Sebastiano Tronto | 2021-12-08 | 1 | -9/+45 |
| | | |||||
| * | Expanded on previous comment: now it contains an idea of solution | Sebastiano Tronto | 2021-12-07 | 1 | -0/+19 |
| | | |||||
| * | Just added a comment | Sebastiano Tronto | 2021-12-07 | 1 | -0/+8 |
| | | |||||
