commit 5f6cc0fe4f9e57744970f9b5e3bd9d78b28ef91d
parent d87453b9c792a679af447aad9434d7cba41ea54e
Author: NunoSempere <nuno.sempere@protonmail.com>
Date: Thu, 23 Nov 2023 15:23:04 +0000
note on confidence intervals code
Diffstat:
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/README.md b/README.md
@@ -308,6 +308,11 @@ Overall, I'd describe the error handling capabilities of this library as pretty
## To do list
+- [ ] Write better confidence interval code that:
+ - Gets number of samples as an input
+ - Gets either a sampler function or a list of samples
+ - is O(n), not O(nlog(n))
+ - Parallelizes stuff
- [ ] Document paralellism
- [ ] Document confidence intervals
- [ ] Point out that, even though the C standard is ambiguous about this, this code assumes that doubles are 64 bit precision (otherwise the xorshift should be different).