Updated comments, removed unused method
This commit is contained in:
Родитель
6134a4b794
Коммит
2aa6204f44
|
@ -143,14 +143,6 @@ namespace Microsoft.CorrelationVector
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Run this to throw an exception for non-supported cV methods in RunStaticMethod.
|
||||
/// </summary>
|
||||
private static CorrelationVector NotHandledMethod(string correlationVector)
|
||||
{
|
||||
throw new InvalidOperationException("Method not supported in this version");
|
||||
}
|
||||
|
||||
public abstract Tuple<string, string> Reset();
|
||||
|
||||
public abstract string Increment();
|
||||
|
|
|
@ -10,6 +10,7 @@ namespace Microsoft.CorrelationVector
|
|||
/// <summary>
|
||||
/// This class represents a lightweight vector for identifying and measuring
|
||||
/// causality.
|
||||
/// This is version 1 of the cV, which uses a shorter base length and can only be incremented.
|
||||
/// </summary>
|
||||
public sealed class CorrelationVectorV1 : CorrelationVector
|
||||
{
|
||||
|
|
|
@ -10,6 +10,7 @@ namespace Microsoft.CorrelationVector
|
|||
/// <summary>
|
||||
/// This class represents a lightweight vector for identifying and measuring
|
||||
/// causality.
|
||||
/// This is version 2 of the cV, which is longer and can utilize the Spin operations.
|
||||
/// </summary>
|
||||
public sealed class CorrelationVectorV2 : CorrelationVector
|
||||
{
|
||||
|
|
Загрузка…
Ссылка в новой задаче