From 0c4fcbe674f5aae34f0fee2380de6c001a167d1b Mon Sep 17 00:00:00 2001 From: Mischa Untaga <99098079+MischaU8@users.noreply.github.com> Date: Wed, 4 Oct 2023 14:04:54 +0200 Subject: GC optimization --- rules.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/rules.js b/rules.js index 97b275b..c1305d4 100644 --- a/rules.js +++ b/rules.js @@ -2028,11 +2028,11 @@ function set_toggle(set, item) { return array_insert(set, a, item) } -function is_subset_with_multiplicity(set, subset) { - return subset.every(val => set.includes(val) - && subset.filter(el => el === val).length - <= - set.filter(el => el === val).length) +function is_subset_with_multiplicity(multiset, subset) { + const occurrences = (arr, val) => + arr.reduce((acc, el) => (el === val ? acc + 1 : acc), 0) + + return !subset.some(val => (occurrences(subset, val) > occurrences(multiset, val))) } // Fast deep copy for objects without cycles -- cgit v1.2.3