fix: formatting
This commit is contained in:
parent
2fa97c20f7
commit
fd7720b045
|
@ -76,8 +76,14 @@ module Internals = {
|
||||||
let internalZero = ReducerInterface_InternalExpressionValue.IEvNumber(0.0)
|
let internalZero = ReducerInterface_InternalExpressionValue.IEvNumber(0.0)
|
||||||
let applyFunctionAtZero = (aLambda, environment, reducer) =>
|
let applyFunctionAtZero = (aLambda, environment, reducer) =>
|
||||||
applyFunctionAtPoint(aLambda, internalZero, environment, reducer)
|
applyFunctionAtPoint(aLambda, internalZero, environment, reducer)
|
||||||
@dead let applyFunctionAtFloat = (aLambda, point, environment, reducer) =>
|
@dead
|
||||||
applyFunctionAtPoint(aLambda, ReducerInterface_InternalExpressionValue.IEvNumber(point), environment, reducer)
|
let applyFunctionAtFloat = (aLambda, point, environment, reducer) =>
|
||||||
|
applyFunctionAtPoint(
|
||||||
|
aLambda,
|
||||||
|
ReducerInterface_InternalExpressionValue.IEvNumber(point),
|
||||||
|
environment,
|
||||||
|
reducer,
|
||||||
|
)
|
||||||
// simplest integral function
|
// simplest integral function
|
||||||
let integrateFunctionBetweenWithIncrement = (
|
let integrateFunctionBetweenWithIncrement = (
|
||||||
aLambda,
|
aLambda,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user