18 lines
481 B
C#
18 lines
481 B
C#
namespace StructureHelperCommon.Models.Calculators
|
|
{
|
|
/// <summary>
|
|
/// Rate of calculation which based on iteration of finished accuracy
|
|
/// </summary>
|
|
public interface IAccuracy
|
|
{
|
|
/// <summary>
|
|
/// Max accuracy of iteration
|
|
/// </summary>
|
|
double IterationAccuracy { get; set; }
|
|
/// <summary>
|
|
/// Limit iteration count for calculation
|
|
/// </summary>
|
|
int MaxIterationCount { get; set; }
|
|
}
|
|
}
|