Changeset 10842
- Timestamp:
- 05/14/14 10:46:41 (11 years ago)
- Location:
- branches/DataPreprocessing
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/FilterView.cs
r10813 r10842 96 96 UpdateFilterInfo(); 97 97 ExportFiltersToContent(); 98 Content.isAndCombination = rBtnAnd.Checked; 98 99 } 99 100 … … 116 117 checkedFilterView.Content.SetItemCheckedState(filter, false); 117 118 } 118 119 rBtnAnd.Checked = Content.isAndCombination; 120 rBtnOr.Checked = !Content.isAndCombination; 119 121 } 120 122 } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/FilterContent.cs
r10813 r10842 37 37 38 38 private readonly IFilterLogic filterLogic; 39 40 public bool isAndCombination = true; 41 39 42 public FilterContent(IFilterLogic theFilterLogic) { 40 43 filterLogic = theFilterLogic; … … 59 62 } 60 63 64 public bool IsAndCombination 65 { 66 get 67 { 68 return this.isAndCombination; 69 } 70 set 71 { 72 this.isAndCombination = value; 73 } 74 } 75 61 76 public FilterContent(FilterContent content, Cloner cloner) 62 77 : base(content, cloner) { -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/PreprocessingData.cs
r10809 r10842 50 50 variableNames = new List<string>(original.variableNames); 51 51 trainingToTestRatio = original.trainingToTestRatio; 52 transformations = new List<ITransformation>(); 52 53 } 53 54
Note: See TracChangeset
for help on using the changeset viewer.