Skip to content

Commit

Permalink
Assembly v 4.1.5 (6.04.24)
Browse files Browse the repository at this point in the history
  • Loading branch information
adslbarxatov committed Apr 6, 2024
1 parent 041f81f commit 87b558c
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
# Константы, используемые далее по тексту
env:
PROJ: ${{ github.event.repository.name }}
TAG: '4.1.4'
TAG: '4.1.5'

steps:
# Проверка состава репозитория (без анализа, как может показаться)
Expand Down
7 changes: 3 additions & 4 deletions .release/Release.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
_Changes for v 4.1.4_:
_Changes for v 4.1.5_:
- Updated the HypeHelp links list;
- Update for XPUN has been applied;
- Core updates have been applied;
- The solution method has been incapsulated with the stand-alone thread (non-abortable for now);
- Loading of the file will not start the solution method anymore
- Core updates have been applied
Binary file added .release/SudokuSolver.exe
Binary file not shown.
22 changes: 22 additions & 0 deletions .release/SudokuSolver_en_us.dph
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
This tool allows you to solve default (9 × 9) sudoku tables.

Solution based on recursive function that builds series of “assumptions” and finds first one that doesn’t conflict with sudoku game rules. Also tool uses binary representation of known (7 → 001000000b) and unknown (1 or 2 or 6 → 000100011b) numbers for simplifying solution process.

Warning! This method always finishes with some result (it is finite). But in some cases it can take some time. This behavior is correct for the application.


Controls:

- [1] – [9] – press these numbers while on cells to enter them;
- any other character – to clear selected cell;
- [F5] – to run the solution process:
- you will get red cells if your table is unsolvable (has or leads to a duplication of values);
- you will get green cells when a solution is found;
- [F8] – to clear only found cells;
- [F12] – to clear all cells;
- [F3] – to load the table from file;
- [F4] – to save the table to file;
- [F1] – to get the quick help;
- [←], [→], [↑], [↓] – to move over the field;
- mouse buttons – to change values;
- [Alt] + [F4] – to exit the application
22 changes: 22 additions & 0 deletions .release/SudokuSolver_ru_ru.dph
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Этот инструмент позволяет решать стандартные (9 × 9) судоку.

Решение основано на рекурсивной функции, строящей серии «предположений» и возвращающей первое из них, которое не конфликтует с правилами судоку. Программа использует бинарное представление известных (7 → 001000000b) и неизвестных (1 или 2 или 6 → 000100011b) значений для упрощения поиска решения.

Внимание! Этот метод всегда завершает работу с каким-либо результатом (является конечным). Но в некоторых случаях это может занять некоторое время. Такое поведение является нормой для приложения.


Управление:

- [1] – [9] – нажимайте эти цифры, находясь в ячейках, чтобы ввести их;
- любой другой символ – чтобы очистить выделенную ячейку;
- [F5] – чтобы запустить процесс решения:
- вы получите красные ячейки, если ваша таблица неразрешима (имеет или приводит к дублированию значений);
- вы получите зелёные клетки, когда решение будет найдено;
- [F8] – чтобы очистить только найденные клетки;
- [F12] – чтобы очистить все ячейки;
- [F3] – загрузить таблицу из файла;
- [F4] – сохранить таблицу в файл;
- [F1] – получить краткую справку;
- [←], [→], [↑], [↓] – для перемещения по полю;
- кнопки мыши – для изменения значений;
- [Alt] + [F4] – для выхода из приложения
3 changes: 3 additions & 0 deletions Changes.log
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Sudoku solver: changes log

Version 4.1.5:
• Updated the HypeHelp links list

Version 4.1.4:
• Update for XPUN has been applied

Expand Down

0 comments on commit 87b558c

Please sign in to comment.