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