modify package.json, minor README edits

This commit is contained in:
Adam Piontek 2022-09-08 06:44:01 -04:00
parent e595ab3f52
commit cbb5405283
2 changed files with 6 additions and 6 deletions

View file

@ -10,7 +10,7 @@ The most significant addition is that this solver will return one possible "best
This can help with games where the goal is not clearing the board, but clearing a certain set of cards or hitting a threshold of points.
*NOTE:* The "best path" returned is the first one found that clears the most cards. Hypothetically, a board could have multiple paths to clear the same number of cards cards, and the path the solver returns might not clear the cards you need to clear.
*NOTE:* The "best path" returned is the first one found that clears the most cards. Hypothetically, a board could have multiple paths to clear the same number of cards. The path the solver returns might not clear the cards you need to clear. A possible future improvement could be returning, say, the top 5 best paths.
*NOTE:* Unsolvable boards can take a long time to process, so be patient. The sample unsolvable board below takes my computer almost 6 minutes to conclude.

View file

@ -1,6 +1,6 @@
{
"name": "javascript-tri-peaks-solitaire-solver",
"version": "1.0.0",
"version": "1.0.1",
"description": "A brute force solver for tri peaks solitaire written in javascript",
"main": "solver.js",
"scripts": {
@ -10,14 +10,14 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/IgniparousTempest/javascript-tri-peaks-solitaire-solver.git"
"url": "git+https://github.com/apiontek/javascript-tri-peaks-solitaire-solver.git"
},
"author": "Courtney Pitcher",
"author": "Adam Piontek, Courtney Pitcher",
"license": "ISC",
"bugs": {
"url": "https://github.com/IgniparousTempest/javascript-tri-peaks-solitaire-solver/issues"
"url": "https://github.com/apiontek/javascript-tri-peaks-solitaire-solver/issues"
},
"homepage": "https://github.com/IgniparousTempest/javascript-tri-peaks-solitaire-solver#readme",
"homepage": "https://github.com/apiontek/javascript-tri-peaks-solitaire-solver#readme",
"devDependencies": {
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",