Changeset 6624 for branches/SimulationCore
- Timestamp:
- 08/02/11 17:03:10 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/SimulationCore/HeuristicLab.SimulationCore.Samples/3.3/GameOfLifeScenario.cs
r6623 r6624 46 46 public GameOfLifeScenario() 47 47 : 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))); 50 50 Parameters.Add(new ValueParameter<PercentValue>("AliveRate", "The rate of the initialyy alive cells.", new PercentValue(0.5))); 51 51 }
Note: See TracChangeset
for help on using the changeset viewer.