private float Operation(Recursion recursion)
 {
     return(MathLibrary.LogarithmicFunction(input.GetValue <float>(), minimum.GetValue <float>(), exponent.GetValue <float>(), scale.GetValue <float>()));
 }
 private float Operation(Flow flow)
 {
     return(MathLibrary.LogarithmicFunction(flow.GetValue <float>(input), flow.GetValue <float>(minimum), flow.GetValue <float>(exponent), flow.GetValue <float>(scale)));
 }