Memo the sampling of functions

This commit is contained in:
Sam Nolan 2022-05-13 15:19:16 +00:00
parent 937458cd05
commit ae2ee48511

View File

@ -76,7 +76,9 @@ export const FunctionChart: React.FC<FunctionChartProps> = ({
chartSettings.count
);
type point = { x: number; value: result<Distribution, string> };
let valueData: point[] = data1.map((x) => {
let valueData: point[] = React.useMemo(
() =>
data1.map((x) => {
let result = runForeign(fn, [x], environment);
if (result.tag === "Ok") {
if (result.value.tag == "distribution") {
@ -97,7 +99,9 @@ export const FunctionChart: React.FC<FunctionChartProps> = ({
value: { tag: "Error", value: errorValueToString(result.value) },
};
}
});
}),
[environment, fn]
);
let initialPartition: [
{ x: number; value: Distribution }[],