Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/04/19 12:55:52 (5 years ago)
Author:
abeham
Message:

#2975: merged to stable

Location:
stable
Files:
3 edited
1 copied
1 moved

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.ExtLibs

  • stable/HeuristicLab.ExtLibs/HeuristicLab.SimSharp/3.1.1/SimSharp-3.1.1/Core/Events/AnyOf.cs

    r15972 r17053  
    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
     
    2121namespace SimSharp {
    2222  public class AnyOf : Condition {
    23     public AnyOf(Environment environment, params Event[] events) : base(environment, events) { }
    24     public AnyOf(Environment environment, IEnumerable<Event> events) : base(environment, events) { }
     23    public AnyOf(Simulation environment, params Event[] events) : base(environment, events) { }
     24    public AnyOf(Simulation environment, IEnumerable<Event> events) : base(environment, events) { }
    2525
    2626    protected override bool Evaluate() {
Note: See TracChangeset for help on using the changeset viewer.