Skip to content

Commit

Permalink
asymptotic bug
Browse files Browse the repository at this point in the history
correcting a bug with asymptotic functions
  • Loading branch information
srnogueira committed Apr 23, 2023
1 parent 71e6c21 commit dbac9cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
self.addEventListener("install", (e) => {
e.waitUntil(
caches
.open("laine-store.11.04.23")
.open("laine-store.23.04.23")
.then((cache) =>
cache.addAll([
"./",
Expand All @@ -25,7 +25,7 @@ self.addEventListener("install", (e) => {

// Delete old cache
self.addEventListener("activate", (event) => {
var cacheKeeplist = ["laine-store.11.04.23"];
var cacheKeeplist = ["laine-store.23.04.23"];
event.waitUntil(
caches.keys().then((keyList) => {
return Promise.all(
Expand Down
Binary file modified scripts/laine_wasm/laine.wasm
Binary file not shown.

0 comments on commit dbac9cf

Please sign in to comment.