| Commit message (Collapse) | Author | Files | Lines | ||
|---|---|---|---|---|---|
| 2021-12-23 | Fixes for yesterday's commit | Sebastiano Tronto | 4 | -12/+31 | |
| 2021-12-23 | Added the possibility to compress tables to 2 bits per entry. | Sebastiano Tronto | 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. | |||||
| 2021-12-22 | fixed typo | Sebastiano Tronto | 1 | -2/+1 | |
| 2021-12-17 | some progress | Sebastiano Tronto | 7 | -62/+31 | |
| 2021-12-16 | Added a new pruning table (equivalent to nxopt31). I have not tested it yet, ↵ | Sebastiano Tronto | 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. | |||||
| 2021-12-14 | fixed a bug | Sebastiano Tronto | 1 | -0/+4 | |
| 2021-12-14 | Added light optimal solver - about 5 times slower but takes only 500Mb of RAM | Sebastiano Tronto | 1 | -7/+119 | |
| 2021-12-14 | Better output in batch mode | Sebastiano Tronto | 1 | -5/+14 | |
| 2021-12-14 | removed old inverse_cube() | Sebastiano Tronto | 1 | -38/+0 | |
| 2021-12-14 | minor restyling | Sebastiano Tronto | 1 | -2/+3 | |
| 2021-12-14 | little restyling | Sebastiano Tronto | 1 | -24/+19 | |
| 2021-12-14 | random attempts | Sebastiano Tronto | 1 | -27/+29 | |
| 2021-12-13 | Faster optimal solver. | Sebastiano Tronto | 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. | |||||
| 2021-12-12 | Faster inverse cube; makes optimal solving about 30% faster | Sebastiano Tronto | 5 | -1/+241 | |
| 2021-12-11 | Improved where_is_edge | Sebastiano Tronto | 1 | -19/+13 | |
| 2021-12-10 | Added batch mode | Sebastiano Tronto | 2 | -10/+18 | |
| 2021-12-10 | Fixed segfault when passing malformed command arguments to solve | Sebastiano Tronto | 1 | -4/+4 | |
| 2021-12-10 | Added gen command and modified installation instructions for tables | Sebastiano Tronto | 3 | -0/+74 | |
| 2021-12-09 | Fixed genptable for small tables and tables that do not use symmetry | Sebastiano Tronto | 1 | -1/+5 | |
| 2021-12-09 | Multi-threaded pruning table generation - now it's actually fast :) | Sebastiano Tronto | 6 | -37/+114 | |
| 2021-12-08 | Just refortmatting and added one type | Sebastiano Tronto | 3 | -170/+191 | |
| 2021-12-08 | tiny cleanup | Sebastiano Tronto | 1 | -1/+1 | |
| 2021-12-08 | Cleanup | Sebastiano Tronto | 1 | -176/+0 | |
| 2021-12-08 | Faster and nice pruning table generation. Can still be improved with ↵ | Sebastiano Tronto | 4 | -38/+110 | |
| multithreading. | |||||
| 2021-12-08 | Faster ptable generation (but I can make it faster) | Sebastiano Tronto | 1 | -9/+45 | |
| 2021-12-07 | Expanded on previous comment: now it contains an idea of solution | Sebastiano Tronto | 1 | -0/+19 | |
| 2021-12-07 | Just added a comment | Sebastiano Tronto | 1 | -0/+8 | |
| 2021-12-07 | Little performance improvement in optimal solver - more to come! | Sebastiano Tronto | 4 | -166/+274 | |
| 2021-12-06 | Fixed typo in comment | Sebastiano Tronto | 1 | -1/+1 | |
| 2021-12-03 | Removed some useless spaces (they made some sense once) | Sebastiano Tronto | 1 | -9/+9 | |
| 2021-12-03 | Some attempts at using the inverse scramble to get more info for pruning ↵ | Sebastiano Tronto | 2 | -15/+32 | |
| (optimal solving) | |||||
| 2021-12-03 | Moved a bunch of commented code to the bottom of the file. I still don't ↵ | Sebastiano Tronto | 1 | -121/+116 | |
| want to throw it away and it makes sense to keep it in this file for quick lookup. | |||||
| 2021-11-28 | Added possibility of having end-of-line comments with double slash (single ↵ | Sebastiano Tronto | 1 | -2/+13 | |
| slash actually); fixed a small memory leak | |||||
| 2021-11-26 | Fixing the fix (the previous commit introduced a bug when the step was not ↵ | Sebastiano Tronto | 2 | -3/+3 | |
| specified) + minor fixes in shell | |||||
| 2021-11-25 | Fixed a bug in freeing memory after execution of certain commands (thanks to ↵ | Sebastiano Tronto | 2 | -16/+23 | |
| Tommaso for reporting) | |||||
| 2021-11-20 | Added windows binary | Sebastiano Tronto | 1 | -5/+18 | |
| 2021-11-20 | Bugfix in reading scramble | Sebastiano Tronto | 2 | -3/+3 | |
| 2021-11-20 | Fix typo in welcome message | Sebastiano Tronto | 1 | -2/+3 | |
| 2021-11-20 | Multithreading seems to be working now, it was easier than expected! | Sebastiano Tronto | 6 | -150/+333 | |
| 2021-11-17 | Use inttypes.h macros to print uint64_t variables (this requires -std=c99). ↵ | Sebastiano Tronto | 3 | -11/+9 | |
| Added a couple of TODOs | |||||
| 2021-11-15 | Load all necessary pruning tables for a step before the actual solving process | Sebastiano Tronto | 6 | -21/+162 | |
| starts. This is in preparation for multi-threaded solving (but don't get hyped, it will take time). | |||||
| 2021-11-15 | Fixed used of uninitialized aux variable | Sebastiano Tronto | 1 | -1/+5 | |
| 2021-11-13 | Fixed a problem with htr-drud coordinates. The corresponding pruning table ↵ | Sebastiano Tronto | 4 | -19/+43 | |
| also changed, hopefully the new one is correct. | |||||
| 2021-11-12 | I tried to remove the dependence on antindex in order to get rid of them | Sebastiano Tronto | 4 | -24/+151 | |
| once and for all. I successfully removed from the pruning table generation part by using an alternative (slower) method, but then I realized that I also use antindexes when generating symmetry data. So I reverted to the original pruning table computation method, but I left the alternative way there, commented. | |||||
| 2021-11-12 | Some cleanup for antindeces; pointed out which return a consistent cube and ↵ | Sebastiano Tronto | 1 | -20/+54 | |
| which do not | |||||
| 2021-11-12 | Unimportant fixed | Sebastiano Tronto | 2 | -1/+4 | |
| 2021-11-12 | Fixed anti-index for eofbepos. It did not compute a value for eorl, which | Sebastiano Tronto | 1 | -1/+28 | |
| causes problems when using this coordinate combined with symmetries (e.g. in symcoord khuge, drud and similar). This actually reverts a change that I made before the first commit of v2. | |||||
| 2021-11-11 | Rewritten from scratch. Welocme nissy 2.0! | Sebastiano Tronto | 39 | -4573/+5484 | |
| 2020-09-22 | Added CO first command | Sebastiano Tronto | 4 | -72/+283 | |
| 2020-09-19 | Bugfix: NISS and pruning table check | Sebastiano Tronto | 1 | -30/+25 | |
