Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Optimize solving efficiency. #94

Open
wants to merge 54 commits into
base: dev
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
a532dee
Logical descriptions
dclamage Sep 26, 2021
4d2b8e8
Improved AIC behavior.
dclamage Sep 29, 2021
7709d21
Generic "N"-Wings (XYZ-Wings, WXYZ-Wings, etc)
dclamage Sep 29, 2021
837f644
Fixed labeling of constraint logic
dclamage Sep 29, 2021
a3ddfee
Fix for constraints adding empty lines to logical steps
dclamage Sep 29, 2021
dfe336b
CountSolutions behaves the same single and multithreaded.
dclamage Sep 30, 2021
f81de7d
Added direct cell forcing chains.
dclamage Oct 8, 2021
d1159fe
Improved Little Killer summation logic by splitting it into groups wh…
dclamage Oct 8, 2021
dd5d2ac
Improved and combined killer/little killer logic, including a generic…
dclamage Oct 15, 2021
5b0894d
Finned fishes, improved unorthodox tuples.
dclamage Oct 18, 2021
cee52ef
Various fixes in Arrow logic where grid > 9*9
madformuse Oct 20, 2021
74212bb
Add unit tests for ArrowSumConstraint
madformuse Oct 20, 2021
b2eaca8
Correct 9*9 assumptions in InitCandidates
madformuse Oct 20, 2021
c226605
Stop abusing Strings when calculating digits in number
madformuse Oct 21, 2021
96e8fcc
Improve performance and useability of Int32 subsections
madformuse Oct 22, 2021
13cff30
Region Sum Lines Constraint support
dclamage Oct 25, 2021
2d190ff
Added indexer constraints (159)
dclamage Nov 6, 2021
ca5099f
Github actions from master
dclamage Nov 6, 2021
371e3e1
Updated version to 0.4.0
dclamage Nov 6, 2021
518dee0
Considering addtional constraints from comand line in f-puzzles integ…
mutualtape Nov 7, 2021
050d8ec
Updated to .NET 6.0 with C#10
dclamage Nov 9, 2021
2c98111
Added two missing constraints.
dclamage Nov 9, 2021
c30ecb0
Cell and Region Forcing Chains
dclamage Nov 10, 2021
3ae5459
Added weak links to indexer, killer, and little killer constraints.
dclamage Nov 11, 2021
a791965
Weak link evaluation for many more constraints.
dclamage Nov 11, 2021
6681cb0
Pointing within constraints that must contain a value.
dclamage Nov 11, 2021
8390ab5
Added x-sum and skyscraper constraints to the user script
dclamage Nov 12, 2021
eb0b9d5
Improved conflict highlighting and visual look of skyscraper/xsums
dclamage Nov 12, 2021
8a47319
Fix location in the constraint list.
dclamage Nov 12, 2021
7330a35
Fix for forcing chains reporting phantom eliminations.
dclamage Nov 25, 2021
95b0e33
DNL no longer eliminates the candidates which will eliminate after th…
dclamage Nov 25, 2021
9aba42a
Don't report a strong link as ALS if between only two cells (for brev…
dclamage Nov 25, 2021
8412f34
Chess constraint can be limited to specific cells.
dclamage Nov 28, 2021
c0e648a
X-Sums and Skyscraper constraints
dclamage Jan 25, 2022
c0c485e
Replaced zip action with one that isn't deleted.
dclamage Jan 25, 2022
4a12f7e
Better fix for zipping
dclamage Jan 25, 2022
5c81d32
True candidates button now plays nicely with other user scripts that …
dclamage Jan 29, 2022
b70f703
Additional improvement to the true candidates button layouting.
dclamage Jan 29, 2022
0056f98
Console overlap fix
dclamage Jan 30, 2022
2770e58
Removed unused, incorrect CellValue function
dclamage Feb 2, 2022
2ee31d3
Escaping unicode characters
dclamage Feb 20, 2022
33fead9
Fix for skyscraper constraint incorrectly reporting invalid when cell…
dclamage Feb 23, 2022
7ec25b9
Additional skyscraper contraint fixes.
dclamage Feb 24, 2022
7f6d38d
Multi-sum killer cage constraint
dclamage Mar 25, 2022
06dc44c
Added: Entropic Line Constraint to javascript
mosswg Mar 26, 2022
7892adf
Fixed: Logic Error in JavaScript
mosswg Mar 27, 2022
0f6e3cf
Added: Entropic Line Constraint to C#
mosswg Mar 27, 2022
321ada5
Added: Basic Solving Logic
mosswg Mar 27, 2022
8ce4087
Added: Logic for Groups that Share a Line or Box
mosswg Mar 27, 2022
8eb7712
Fixed: Issue with Conflict Highlighting
mosswg Mar 27, 2022
e5ae62a
Added: Test Puzzle for Entropic Lines
mosswg Mar 27, 2022
0fcd10d
Fixed: Auto-formatting Issues
mosswg Mar 28, 2022
9989928
Improve performance of PermutationsHelper
marknn3 Mar 6, 2022
d06eea4
Update data type of weaklink, in order to optimize the speed of AIC s…
BloodmageThalnos Apr 13, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Replaced zip action with one that isn't deleted.
dclamage committed Jan 25, 2022
commit c0c485e40e73e82091facad1446c1c7ed7ce24a3
10 changes: 4 additions & 6 deletions .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
@@ -34,19 +34,17 @@ jobs:
- name: Delete pdbs
run: rm ./publish-win-x64/*.pdb
- name: Zip win-x64
uses: papeloto/action-zip@v1
uses: montudor/action-zip@v1
with:
files: publish-win-x64/ UserScripts/ Windows/
dest: SudokuSolver-${{ env.VERSION }}-win-x64.zip
args: zip -qq -r SudokuSolver-${{ env.VERSION }}-win-x64.zip publish-win-x64 UserScripts Windows
- name: Publish win10-arm64
run: dotnet publish ./SudokuSolverConsole/SudokuSolverConsole.csproj --nologo -c Release -r win10-arm64 -p:PublishSingleFile=true --self-contained true --no-restore -o publish-win10-arm64
- name: Delete pdbs
run: rm ./publish-win10-arm64/*.pdb
- name: Zip win10-arm64
uses: papeloto/action-zip@v1
uses: montudor/action-zip@v1
with:
files: publish-win10-arm64/ UserScripts/ Windows/
dest: SudokuSolver-${{ env.VERSION }}-win10-arm64.zip
files: zip -qq -r SudokuSolver-${{ env.VERSION }}-win10-arm64.zip publish-win10-arm64 UserScripts Windows
- name: Publish linux-x64
run: dotnet publish ./SudokuSolverConsole/SudokuSolverConsole.csproj --nologo -c Release -r linux-x64 -p:PublishSingleFile=true --self-contained true --no-restore -o publish-linux-x64
- name: Delete pdbs