namespace StructureHelperCommon.Models.Calculators
{
///
/// Rate of calculation which based on iteration of finished accuracy
///
public interface IAccuracy
{
///
/// Max accuracy of iteration
///
double IterationAccuracy { get; set; }
///
/// Limit iteration count for calculation
///
int MaxIterationCount { get; set; }
}
}