Skip to content

Commit

Permalink
1.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Riva committed Mar 30, 2019
1 parent a498345 commit 8c014f9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/genome.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "genome.js",
"version": "1.1.9",
"version": "1.1.10",
"description": "Genetics algorithms done right",
"main": "dist/genome.min.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/core/Chromosome.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export class Chromosome {
private genes: Gene[];
private constants: Gene[];
private fitness: number;
public readonly isKilled: boolean;
public isKilled: boolean;
constructor(blueprint: Blueprint | null = null) {
this.genes = [];
this.constants = [];
Expand Down

0 comments on commit 8c014f9

Please sign in to comment.