To net8.0
This commit is contained in:
@@ -11,7 +11,7 @@ public abstract partial class ComparisionModule : BinaryComputationalModule,
|
||||
IDuplicateOutputModule,
|
||||
IOperationModule
|
||||
{
|
||||
private IBoolParameter? Greater { get; set; }
|
||||
private IBoolParameter Greater { get; set; }
|
||||
public HashSet<IConfigurableParameter> ConfigurableParameters { get; set; } = new();
|
||||
|
||||
public override void Init()
|
||||
@@ -21,7 +21,7 @@ public abstract partial class ComparisionModule : BinaryComputationalModule,
|
||||
this.SetInputType(DataTypeConstant.BaseDataTypes.Real);
|
||||
this.SetOutputType(DataTypeConstant.BaseDataTypes.Real);
|
||||
Greater = GlobalProvider.DataStructureProvider!.NewBoolParameter("Method", "gt", "lt", true);
|
||||
ConfigurableParameters = new HashSet<IConfigurableParameter>() { Greater };
|
||||
ConfigurableParameters = new HashSet<IConfigurableParameter> { Greater };
|
||||
PostInit();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user