This commit is contained in:
adityanathan 2023-02-08 11:18:35 +00:00
Родитель 3c41fc8fe4
Коммит f5d2f9b553
2 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -102,7 +102,6 @@ namespace Microsoft.Coyote.Runtime
this.Group = group ?? OperationGroup.Create(this);
}
this.Group = group ?? OperationGroup.Create(this);
this.Dependencies = new HashSet<object>();
this.SyncEvent = new ManualResetEventSlim(false);
this.LastSchedulingPoint = SchedulingPointType.Start;

Просмотреть файл

@ -50,6 +50,7 @@ namespace Microsoft.Coyote.Runtime
this.Id = Guid.NewGuid();
this.Owner = owner;
this.Members = new HashSet<ControlledOperation>();
this.IsDelayOperation = isDelayOperation;
}
/// <summary>