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/StorePut.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
     
    2222  public class StorePut : Event {
    2323    public DateTime Time { get; private set; }
    24     public Process Process { get; private set; }
     24    public Process Owner { get; set; }
    2525
    26     public StorePut(Environment environment, Action<Event> callback, object value)
     26    public StorePut(Simulation environment, Action<Event> callback, object value)
    2727      : base(environment) {
    2828      if (value == null) throw new ArgumentNullException("value", "Value to put in a Store cannot be null.");
     
    3030      Value = value;
    3131      Time = environment.Now;
    32       Process = environment.ActiveProcess;
     32      Owner = environment.ActiveProcess;
    3333    }
    3434  }
Note: See TracChangeset for help on using the changeset viewer.