Instead of adjusting the runtime to postprocess a filtered count query, simply removes the optimization altogether, which is much easier. Use the following from the python bindings instead:
cat1_count = sn.count(sn.filter(data, data == cat1)).value
histogram = [cat1_count, N - cat1_count]
Instead of adjusting the runtime to postprocess a filtered count query, simply removes the optimization altogether, which is much easier. Use the following from the python bindings instead:
Closes #360