Changeset 15289 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Configuration
- Timestamp:
- 07/26/17 19:34:13 (7 years ago)
- Location:
- branches/PushGP/HeuristicLab.PushGP
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP
-
Property
svn:ignore
set to
*.user
-
Property
svn:ignore
set to
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Configuration/IEnabledExpressionsConfiguration.cs
r15273 r15289 20 20 int InExpressionCount { get; } 21 21 22 22 23 IReadOnlyList<string> EnabledExpressions { get; } 23 24 IReadOnlyDictionary<StackTypes, int> ExpressionsPerStackCount { get; } -
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Configuration/IReadonlyPushConfiguration.cs
r15273 r15289 1 1 namespace HeuristicLab.Problems.ProgramSynthesis.Push.Configuration { 2 using System.Collections.Generic;3 2 using Base.Erc; 4 3 … … 6 5 7 6 public interface IReadOnlyPushConfiguration : IReadOnlyExpressionsConfiguration { 8 int Seed { get; }9 7 int EvalPushLimit { get; } 10 8 int MaxDepth { get; } … … 18 16 double ParenthesesCloseBiasLevel { get; } 19 17 IReadOnlyErcOptions ErcOptions { get; } 20 IReadOnlyList<string> EnabledExpressions { get; }21 18 string FloatStringFormat { get; } 22 19 -
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Configuration/PushConfiguration.cs
r15032 r15289 52 52 53 53 54 IReadOnlyList<string> IReadOnly PushConfiguration.EnabledExpressions { get { return enabledExpressions; } }54 IReadOnlyList<string> IReadOnlyExpressionsConfiguration.EnabledExpressions { get { return enabledExpressions; } } 55 55 56 56 [Storable] -
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Configuration/PushConfigurationParameterCollection.cs
r15273 r15289 154 154 } 155 155 156 IReadOnlyList<string> IReadOnly PushConfiguration.EnabledExpressions156 IReadOnlyList<string> IReadOnlyExpressionsConfiguration.EnabledExpressions 157 157 { 158 158 get
Note: See TracChangeset
for help on using the changeset viewer.