Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/17/19 17:16:03 (4 years ago)
Author:
dpiringe
Message:

#3026:

  • removed classes:
    • CheckedItemListConverter: unnecessary
    • ItemCollectionConverter: unnecessary
    • PrimitiveConverter: not possible to implement because it needs to Extract/Inject from/into objects (but interfaces pretends IItem)
    • StorableConverter: unnecessary
    • ConfigurableConverter: unnecessary
  • removed graphviz code in Heuristiclab.ConfigStarter/Program.cs
  • updated Constants
  • some simple code refactors in BaseConverter
  • in JsonItem:
    • renamed Parameters -> Children
    • removed Properties: Operators, Type, Reference, IsConfigurable, IsParameterizedItem
    • removed unnecessary/old code
  • implemented a new way to get data from an object, which is a matrix, in ValueTypeMatrixConverter method: CopyMatrixData
    • converts the object into an array -> rows: from array.Length, cols: when the length is > 0 pick length of first array of index 0 (it is saved as an array of arrays)
  • created a binding flag const in ValueRangeConverter to prevent duplicates in code
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/HeuristicLab.JsonInterface.csproj

    r17374 r17379  
    6363    <Compile Include="Attributes\ConvertableAttribute.cs" />
    6464    <Compile Include="Constants.cs" />
    65     <Compile Include="Converters\CheckedItemListConverter.cs" />
    66     <Compile Include="Converters\ConfigurableConverter.cs" />
    67     <Compile Include="Converters\ItemCollectionConverter.cs" />
    68     <Compile Include="Converters\PrimitiveConverter.cs" />
    6965    <Compile Include="Converters\RegressionProblemDataConverter.cs" />
    70     <Compile Include="Converters\StorableConverter.cs" />
    7166    <Compile Include="Converters\ValueLookupParameterConverter.cs" />
    7267    <Compile Include="Converters\ValueRangeConverter.cs" />
Note: See TracChangeset for help on using the changeset viewer.