Merge pull request #523 from quantified-uncertainty/resampling-sample-functions

Memo the sampling of functions
This commit is contained in:
Ozzie Gooen 2022-05-13 11:30:59 -04:00 committed by GitHub
commit 167399f87c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 }[],