feat: Note that this isn't tested yet.

This commit is contained in:
NunoSempere 2022-09-04 22:48:29 +02:00
parent ecf5249b5c
commit 244f3ea8d9

View File

@ -220,7 +220,8 @@ let library = [
~nameSpace, ~nameSpace,
~output=EvtArray, ~output=EvtArray,
~requiresNamespace=false, ~requiresNamespace=false,
~examples=[`Danger.integrateFunctionBetweenWithIncrement({|x| x+1}, 1, 10, 1)`], // should be [x^2 + x]1_10 = (10^2 + 10) - (1 + 1) = 110 - 2 = 118 ~examples=[`Danger.integrateFunctionBetweenWithIncrement({|x| x+1}, 1, 10, 1)`], // should be [x^2/2 + x]1_10 = (50 + 10) - (1 + 1) = 60 - 2 = 58
// Some testing needed to see where the small deviation comes from.
~definitions=[ ~definitions=[
FnDefinition.make( FnDefinition.make(
~name="integrateFunctionBetweenWithIncrement", ~name="integrateFunctionBetweenWithIncrement",