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/Events/Condition.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
     
    3636    protected List<Event> FiredEvents { get; private set; }
    3737
    38     protected Condition(Environment environment, params Event[] events)
     38    protected Condition(Simulation environment, params Event[] events)
    3939      : this(environment, (IEnumerable<Event>)events) { }
    40     protected Condition(Environment environment, IEnumerable<Event> events)
     40    protected Condition(Simulation environment, IEnumerable<Event> events)
    4141      : base(environment) {
    4242      CallbackList.Add(CollectValues);
Note: See TracChangeset for help on using the changeset viewer.