nissy-core

The "engine" of nissy, including the H48 optimal solver.
git clone https://git.tronto.net/nissy-core
Download | Log | Files | Refs | README | LICENSE

commit 2db812e99a2f06a0fb93705fa05307622d97a9d3
parent 9df6811626d11ecb6b0cb15cb3a4be6d7ad479a1
Author: Sebastiano Tronto <sebastiano@tronto.net>
Date:   Fri, 30 May 2025 09:20:12 +0200

Move worker.mjs back to example folder

Diffstat:
M.gitignore | 1-
Mbuild | 4+---
Rweb/worker.mjs -> web/http/worker.mjs | 0
3 files changed, 1 insertion(+), 4 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -22,7 +22,6 @@ runcpp runtest.js runtest.wasm web/http/nissy_web_module.* -web/http/worker.mjs web/nissy_web_module.* runtool tools/.DS_Store diff --git a/build b/build @@ -217,8 +217,7 @@ odflags() { build_clean() { run rm -rf -- *.o *.so *.a run runtest runtool runcpp \ - web/nissy_web_module.* web/http/nissy_web_module.* \ - web/http/worker.mjs + web/nissy_web_module.* web/http/nissy_web_module.* } build_nissy() { @@ -286,7 +285,6 @@ build_web() { cpp/nissy.cpp web/storage.cpp web/adapter.cpp nissy.o || exit 1 cp web/"$obj".mjs web/http/ cp web/"$obj".wasm web/http/ - cp web/worker.mjs web/http/ } dotest() { diff --git a/web/worker.mjs b/web/http/worker.mjs