Free cookie consent management tool by TermsFeed Policy Generator

Changeset 6624


Ignore:
Timestamp:
08/02/11 17:03:10 (13 years ago)
Author:
svonolfe
Message:

Updated the default parameters of the game of life simulation sample (#1610)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/SimulationCore/HeuristicLab.SimulationCore.Samples/3.3/GameOfLifeScenario.cs

    r6623 r6624  
    4646    public GameOfLifeScenario()
    4747      : base() {
    48       Parameters.Add(new ValueParameter<IntValue>("Width", "The width value.", new IntValue(10)));
    49       Parameters.Add(new ValueParameter<IntValue>("Height", "The height value.", new IntValue(10)));
     48      Parameters.Add(new ValueParameter<IntValue>("Width", "The width value.", new IntValue(100)));
     49      Parameters.Add(new ValueParameter<IntValue>("Height", "The height value.", new IntValue(100)));
    5050      Parameters.Add(new ValueParameter<PercentValue>("AliveRate", "The rate of the initialyy alive cells.", new PercentValue(0.5)));
    5151    }
Note: See TracChangeset for help on using the changeset viewer.