Changeset 6784 for branches/GP.Grammar.Editor/HeuristicLab.Optimization
- Timestamp:
- 09/16/11 12:00:36 (13 years ago)
- Location:
- branches/GP.Grammar.Editor/HeuristicLab.Optimization/3.3
- Files:
-
- 8 edited
- 3 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/GP.Grammar.Editor/HeuristicLab.Optimization/3.3/BatchRun.cs
r6618 r6784 147 147 } 148 148 149 private bool stopPending; 149 private bool batchRunStarted = false; 150 private bool batchRunPaused = false; 151 private bool batchRunStopped = false; 150 152 151 153 public BatchRun() … … 158 160 repetitionsCounter = 0; 159 161 Runs = new RunCollection(); 160 stopPending = false;161 162 } 162 163 public BatchRun(string name) … … 168 169 repetitionsCounter = 0; 169 170 Runs = new RunCollection(); 170 stopPending = false;171 171 } 172 172 public BatchRun(string name, string description) … … 177 177 repetitionsCounter = 0; 178 178 Runs = new RunCollection(); 179 stopPending = false;180 179 } 181 180 [StorableConstructor] 182 private BatchRun(bool deserializing) 183 : base(deserializing) { 184 stopPending = false; 185 } 181 private BatchRun(bool deserializing) : base(deserializing) { } 186 182 [StorableHook(HookType.AfterDeserialization)] 187 183 private void AfterDeserialization() { … … 197 193 repetitionsCounter = original.repetitionsCounter; 198 194 runs = cloner.Clone(original.runs); 199 stopPending = original.stopPending; 195 batchRunStarted = original.batchRunStarted; 196 batchRunPaused = original.batchRunPaused; 197 batchRunStopped = original.batchRunStopped; 200 198 Initialize(); 201 199 } … … 227 225 if ((ExecutionState != ExecutionState.Prepared) && (ExecutionState != ExecutionState.Paused)) 228 226 throw new InvalidOperationException(string.Format("Start not allowed in execution state \"{0}\".", ExecutionState)); 229 if (Optimizer != null) Optimizer.Start(); 227 if (Optimizer == null) return; 228 229 batchRunStarted = true; 230 batchRunPaused = false; 231 batchRunStopped = false; 232 if (Optimizer.ExecutionState != ExecutionState.Prepared) Optimizer.Prepare(); 233 Optimizer.Start(); 230 234 } 231 235 public void Pause() { 232 236 if (ExecutionState != ExecutionState.Started) 233 237 throw new InvalidOperationException(string.Format("Pause not allowed in execution state \"{0}\".", ExecutionState)); 234 if ((Optimizer != null) && (Optimizer.ExecutionState == ExecutionState.Started)) 235 Optimizer.Pause(); 238 if (Optimizer == null) return; 239 if (Optimizer.ExecutionState != ExecutionState.Started) return; 240 241 batchRunStarted = false; 242 batchRunPaused = true; 243 batchRunStopped = false; 244 Optimizer.Pause(); 236 245 } 237 246 public void Stop() { 238 247 if ((ExecutionState != ExecutionState.Started) && (ExecutionState != ExecutionState.Paused)) 239 248 throw new InvalidOperationException(string.Format("Stop not allowed in execution state \"{0}\".", ExecutionState)); 240 stopPending = true; 241 if ((Optimizer != null) && 242 ((Optimizer.ExecutionState == ExecutionState.Started) || (Optimizer.ExecutionState == ExecutionState.Paused))) 243 Optimizer.Stop(); 249 if (Optimizer == null) return; 250 if (Optimizer.ExecutionState != ExecutionState.Started && Optimizer.ExecutionState != ExecutionState.Paused) return; 251 batchRunStarted = false; 252 batchRunPaused = false; 253 batchRunStopped = true; 254 Optimizer.Stop(); 244 255 } 245 256 … … 324 335 } 325 336 private void Optimizer_Paused(object sender, EventArgs e) { 326 OnPaused(); 337 if (ExecutionState == ExecutionState.Started) { 338 batchRunStarted = false; 339 batchRunPaused = true; 340 batchRunStopped = false; 341 OnPaused(); 342 } 327 343 } 328 344 private void Optimizer_Prepared(object sender, EventArgs e) { 329 if ( (ExecutionState == ExecutionState.Paused) || (ExecutionState == ExecutionState.Stopped))345 if (ExecutionState == ExecutionState.Stopped || !batchRunStarted) { 330 346 OnPrepared(); 347 } 331 348 } 332 349 private void Optimizer_Started(object sender, EventArgs e) { 333 stopPending = false;334 350 if (ExecutionState != ExecutionState.Started) 335 351 OnStarted(); … … 338 354 repetitionsCounter++; 339 355 340 if (!stopPending && (repetitionsCounter < repetitions)) { 356 if (batchRunStopped) OnStopped(); 357 else if (repetitionsCounter >= repetitions) OnStopped(); 358 else if (batchRunPaused) OnPaused(); 359 else if (batchRunStarted) { 341 360 Optimizer.Prepare(); 342 361 Optimizer.Start(); 343 } else { 344 OnStopped(); 345 } 362 } else OnStopped(); 346 363 } 347 364 private void Optimizer_Runs_CollectionReset(object sender, CollectionItemsChangedEventArgs<IRun> e) { -
branches/GP.Grammar.Editor/HeuristicLab.Optimization/3.3/Calculator.cs
r6675 r6784 1 1 using System; 2 2 using System.Collections.Generic; 3 using System.Drawing;4 3 using System.Linq; 5 4 using System.Text.RegularExpressions; … … 7 6 using HeuristicLab.Core; 8 7 using HeuristicLab.Data; 9 using HeuristicLab.Parameters;10 8 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 11 9 using System.Globalization; 12 10 13 namespace HeuristicLab.Optimization { 14 11 namespace HeuristicLab.Optimization { 12 15 13 [StorableClass] 16 14 public class Calculator : IDeepCloneable { 17 15 18 16 #region Fields & Properties 19 17 20 18 private List<string> tokens; 21 19 … … 26 24 } 27 25 28 private static readonly Regex TokenRegex = new Regex(@"[a-zA-Z0-9._]+|""([^""]|\"")+""|[-+*/^]|log"); 26 private static readonly Regex TokenRegex = 27 new Regex(@"[a-zA-Z0-9._]+|""([^""]|\\"")*""|'([^']|\\')*'|[-+*/<>^]|dup|swap|drop|log|true|false|if|==|not|isnull|null|ismatch|rename"); 29 28 30 29 #endregion … … 35 34 protected Calculator(bool deserializing) { } 36 35 public Calculator() { } 37 public Calculator(Calculator original, Cloner cloner) { 38 this.tokens = original.tokens.ToList(); 36 protected Calculator(Calculator original, Cloner cloner) { 37 cloner.RegisterClonedObject(original, this); 38 tokens = original.tokens.ToList(); 39 39 } 40 40 public IDeepCloneable Clone(Cloner cloner) { … … 46 46 #endregion 47 47 48 p ublic IEnumerable<string> Tokenize(string s) {48 private static IEnumerable<string> Tokenize(string s) { 49 49 return TokenRegex.Matches(s).Cast<Match>().Select(m => m.Value); 50 50 } 51 51 52 private double GetVariableValue(IDictionary<string, IItem> variables, string name) {53 if (variables.ContainsKey(name)) {54 var item = variables[name];55 var intValue = item as IntValue;56 if (intValue != null) {57 return intValue.Value;58 } else {59 var doubleValue = item as DoubleValue;60 if (doubleValue != null)61 return doubleValue.Value;62 else63 throw new InvalidOperationException("Non numerical argument");64 }65 } else {66 throw new InvalidOperationException(string.Format("variable \"{0}\" not found", name));67 }68 }69 70 52 public IItem GetValue(IDictionary<string, IItem> variables) { 71 var stack = new Stack<double>(); 72 Action<Func<double, double, double>> binf = op => { 73 var b = stack.Pop(); 74 stack.Push(op(stack.Pop(), b)); 75 }; 76 try { 77 foreach (var token in tokens) { 53 var stack = new Stack<object>(); 54 int i = 0; 55 try { 56 for (; i<tokens.Count; i++) { 57 var token = tokens[i]; 78 58 double d; 79 if (double.TryParse(token, 80 NumberStyles.AllowDecimalPoint | 81 NumberStyles.AllowExponent | 82 NumberStyles.AllowLeadingSign, CultureInfo.InvariantCulture, out d)) { 59 if (TryParse(token, out d)) { 83 60 stack.Push(d); 84 61 } else if (token.StartsWith("\"")) { 85 62 stack.Push(GetVariableValue(variables, token.Substring(1, token.Length - 2).Replace(@"\""", @""""))); 63 } else if (token.StartsWith("'")) { 64 stack.Push(token.Substring(1, token.Length-2).Replace("\'", "'")); 86 65 } else { 87 switch (token) { 88 case "log": stack.Push(Math.Log(stack.Pop())); break; 89 case "+": binf((x, y) => x + y); break; 90 case "-": binf((x, y) => x - y); break; 91 case "*": binf((x, y) => x * y); break; 92 case "/": binf((x, y) => x / y); break; 93 case "^": binf(Math.Pow); break; 94 default: stack.Push(GetVariableValue(variables, token)); break; 95 } 66 Apply(token, stack, variables); 96 67 } 97 68 } 98 } catch (InvalidOperationException x) { 99 return new StringValue(string.Format("Calculation Failed: {0}", x.Message)); 100 } 101 if (stack.Count != 1) 102 return new StringValue("Invalid final evaluation stack size != 1"); 103 return new DoubleValue(stack.Pop()); 104 } 69 } catch (Exception x) { 70 throw new Exception(string.Format( 71 "Calculation Failed at token #{1}: '{2}' {0}current stack is: {0}{3}", Environment.NewLine, 72 i, tokens[i], string.Join(Environment.NewLine, stack.Select(AsString))), 73 x); 74 } 75 if (stack.Count != 1) throw new Exception(string.Format("Invalid final evaluation stack size {0} (should be 1)", stack.Count)); 76 var result = stack.Pop(); 77 if (result is string) return new StringValue((string)result); 78 if (result is double) return new DoubleValue((double)result); 79 if (result is bool) return new BoolValue((bool)result); 80 return null; 81 } 82 83 private static void Apply(string token, Stack<object> stack, IDictionary<string, IItem> variables) { 84 switch (token) { 85 case "null": stack.Push(null); break; 86 case "true": stack.Push(true); break; 87 case "false": stack.Push(false); break; 88 89 case "drop": stack.Pop(); break; 90 case "dup": stack.Push(stack.Peek()); break; 91 case "swap": 92 var top = stack.Pop(); 93 var next = stack.Pop(); 94 stack.Push(top); 95 stack.Push(next); 96 break; 97 98 case "log": Apply(stack, x => Math.Log((double)x)); break; 99 case "+": Apply(stack, (x, y) => (double)x + (double)y); break; 100 case "-": Apply(stack, (x, y) => (double)x - (double)y); break; 101 case "*": Apply(stack, (x, y) => (double)x * (double)y); break; 102 case "/": Apply(stack, (x, y) => (double)x / (double)y); break; 103 case "^": Apply(stack, (x, y) => Math.Pow((double)x, (double)y)); break; 104 case "<": Apply(stack, (x, y) => (double)x < (double)y); break; 105 case ">": Apply(stack, (x, y) => (double)x > (double)y); break; 106 107 case "==": Apply(stack, (x, y) => Equal(x, y)); break; 108 case "not": Apply(stack, x => !(bool)x); break; 109 case "isnull": Apply(stack, x => x == null); break; 110 case "if": Apply(stack, (then, else_, cond) => (bool)cond ? then : else_); break; 111 112 case "ismatch": Apply(stack, (s, p) => new Regex((string)p).IsMatch((string)s)); break; 113 case "rename": Apply(stack, (s, p, r) => new Regex((string)p).Replace((string)s, (string)r)); break; 114 115 default: stack.Push(GetVariableValue(variables, token)); break; 116 } 117 } 118 119 #region Auxiliary Functions 120 121 #region IItem value conversion 122 private static object GetIntValue(IItem value) { 123 var v = value as IntValue; 124 if (v != null) return (double)v.Value; 125 return null; 126 } 127 128 private static object GetDoubleValue(IItem value) { 129 var v = value as DoubleValue; 130 if (v != null) return v.Value; 131 return null; 132 } 133 134 private static object GetBoolValue(IItem value) { 135 var v = value as BoolValue; 136 if (v != null) return v.Value; 137 return null; 138 } 139 140 private static object GetVariableValue(IDictionary<string, IItem> variables, string name) { 141 if (variables.ContainsKey(name)) { 142 var item = variables[name]; 143 return 144 GetIntValue(item) ?? 145 GetDoubleValue(item) ?? 146 GetBoolValue(item) ?? 147 item.ToString(); 148 } 149 return null; 150 } 151 #endregion 152 153 #region variadic equality 154 private static bool Equal(object a, object b) { return EqualNumber(a, b) || EqualBool(a, b) || EqualString(a, b) || a == b; } 155 private static bool EqualNumber(object a, object b) { return a is double && b is double && (double)a == (double)b; } 156 private static bool EqualBool(object a, object b) { return a is bool && b is bool && (bool)a == (bool)b; } 157 private static bool EqualString(object a, object b) { return a is string && b is string && ((string)a).Equals((string)b); } 158 #endregion 159 160 #region stack calculation 161 private static void Apply(Stack<object> stack, Func<object, object> func) { 162 if (stack.Count < 1) 163 throw new InvalidOperationException("Stack is empty"); 164 var a = stack.Pop(); 165 try { 166 stack.Push(func(a)); 167 } catch (Exception) { 168 stack.Push(a); 169 throw; 170 } 171 } 172 173 private static void Apply(Stack<object> stack, Func<object, object, object> func) { 174 if (stack.Count < 2) 175 throw new InvalidOperationException("Stack contains less than two elements"); 176 var b = stack.Pop(); 177 var a = stack.Pop(); 178 try { 179 stack.Push(func(a, b)); 180 } catch (Exception) { 181 stack.Push(b); 182 stack.Push(a); 183 throw; 184 } 185 } 186 187 private static void Apply(Stack<object> stack, Func<object, object, object, object> func) { 188 if (stack.Count < 3) 189 throw new InvalidOperationException("Stack contains less than three elements"); 190 var c = stack.Pop(); 191 var b = stack.Pop(); 192 var a = stack.Pop(); 193 try { 194 stack.Push(func(a, b, c)); 195 } catch (Exception) { 196 stack.Push(a); 197 stack.Push(b); 198 stack.Push(c); 199 throw; 200 } 201 } 202 #endregion 203 204 private static bool TryParse(string token, out double d) { 205 return double.TryParse(token, 206 NumberStyles.AllowDecimalPoint | 207 NumberStyles.AllowExponent | 208 NumberStyles.AllowLeadingSign, CultureInfo.InvariantCulture, out d); 209 } 210 211 private static string AsString(object o) { 212 if (o == null) return "null"; 213 if (o is string) return string.Format("'{0}'", o); 214 return o.ToString(); 215 } 216 217 #endregion 105 218 } 106 219 } -
branches/GP.Grammar.Editor/HeuristicLab.Optimization/3.3/Experiment.cs
r6618 r6784 104 104 } 105 105 106 private bool stopPending; 106 private bool experimentStarted = false; 107 private bool experimentStopped = false; 107 108 108 109 public Experiment() … … 114 115 optimizers = new OptimizerList(); 115 116 Runs = new RunCollection(); 116 stopPending = false;117 117 Initialize(); 118 118 } … … 124 124 optimizers = new OptimizerList(); 125 125 Runs = new RunCollection(); 126 stopPending = false;127 126 Initialize(); 128 127 } … … 133 132 optimizers = new OptimizerList(); 134 133 Runs = new RunCollection(); 135 stopPending = false;136 134 Initialize(); 137 135 } 138 136 [StorableConstructor] 139 private Experiment(bool deserializing) 140 : base(deserializing) { 141 stopPending = false; 142 } 137 private Experiment(bool deserializing) : base(deserializing) { } 143 138 [StorableHook(HookType.AfterDeserialization)] 144 139 private void AfterDeserialization() { … … 151 146 optimizers = cloner.Clone(original.optimizers); 152 147 runs = cloner.Clone(original.runs); 153 stopPending = original.stopPending; 148 149 experimentStarted = original.experimentStarted; 150 experimentStopped = original.experimentStopped; 154 151 Initialize(); 155 152 } … … 172 169 if ((ExecutionState != ExecutionState.Prepared) && (ExecutionState != ExecutionState.Paused) && (ExecutionState != ExecutionState.Stopped)) 173 170 throw new InvalidOperationException(string.Format("Prepare not allowed in execution state \"{0}\".", ExecutionState)); 174 if (Optimizers.Count > 0) { 175 if (clearRuns) runs.Clear(); 176 foreach (IOptimizer optimizer in Optimizers.Where(x => x.ExecutionState != ExecutionState.Started)) 171 if (Optimizers.Count == 0) return; 172 173 if (clearRuns) runs.Clear(); 174 foreach (IOptimizer optimizer in Optimizers.Where(x => x.ExecutionState != ExecutionState.Started)) 175 if (clearRuns || optimizer.ExecutionState != ExecutionState.Prepared) 177 176 optimizer.Prepare(clearRuns); 178 }179 177 } 180 178 public void Start() { 181 179 if ((ExecutionState != ExecutionState.Prepared) && (ExecutionState != ExecutionState.Paused)) 182 180 throw new InvalidOperationException(string.Format("Start not allowed in execution state \"{0}\".", ExecutionState)); 183 stopPending = false; 184 if (Optimizers.Count > 0) { 185 IOptimizer optimizer = Optimizers.FirstOrDefault(x => (x.ExecutionState == ExecutionState.Prepared) || (x.ExecutionState == ExecutionState.Paused)); 186 if (optimizer != null) optimizer.Start(); 187 } 181 if (Optimizers.Count == 0) return; 182 183 experimentStarted = true; 184 experimentStopped = false; 185 IOptimizer optimizer = Optimizers.FirstOrDefault(x => (x.ExecutionState == ExecutionState.Prepared) || (x.ExecutionState == ExecutionState.Paused)); 186 if (optimizer != null) optimizer.Start(); 188 187 } 189 188 public void Pause() { 190 189 if (ExecutionState != ExecutionState.Started) 191 190 throw new InvalidOperationException(string.Format("Pause not allowed in execution state \"{0}\".", ExecutionState)); 192 if (Optimizers.Count > 0) { 193 foreach (IOptimizer optimizer in Optimizers.Where(x => x.ExecutionState == ExecutionState.Started)) 194 optimizer.Pause(); 195 } 191 if (Optimizers.Count == 0) return; 192 193 experimentStarted = false; 194 experimentStopped = false; 195 foreach (IOptimizer optimizer in Optimizers.Where(x => x.ExecutionState == ExecutionState.Started)) 196 optimizer.Pause(); 196 197 } 197 198 public void Stop() { 198 199 if ((ExecutionState != ExecutionState.Started) && (ExecutionState != ExecutionState.Paused)) 199 200 throw new InvalidOperationException(string.Format("Stop not allowed in execution state \"{0}\".", ExecutionState)); 200 stopPending = true; 201 if (Optimizers.Count > 0) { 202 foreach (IOptimizer optimizer in Optimizers.Where(x => (x.ExecutionState == ExecutionState.Started) || (x.ExecutionState == ExecutionState.Paused))) 203 optimizer.Stop(); 204 } 201 if (Optimizers.Count == 0) return; 202 203 experimentStarted = false; 204 experimentStopped = true; 205 foreach (IOptimizer optimizer in Optimizers.Where(x => (x.ExecutionState == ExecutionState.Started) || (x.ExecutionState == ExecutionState.Paused))) 206 optimizer.Stop(); 205 207 } 206 208 … … 333 335 } 334 336 private void optimizer_Stopped(object sender, EventArgs e) { 335 if (!stopPending && Optimizers.Any(x => (x.ExecutionState == ExecutionState.Prepared) || (x.ExecutionState == ExecutionState.Paused))) { 337 if (experimentStopped && Optimizers.All(o => o.ExecutionState == ExecutionState.Stopped || o.ExecutionState == ExecutionState.Prepared)) OnStopped(); 338 else if (Optimizers.All(o => o.ExecutionState == ExecutionState.Stopped)) OnStopped(); 339 else if (Optimizers.Any(o => o.ExecutionState == ExecutionState.Paused) && Optimizers.All(o => o.ExecutionState != ExecutionState.Started)) OnPaused(); 340 else if (experimentStarted && !experimentStopped && Optimizers.Any(x => (x.ExecutionState == ExecutionState.Prepared) || (x.ExecutionState == ExecutionState.Paused))) { 336 341 Optimizers.First(x => (x.ExecutionState == ExecutionState.Prepared) || (x.ExecutionState == ExecutionState.Paused)).Start(); 337 } else {338 if (Optimizers.All(x => (x.ExecutionState != ExecutionState.Started) && (x.ExecutionState != ExecutionState.Paused))) {339 stopPending = false;340 OnStopped();341 }342 342 } 343 343 } -
branches/GP.Grammar.Editor/HeuristicLab.Optimization/3.3/HeuristicLab.Optimization-3.3.csproj
r6675 r6784 111 111 </ItemGroup> 112 112 <ItemGroup> 113 <Compile Include="RunCollectionDiscretizer.cs" /> 114 <Compile Include="RunCollectionGroupCreater.cs" /> 115 <Compile Include="RunCollectionSorter.cs" /> 113 116 <Compile Include="RunCollectionValueRemover.cs" /> 114 117 <Compile Include="IRunCollectionModifier.cs" /> … … 140 143 <Compile Include="Problems\Problem.cs" /> 141 144 <Compile Include="RunCollectionFormulaModifer.cs" /> 142 <Compile Include="RunCollectionFuzzifier.cs" />143 <Compile Include="RunCollectionModificationEvaluator.cs" />144 145 <Compile Include="RunCollectionConstraints\RunCollectionComparisonConstraint.cs" /> 145 146 <Compile Include="RunCollectionConstraints\RunCollectionConstraintCollection.cs" /> -
branches/GP.Grammar.Editor/HeuristicLab.Optimization/3.3/Problems/SingleObjectiveHeuristicOptimizationProblem.cs
- Property svn:mergeinfo changed (with no actual effect on merging)
-
branches/GP.Grammar.Editor/HeuristicLab.Optimization/3.3/RunCollection.cs
r5445 r6784 51 51 52 52 constraints = new RunCollectionConstraintCollection(original.constraints.Select(x => cloner.Clone(x))); 53 modifiers = new CheckedItemList<IRunCollectionModifier>(original.modifiers.Select(cloner.Clone)); 53 54 foreach (IRunCollectionConstraint constraint in constraints) 54 55 constraint.ConstrainedValue = this; … … 67 68 dataTypes = new Dictionary<string, HashSet<Type>>(); 68 69 constraints = new RunCollectionConstraintCollection(); 70 modifiers = new CheckedItemList<IRunCollectionModifier>(); 69 71 RegisterConstraintsEvents(); 70 72 } … … 83 85 get { return constraints; } 84 86 } 87 88 [Storable] 89 private CheckedItemList<IRunCollectionModifier> modifiers; 90 public CheckedItemList<IRunCollectionModifier> Modifiers { 91 get { return modifiers; } 92 } 93 85 94 86 95 private bool updateOfRunsInProgress; … … 98 107 private void AfterDeserialization() { 99 108 if (constraints == null) constraints = new RunCollectionConstraintCollection(); 109 if (modifiers == null) modifiers = new CheckedItemList<IRunCollectionModifier>(); 100 110 RegisterConstraintsEvents(); 101 111 RegisterConstraintEvents(constraints); … … 393 403 } 394 404 #endregion 405 406 #region Modification 407 public void Modify() { 408 UpdateOfRunsInProgress = true; 409 var runs = this.ToList(); 410 var selectedRuns = runs.Where(r => r.Visible).ToList(); 411 int nSelected = selectedRuns.Count; 412 if (nSelected > 0) { 413 foreach (var modifier in Modifiers.CheckedItems) 414 modifier.Value.Modify(selectedRuns); 415 if (nSelected != selectedRuns.Count || HaveDifferentOrder(selectedRuns, runs.Where(r => r.Visible))) { 416 Clear(); 417 AddRange(ReplaceVisibleRuns(runs, selectedRuns)); 418 } else if (runs.Count > 0) { 419 OnCollectionReset(this, runs); 420 } 421 } 422 UpdateOfRunsInProgress = false; 423 } 424 425 private static IEnumerable<IRun> ReplaceVisibleRuns(IEnumerable<IRun> runs, IEnumerable<IRun> visibleRuns) { 426 var newRuns = new List<IRun>(); 427 var runIt = runs.GetEnumerator(); 428 var visibleRunIt = visibleRuns.GetEnumerator(); 429 while (runIt.MoveNext()) { 430 if (runIt.Current != null && !runIt.Current.Visible) 431 newRuns.Add(runIt.Current); 432 else if (visibleRunIt.MoveNext()) 433 newRuns.Add(visibleRunIt.Current); 434 } 435 while (visibleRunIt.MoveNext()) 436 newRuns.Add(visibleRunIt.Current); 437 return newRuns; 438 } 439 440 private static bool HaveDifferentOrder(IEnumerable<IRun> l1, IEnumerable<IRun> l2) { 441 return l1.Zip(l2, (r1, r2) => r1 != r2).Any(); 442 } 443 #endregion 395 444 } 396 445 } -
branches/GP.Grammar.Editor/HeuristicLab.Optimization/3.3/RunCollectionConstraints/RunCollectionEqualityConstraint.cs
r6675 r6784 100 100 foreach (IRun run in ConstrainedValue.Where(r => r.Visible)) { 101 101 IItem item = ConstrainedValue.GetValue(run, constraintColumn); 102 if ( !base.Check(item.ToString()))102 if (item != null && !base.Check(item.ToString())) 103 103 run.Visible = false; 104 104 } -
branches/GP.Grammar.Editor/HeuristicLab.Optimization/3.3/RunCollectionFormulaModifer.cs
r6675 r6784 20 20 public ValueParameter<StringValue> ResultNameParameter { 21 21 get { return (ValueParameter<StringValue>)Parameters["ResultName"]; } 22 } 23 22 } 23 24 24 public ValueParameter<StringValue> FormulaParameter { 25 25 get { return (ValueParameter<StringValue>)Parameters["Formula"]; } 26 } 26 } 27 27 28 #region Construction & Cloning 28 private string ResultName { get { return ResultNameParameter.Value.Value; } } 29 private string Formula { get { return FormulaParameter.Value.Value; } } 30 31 #region Construction & Cloning 29 32 [StorableConstructor] 30 33 protected RunCollectionFormulaModifer(bool deserializing) : base(deserializing) { } … … 35 38 public RunCollectionFormulaModifer() { 36 39 Parameters.Add(new ValueParameter<StringValue>("ResultName", "The name of the result to be generated by this formula.", new StringValue("Calc.Value"))); 37 Parameters.Add(new ValueParameter<StringValue>("Formula", "RPN formula for new value. This can contain existing run parameters or results (optionally in quotes if they contain whitespace), numbers and arithmetic operators in postfix notation.", new StringValue("1 1 +"))); 40 Parameters.Add(new ValueParameter<StringValue>("Formula", 41 @"RPN formula for new value in postfix notation. 42 43 This can contain the following elements: 44 45 literals: 46 numbers, true, false, null and strings in single quotes 47 variables (run parameters or results): 48 unquoted or in double quotes if they contain special characters or whitespace 49 mathematical functions: 50 +, -, /, ^ (power), log 51 predicates: 52 ==, <, >, isnull, not 53 stack manipulation: 54 drop swap dup 55 string matching: 56 <string> <pattern> ismatch 57 string replacing: 58 <string> <pattern> <replacement> rename 59 conditionals: 60 <then> <else> <condition> if 61 62 If the final value is null, the result variable is removed if it exists.", 63 new StringValue("1 1 +"))); 38 64 UpdateName(); 39 65 RegisterEvents(); … … 58 84 59 85 private void UpdateName() { 60 name = string.Format("{0} := {1}", ResultName Parameter.Value.Value, FormulaParameter.Value.Value);86 name = string.Format("{0} := {1}", ResultName, Formula); 61 87 OnNameChanged(); 62 88 } 63 89 64 90 public void Modify(List<IRun> runs) { 65 var calc = new Calculator { Formula = FormulaParameter.Value.Value};91 var calc = new Calculator { Formula = Formula }; 66 92 foreach (var run in runs) { 67 93 var variables = new Dictionary<string, IItem>(); … … 70 96 foreach (var result in run.Results) 71 97 variables[result.Key] = result.Value; 72 run.Results[ResultNameParameter.Value.Value] = calc.GetValue(variables); 73 } 98 var value = calc.GetValue(variables); 99 if (value != null) 100 run.Results[ResultName] = value; 101 else 102 run.Results.Remove(ResultName); 103 } 74 104 } 75 105 76 106 } 77 107 }
Note: See TracChangeset
for help on using the changeset viewer.