Changeset 17053 for stable/HeuristicLab.ExtLibs/HeuristicLab.SimSharp/3.1.1/SimSharp-3.1.1/Analysis/ContinuousStatistics.cs
- Timestamp:
- 07/04/19 12:55:52 (5 years ago)
- Location:
- stable
- Files:
-
- 3 edited
- 1 copied
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.ExtLibs
- Property svn:mergeinfo changed
/trunk/HeuristicLab.ExtLibs merged: 16779
- Property svn:mergeinfo changed
-
stable/HeuristicLab.ExtLibs/HeuristicLab.SimSharp/3.1.1/SimSharp-3.1.1/Analysis/ContinuousStatistics.cs
r15972 r17053 1 1 #region License Information 2 2 /* SimSharp - A .NET port of SimPy, discrete event simulation framework 3 Copyright (C) 201 6Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 Copyright (C) 2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 5 5 This program is free software: you can redistribute it and/or modify … … 21 21 namespace SimSharp { 22 22 public sealed class ContinuousStatistics { 23 private readonly Environmentenv;23 private readonly Simulation env; 24 24 25 25 public int Count { get; private set; } … … 41 41 42 42 43 public ContinuousStatistics( Environmentenv) {43 public ContinuousStatistics(Simulation env) { 44 44 this.env = env; 45 45 lastUpdateTime = env.NowD;
Note: See TracChangeset
for help on using the changeset viewer.