Add series to graph
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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; }
|
||||
}
|
||||
}
|
||||
|
||||
15
StructureHelperCommon/Models/Calculators/IInputData.cs
Normal file
15
StructureHelperCommon/Models/Calculators/IInputData.cs
Normal 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
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -8,6 +8,7 @@ namespace StructureHelperCommon.Models.Calculators
|
||||
{
|
||||
public interface IiterationResult
|
||||
{
|
||||
int MaxIterationCount { get; set; }
|
||||
int IterationNumber { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -15,4 +15,8 @@
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Folder Include="Infrastructures\Predicates\" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
Reference in New Issue
Block a user