Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/ViewModels/RangeVM.cs

Last change on this file 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: 256 bytes
Line 
1using System;
2namespace HeuristicLab.JsonInterface.OptimizerIntegration {
3  public abstract class RangeVM<T, JsonItemType> : RangedValueBaseVM<T, JsonItemType>
4    where T : IComparable
5    where JsonItemType : class, IRangedJsonItem<T>
6  { }
7}
Note: See TracBrowser for help on using the repository browser.