From 8fa95f65cfc7b10f520e86970edd0ad7be8d7bac Mon Sep 17 00:00:00 2001 From: Technote Date: Mon, 3 Aug 2020 02:18:05 +0900 Subject: [PATCH 1/3] chore: remove debug code --- src/logic/ga/Algorithm/Ga.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/logic/ga/Algorithm/Ga.ts b/src/logic/ga/Algorithm/Ga.ts index 1079743..8b65c16 100644 --- a/src/logic/ga/Algorithm/Ga.ts +++ b/src/logic/ga/Algorithm/Ga.ts @@ -23,7 +23,6 @@ export abstract class Ga extends GeneticAlgorithmBase { } public async init(context: Context): Promise { - console.log(context); const testData = new TestData(context.target); const culturalIslandNumber = Math.floor(context.islandNumber * context.culturalIslandRate); const islandNumber = context.islandNumber - culturalIslandNumber; From 42b3f0b821ab4778584002a58bc5ac8c05a315ad Mon Sep 17 00:00:00 2001 From: technote-space Date: Sun, 2 Aug 2020 17:23:56 +0000 Subject: [PATCH 2/3] chore: update npm dependencies --- package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 0ad6e1c..4d34630 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ "main": "build/index.js", "dependencies": { "@material-ui/core": "^4.11.0", - "@technote-space/ga-framework": "^0.14.2", + "@technote-space/ga-framework": "^0.14.3", "@technote-space/genetic-algorithms-js": "^0.8.2", "axios": "^0.19.2", "encoding-japanese": "^1.0.30", diff --git a/yarn.lock b/yarn.lock index 43c4710..765d7f5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1289,10 +1289,10 @@ dependencies: mkdirp "^1.0.4" -"@technote-space/ga-framework@^0.14.2": - version "0.14.2" - resolved "https://registry.yarnpkg.com/@technote-space/ga-framework/-/ga-framework-0.14.2.tgz#ce9528d47119387f773466caf2dabec344275d87" - integrity sha512-aNfa9Vfs7YkCMdpHbR+Q7tVx3CP+0mcyBglMV8bWwQpUCzJ4TWSPs8620fp1Y5SvYrbggxvTKz9FDuBD75qCXw== +"@technote-space/ga-framework@^0.14.3": + version "0.14.3" + resolved "https://registry.yarnpkg.com/@technote-space/ga-framework/-/ga-framework-0.14.3.tgz#a97199ebd622c0cdc5f0bdcf7bd93c7fd342006a" + integrity sha512-2UgL7HSzU+3eJstAgRKIwv/2S04JxBiL3u+iDtLnZQ3zQxRSptDYUTz5XsabXCC4OtH7EFRqwXNHvI14KL74Cg== dependencies: "@egjs/hammerjs" "^2.0.17" "@material-ui/core" "^4.11.0" From 9ad6c18d18489ce51bf2443cc71163da91054bd2 Mon Sep 17 00:00:00 2001 From: Technote Date: Mon, 3 Aug 2020 02:24:19 +0900 Subject: [PATCH 3/3] feat: update package version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4d34630..7c8e24e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@technote-space/hello-genetic-algorithm", - "version": "0.1.3", + "version": "0.1.4", "description": "Hello Genetic Algorithm", "author": { "name": "Technote",