Add series to graph

This commit is contained in:
Evgeny Redikultsev
2023-12-23 22:40:42 +05:00
parent a19333f7df
commit 0a6d29bcfc
38 changed files with 762 additions and 233 deletions

View File

@@ -48,7 +48,7 @@ namespace StructureHelperCommon.Models.Calculators
{
if (predicate(end) == false)
{
throw new StructureHelperException(ErrorStrings.DataIsInCorrect + ": pridicate for end value must be true");
throw new StructureHelperException(ErrorStrings.DataIsInCorrect + ": predicate for end value must be true");
}
double precision = Accuracy.IterationAccuracy;

View File

@@ -13,5 +13,6 @@ namespace StructureHelperCommon.Models.Calculators
public double Parameter { get; set; }
public int IterationNumber { get; set; }
public double CurrentAccuracy { get; set; }
public int MaxIterationCount { get; set; }
}
}

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
//Copyright (c) 2023 Redikultsev Evgeny, Ekaterinburg, Russia
//All rights reserved.
namespace StructureHelperCommon.Models.Calculators
{
public interface IInputData
{
}
}

View File

@@ -8,6 +8,7 @@ namespace StructureHelperCommon.Models.Calculators
{
public interface IiterationResult
{
int MaxIterationCount { get; set; }
int IterationNumber { get; set; }
}
}