I have two comparers
# compares model version A to observation X
cmp_a
# compares model version B to observation X
cmp_b
When I do this:
ms.ComparerCollection([cmp_a, cmp_b]).skill()
Followed by this:
I realized that cmp_a now also has the model results from cmp_b. Is this working as intended? I can try to produce a minimal reproduceable example soon..
Edit: if I make copies of the comparers passed to the collection, then there's no mutation.
I have two comparers
When I do this:
Followed by this:
I realized that
cmp_anow also has the model results from cmp_b. Is this working as intended? I can try to produce a minimal reproduceable example soon..Edit: if I make copies of the comparers passed to the collection, then there's no mutation.