[14727] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 |
|
---|
[15771] | 4 | namespace HeuristicLab.Problems.ProgramSynthesis {
|
---|
[14727] | 5 | using HeuristicLab.Core;
|
---|
| 6 |
|
---|
| 7 | public class EnabledExpressionsChangedEventArgs : EventArgs {
|
---|
| 8 | public IEnumerable<string> AddedExpressions { get; private set; }
|
---|
| 9 | public IEnumerable<string> RemovedExpressions { get; private set; }
|
---|
| 10 |
|
---|
| 11 | public EnabledExpressionsChangedEventArgs(IEnumerable<string> addedExpressions, IEnumerable<string> removedExpressions) {
|
---|
| 12 | AddedExpressions = addedExpressions;
|
---|
| 13 | RemovedExpressions = removedExpressions;
|
---|
| 14 | }
|
---|
| 15 | }
|
---|
| 16 |
|
---|
[15273] | 17 | public interface IReadOnlyExpressionsConfiguration : INamedItem {
|
---|
| 18 | int InExpressionCount { get; }
|
---|
[14727] | 19 |
|
---|
[15289] | 20 |
|
---|
[15032] | 21 | IReadOnlyList<string> EnabledExpressions { get; }
|
---|
[15273] | 22 | IReadOnlyDictionary<StackTypes, int> ExpressionsPerStackCount { get; }
|
---|
| 23 | }
|
---|
[14727] | 24 |
|
---|
[15273] | 25 | public interface IExpressionsConfiguration : IReadOnlyExpressionsConfiguration {
|
---|
| 26 | event EventHandler<EnabledExpressionsChangedEventArgs> EnabledExpressionsChanged;
|
---|
| 27 |
|
---|
[15032] | 28 | void EnableStack(StackTypes types, bool enableDependencies = false);
|
---|
[15273] | 29 | void DisableStack(StackTypes type, bool enableDependencies = false);
|
---|
[15032] | 30 | void SetStack(StackTypes type, bool state, bool setDependencies = false);
|
---|
[14777] | 31 | void EnableExpressionOfStack(StackTypes types);
|
---|
[14905] | 32 | void DisableExpressionsOfStack(StackTypes types);
|
---|
[15032] | 33 | void EnableExpression(string name);
|
---|
| 34 | void DisableExpression(string name);
|
---|
| 35 | void SetExpression(string name, bool state);
|
---|
| 36 | void SetExpression<T>(bool state) where T : Expression;
|
---|
| 37 | void EnableExpression<T>() where T : Expression;
|
---|
| 38 | void DisableExpression<T>() where T : Expression;
|
---|
[14727] | 39 | }
|
---|
| 40 | }
|
---|