Free cookie consent management tool by TermsFeed Policy Generator

Changeset 10450


Ignore:
Timestamp:
02/07/14 13:54:22 (10 years ago)
Author:
abeham
Message:

#1610: Added a base infrastructure for discrete event simulation

Location:
branches/SimulationCore
Files:
23 added
4 edited

Legend:

Unmodified
Added
Removed
  • branches/SimulationCore/HeuristicLab.SimulationCore.Samples/3.3/HeuristicLab.SimulationCore.Samples-3.3.csproj

    r7204 r10450  
    157157    <Reference Include="System" />
    158158    <Reference Include="System.Core" />
     159    <Reference Include="System.Drawing" />
    159160    <Reference Include="System.Xml.Linq" />
    160161    <Reference Include="System.Data.DataSetExtensions" />
     
    164165  <ItemGroup>
    165166    <Compile Include="GameOfLifeAgent.cs" />
     167    <Compile Include="GameOfLifeDiscreteEventSimulation.cs" />
    166168    <Compile Include="GameOfLifeScenario.cs" />
    167169    <Compile Include="GameOfLifeSimulation.cs" />
  • branches/SimulationCore/HeuristicLab.SimulationCore.sln

    r7204 r10450  
    11
    2 Microsoft Visual Studio Solution File, Format Version 11.00
    3 # Visual Studio 2010
     2Microsoft Visual Studio Solution File, Format Version 12.00
     3# Visual Studio 2012
    44Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{EA53A5B2-BFCF-4D7E-AFAA-4A2916D2A548}"
    55  ProjectSection(SolutionItems) = preProject
     
    1313EndProject
    1414Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.SimulationCore.Samples-3.3", "HeuristicLab.SimulationCore.Samples\3.3\HeuristicLab.SimulationCore.Samples-3.3.csproj", "{71537847-8B2D-4016-B6BF-DF0931024AC8}"
     15EndProject
     16Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.SimulationCore.Tests", "HeuristicLab.SimulationCore.Tests\HeuristicLab.SimulationCore.Tests.csproj", "{173B1CAE-271F-47BA-9448-8A85BA9CAEAC}"
    1517EndProject
    1618Global
     
    6062    {71537847-8B2D-4016-B6BF-DF0931024AC8}.Release|x86.ActiveCfg = Release|x86
    6163    {71537847-8B2D-4016-B6BF-DF0931024AC8}.Release|x86.Build.0 = Release|x86
     64    {173B1CAE-271F-47BA-9448-8A85BA9CAEAC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
     65    {173B1CAE-271F-47BA-9448-8A85BA9CAEAC}.Debug|Any CPU.Build.0 = Debug|Any CPU
     66    {173B1CAE-271F-47BA-9448-8A85BA9CAEAC}.Debug|x64.ActiveCfg = Debug|Any CPU
     67    {173B1CAE-271F-47BA-9448-8A85BA9CAEAC}.Debug|x86.ActiveCfg = Debug|Any CPU
     68    {173B1CAE-271F-47BA-9448-8A85BA9CAEAC}.Release|Any CPU.ActiveCfg = Release|Any CPU
     69    {173B1CAE-271F-47BA-9448-8A85BA9CAEAC}.Release|Any CPU.Build.0 = Release|Any CPU
     70    {173B1CAE-271F-47BA-9448-8A85BA9CAEAC}.Release|x64.ActiveCfg = Release|Any CPU
     71    {173B1CAE-271F-47BA-9448-8A85BA9CAEAC}.Release|x86.ActiveCfg = Release|Any CPU
    6272  EndGlobalSection
    6373  GlobalSection(SolutionProperties) = preSolution
    6474    HideSolutionNode = FALSE
    6575  EndGlobalSection
     76  GlobalSection(Performance) = preSolution
     77    HasPerformanceSessions = true
     78  EndGlobalSection
    6679EndGlobal
  • branches/SimulationCore/HeuristicLab.SimulationCore/3.3

    • Property svn:ignore
      •  

        old new  
        44obj
        55Plugin.cs
         6*.DotSettings
  • branches/SimulationCore/HeuristicLab.SimulationCore/3.3/HeuristicLab.SimulationCore-3.3.csproj

    r7204 r10450  
    120120      <Private>False</Private>
    121121    </Reference>
     122    <Reference Include="HeuristicLab.Data-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
     123      <SpecificVersion>False</SpecificVersion>
     124      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Data-3.3.dll</HintPath>
     125      <Private>False</Private>
     126    </Reference>
    122127    <Reference Include="HeuristicLab.Optimization-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
    123128      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Optimization-3.3.dll</HintPath>
     129      <Private>False</Private>
     130    </Reference>
     131    <Reference Include="HeuristicLab.Parameters-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
     132      <SpecificVersion>False</SpecificVersion>
     133      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Parameters-3.3.dll</HintPath>
    124134      <Private>False</Private>
    125135    </Reference>
     
    143153    <Compile Include="AgentBased\AgentBasedSimulation.cs" />
    144154    <Compile Include="AgentBased\IAgent.cs" />
     155    <Compile Include="DiscreteEvent\Action.cs" />
     156    <Compile Include="DiscreteEvent\Activity.cs" />
     157    <Compile Include="DiscreteEvent\CompositeEventQueue.cs" />
     158    <Compile Include="DiscreteEvent\DiscreteEventSimulation.cs" />
     159    <Compile Include="DiscreteEvent\Event.cs" />
     160    <Compile Include="DiscreteEvent\Interfaces\IReporter.cs" />
     161    <Compile Include="DiscreteEvent\ModelTimeUpdateAction.cs" />
     162    <Compile Include="DiscreteEvent\Reporter.cs" />
     163    <Compile Include="DiscreteEvent\SortedListEventQueue.cs" />
     164    <Compile Include="DiscreteEvent\Interfaces\IActivity.cs" />
     165    <Compile Include="DiscreteEvent\Interfaces\IDiscreteEventSimulation.cs" />
     166    <Compile Include="DiscreteEvent\Interfaces\IAction.cs" />
     167    <Compile Include="DiscreteEvent\Interfaces\IEvent.cs" />
     168    <Compile Include="DiscreteEvent\Interfaces\IEventQueue.cs" />
     169    <Compile Include="DiscreteEvent\Interfaces\IModel.cs" />
    145170    <Compile Include="IScenario.cs" />
    146171    <Compile Include="ISimulation.cs" />
Note: See TracChangeset for help on using the changeset viewer.