Force calculator was repaired for buckling calculations
This commit is contained in:
@@ -25,5 +25,7 @@
|
||||
public static string ExpectedWas(System.Type expected, object obj) => ExpectedWas(expected, obj.GetType());
|
||||
public static string NullReference => "#0018: Null reference";
|
||||
public static string ObjectNotFound => "#0018: Object not found";
|
||||
public static string ErrorDuring(string operation) => string.Format("Errors appeared during {0}, see detailed information", operation);
|
||||
public static string CalculationError => "#0019: Error of calculation";
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,14 +10,12 @@ using System.Windows.Forms;
|
||||
|
||||
namespace StructureHelperCommon.Infrastructures.Interfaces
|
||||
{
|
||||
public interface ILongProcessLogic
|
||||
public interface ILongProcessLogic : ILogic
|
||||
{
|
||||
int StepCount { get; }
|
||||
Action<int> SetProgress { get; set; }
|
||||
bool Result { get; set; }
|
||||
|
||||
IShiftTraceLogger? TraceLogger { get; set; }
|
||||
|
||||
void WorkerDoWork(object sender, DoWorkEventArgs e);
|
||||
void WorkerProgressChanged(object sender, ProgressChangedEventArgs e);
|
||||
void WorkerRunWorkCompleted(object sender, RunWorkerCompletedEventArgs e);
|
||||
|
||||
Reference in New Issue
Block a user