From b1f4f43d2ef179ad334fad557032935767f15b96 Mon Sep 17 00:00:00 2001 From: Olivia Appleton Date: Wed, 21 Aug 2024 18:24:28 -0500 Subject: [PATCH] Skip p12 in c (slow), update docs --- README.rst | 2 ++ docs/_static/test-c.html | 1 + docs/index.rst | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index c446987e..c8480de5 100644 --- a/README.rst +++ b/README.rst @@ -124,8 +124,10 @@ Olivia's Project Euler Solutions .. [1] This is the earliest standard the MSVC explicitly supports. .. [2] While these solutions do run in most browsers, they need to be bundled with Emscripten first, and these tests not yet automated as in |clang| and |gcc|. To run these tests yourself, |test-c-link| + Note that there are a few problems that return the wrong answer only in WebAssembly, and need to be debugged .. [3] While these solutions do run in most browsers, they need to be bundled with Emscripten first, and these tests not yet automated as in |clang| and |gcc|. To run these tests yourself, |test-cp-link| + Note that there are a few problems that return the wrong answer only in WebAssembly, and need to be debugged .. .. [#] (This target is not yet complete.) While these solutions do run in most browsers, they need to be bundled with DotNetAnywhere first, .. and these tests not yet automated as in mainline .NET. To run these tests yourself, |test-cs-link| .. .. [#] (This target is not yet complete.) While these solutions do run in most browsers, they need to be bundled with CheerpJ first, diff --git a/docs/_static/test-c.html b/docs/_static/test-c.html index af54b0f9..3214b101 100644 --- a/docs/_static/test-c.html +++ b/docs/_static/test-c.html @@ -18,6 +18,7 @@ Module().then(async (wasm) => { await init(); for (let p = 1; p < 10000; p++) { + if ([12, ].includes(p)) continue; const formattedQuestion = `${p}`.padStart(4, '0'); const func = wasm[`_p${formattedQuestion}`]; if (func === undefined) continue; diff --git a/docs/index.rst b/docs/index.rst index a48faa60..6bf4ca23 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -73,7 +73,7 @@ Problems Solved +-----------+------------+------------+------------+------------+------------+------------+------------+ | Testing | |d| | |d| | |d| | |d| | |d| | |d| | |d| | +-----------+------------+------------+------------+------------+------------+------------+------------+ -| Browser | | | | | |d| | |d| | |d| | +| Browser | |d| | |d| | | | |d| | |d| | |d| | +-----------+------------+------------+------------+------------+------------+------------+------------+ +-----------+------------+------------+------------+------------+------------+------------+------------+ |:prob:`1` |:c-d:`0001` |:cp-d:`0001`|:cs-d:`0001`|:ja-d:`0001`|:js-d:`0001`|:py-d:`0001`|:rs-d:`0001`|