tweak: format

This commit is contained in:
NunoSempere 2022-09-05 22:08:20 +02:00
parent e1760dab2d
commit bfc3b39b2b

View File

@ -55,7 +55,6 @@ module Internals = {
// Integral helper functions
let castFloatToInternalNumber = x => ReducerInterface_InternalExpressionValue.IEvNumber(x)
let castArrayOfFloatsToInternalArrayOfInternals = xs => ReducerInterface_InternalExpressionValue.IEvArray(
Belt.Array.map(xs, x => castFloatToInternalNumber(x)),
@ -79,7 +78,7 @@ module Internals = {
// reason for existence: might be an useful template to have for calculating diminishing marginal returns later on
applyFunctionAtPoint(aLambda, castFloatToInternalNumber(point), environment, reducer)
// integrate function itself
*/
*/
let integrateFunctionBetweenWithNumIntegrationPoints = (
aLambda,
min: float,
@ -477,7 +476,7 @@ let library = [
],
(),
),
*/
*/
// Integral in terms of function, min, max, num points
// Note that execution time will be more predictable, because it
// will only depend on num points and the complexity of the function