Updated comments, removed unused method

This commit is contained in:
Eddy Luo 2019-06-12 10:55:24 -07:00
Родитель 6134a4b794
Коммит 2aa6204f44
3 изменённых файлов: 2 добавлений и 8 удалений

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

@ -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
{