Skip to content

Commit

Permalink
refactor: minor fixes (cont.) #41
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiomrebelo committed Jul 19, 2023
1 parent 8863adf commit 12f1826
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions cypress/e2e/generator.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ const inputText = {
},
evo: {
popSize: {
init: 10,
testing: 20
init: 20,
testing: 10
},
noGen: {
init: 1000,
Expand All @@ -74,8 +74,8 @@ const inputText = {
testing: 0.5
},
mutate: {
init: 0.1,
testing: 0.3
init: 0.3,
testing: 0.1
}
},
grid: true
Expand Down
2 changes: 1 addition & 1 deletion src/client/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ window.windowResized = () => {
window.keyPressed = () => {
if (window.app.screen < 2) return null;
if (key.toUpperCase() === 'S') {
window.app.save();
// window.app.save();
}
}

Expand Down

0 comments on commit 12f1826

Please sign in to comment.