tweak: Add to dos to continue tomorrow
This commit is contained in:
parent
f82c00a6ed
commit
b292a3e6fd
|
@ -75,8 +75,13 @@ module Internals = {
|
|||
result
|
||||
}
|
||||
let internalZero = ReducerInterface_InternalExpressionValue.IEvNumber(0.0)
|
||||
let applyFunctionAtZero = (aLambda) => applyFunctionAtPoint(aLambda, internalZero)
|
||||
|
||||
let applyFunctionAtZero = (aLambda,environment , reducer) => applyFunctionAtPoint(aLambda, internalZero, environment, reducer)
|
||||
let applyFunctionAtFloat = (aLambda, point, environment, reducer) => applyFunctionAtPoint(aLambda, ReducerInterface_InternalExpressionValue.IEvNumber(point))
|
||||
let integrateFunction = (aLambda, min:float, max:float, increment, environment, reducer) => {
|
||||
// Should be easy, but tired today.
|
||||
0.0
|
||||
}
|
||||
let getDiminishingMarginalReturnsEquilibrium = "To do"
|
||||
}
|
||||
|
||||
let library = [
|
||||
|
@ -137,7 +142,7 @@ let library = [
|
|||
~examples=[`Danger.applyFunctionAtZero({|x| x+1})`],
|
||||
~definitions=[
|
||||
FnDefinition.make(
|
||||
~name="applyFunctionAtPoint",
|
||||
~name="applyFunctionAtZero",
|
||||
~inputs=[FRTypeLambda],
|
||||
~run=(inputs, _, env, reducer) =>
|
||||
switch inputs {
|
||||
|
|
Loading…
Reference in New Issue
Block a user