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