Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/17/12 10:57:14 (12 years ago)
Author:
fschoepp
Message:

#1888:

  • Added a parser for independent scenarios (using the model of the optimization backend)
  • Optimization scenario sample can be found in mappings folder of the web project.
  • Added IScenarioMapper interface which provides functionality to map from the optimization data model to a backend model (e.g. Heuristic Lab data model)
  • Implementations of IScenarioMapper have to be provided as C# code (strings) which will be compiled by using a CSharpCodeProvider. Once compiled, the implementations of the IScenarioMapper are being cached within the platform for further usage.
  • Fixed a bug in web template DecimalMatrix (using i instead of j)
  • Added missing thumprint of localhost certificate to the optimization web project (ServiceConfiguration.Local.cscfg / ServiceConfiguration.Cloud.cscfg)
  • Test project now provides following test cases: Mapping types using IronPython and mapping types using Otis
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/OaaS/HeuristicLab.Services.Optimization.Controller/HeuristicLab.Services.Optimization.ControllerService.csproj

    r8545 r8817  
    131131    </Reference>
    132132    <Reference Include="System" />
     133    <Reference Include="System.configuration" />
    133134    <Reference Include="System.Core" />
    134135    <Reference Include="System.Runtime.Serialization" />
     
    141142  </ItemGroup>
    142143  <ItemGroup>
     144    <Compile Include="HiveScenarioManagerOld.cs" />
     145    <Compile Include="HiveMapper.cs" />
    143146    <Compile Include="HiveScenarioManager.cs" />
     147    <Compile Include="HLMapper.cs" />
    144148    <Compile Include="Interfaces\IControllerService.cs" />
    145149    <Compile Include="Interfaces\IScenarioManager.cs" />
     
    147151    <Compile Include="PlaceholderControllerService.cs" />
    148152    <Compile Include="Properties\AssemblyInfo.cs" />
     153    <Compile Include="ScenarioParser.cs" />
    149154    <Compile Include="Utility.cs" />
    150155  </ItemGroup>
     
    153158  </ItemGroup>
    154159  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
     160  <PropertyGroup>
     161    <PreBuildEvent>
     162    </PreBuildEvent>
     163  </PropertyGroup>
    155164  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
    156165       Other similar extension points exist, see Microsoft.Common.targets.
Note: See TracChangeset for help on using the changeset viewer.