Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/Interfaces/IMatrixJsonItemVM.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: 341 bytes
RevLine 
[17843]1using System.Collections.Generic;
[17446]2
3namespace HeuristicLab.JsonInterface.OptimizerIntegration {
4  public interface IMatrixJsonItemVM : IJsonItemVM {
5    bool RowsResizable { get; set; }
6    bool ColumnsResizable { get; set; }
[17471]7    IEnumerable<string> RowNames { get; set; }
8    IEnumerable<string> ColumnNames { get; set; }
[17446]9  }
10}
Note: See TracBrowser for help on using the repository browser.