Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/12/19 13:45:11 (5 years ago)
Author:
abeham
Message:

#2975: Updated Sim# to 3.1.1

Location:
trunk/HeuristicLab.ExtLibs/HeuristicLab.SimSharp/3.1.1
Files:
1 edited
1 copied
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/HeuristicLab.ExtLibs/HeuristicLab.SimSharp/3.1.1/SimSharp-3.1.1/Core/Resources/Events/Request.cs

    r15972 r16779  
    11#region License Information
    22/* SimSharp - A .NET port of SimPy, discrete event simulation framework
    3 Copyright (C) 2016  Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3Copyright (C) 2019  Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44
    55This program is free software: you can redistribute it and/or modify
     
    2323    private readonly Action<Event> disposeCallback;
    2424    public DateTime Time { get; private set; }
    25     public Process Process { get; private set; }
     25    public Process Owner { get; set; }
    2626
    27     public Request(Environment environment, Action<Event> callback, Action<Event> disposeCallback)
     27    public Request(Simulation environment, Action<Event> callback, Action<Event> disposeCallback)
    2828      : base(environment) {
    2929      CallbackList.Add(callback);
    3030      this.disposeCallback = disposeCallback;
    3131      Time = environment.Now;
    32       Process = environment.ActiveProcess;
     32      Owner = environment.ActiveProcess;
    3333    }
    3434
Note: See TracChangeset for help on using the changeset viewer.