From 2f437fe087125c5355ea4151315d23feea0525f0 Mon Sep 17 00:00:00 2001 From: myl7 Date: Wed, 19 Jun 2024 22:13:16 +0800 Subject: [PATCH] fix typo in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 584b8f6..5dd6200 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ dcf.eval(false, &k, &[&x], &mut [&mut y]); ``` For full domain evaluation, use `full_eval` instead. -While similar to `eval`, `full_eval` does not accept a vector of `x`, and instead expect a vector of `y` whose length is `2 ** (DOM_SZ * 8)` to store all evaluated `y`. +While similar to `eval`, `full_eval` does not accept a vector of `x`, and instead expects a vector of `y` whose length is `2 ** (DOM_SZ * 8)` to store all evaluated `y`. More examples are available as benchmarks in the [benches dir](./benches)