Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/ViewModels/SingleValueVM.cs @ 17843

Last change on this file since 17843 was 17843, checked in by dpiringe, 3 years ago

#3026

  • removed property ConvertableType from all converters
  • removed the option to fixate or loosen the path of JsonItems (obsolete)
  • added a abstract formatter SymbolicRegressionSolutionFormatterBase as base formatter for ISymbolicRegressionSolution
  • unified the construction of exporter controls
  • code cleanup
File size: 444 bytes
RevLine 
[17410]1using System;
2using System.Windows.Forms;
3
4namespace HeuristicLab.JsonInterface.OptimizerIntegration {
[17411]5
[17473]6  public class BoolValueVM : JsonItemVMBase<BoolJsonItem> {
[17828]7    public override UserControl Control => null;
[17410]8  }
9
[17473]10  public abstract class SingleValueVM<T, JsonItemType> : RangedValueBaseVM<T, JsonItemType>
11    where T : IComparable
12    where JsonItemType : class, IIntervalRestrictedJsonItem<T>, IValueJsonItem<T>
[17843]13  { }
[17410]14}
Note: See TracBrowser for help on using the repository browser.