Removes a couple unused expressions that were accidentally committed.
Upgrades the dependency on inferenceql.inference to HEAD.
During a generative join when evaluating the model expression, treat values from the row as a "tuple", thus causing them to be nil-safe.
Changes condition and constrain such that if the event contains nils the nils are ignored. Previously if the event contained nils the entire event was ignored.
Resolves #72.
Why should we do this?
72
It appears that currently conditioning and constraining on the values in a row will do nothing if any of the values in the row are nil. 😱
How do I test this?
This pull request includes some unit tests, but additional manual testing would be appreciated.
What does this do?
HEAD
.nil
s thenil
s are ignored. Previously if the event containednils
the entire event was ignored.Why should we do this?
72
nil
. 😱How do I test this?
This pull request includes some unit tests, but additional manual testing would be appreciated.