We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ce.ask appears to return an empty result (array) at level of basic, well-formulated predicates/propositions.
ce.ask
Basic case:
const ce = new ComputeEngine(); ce.declare('x', 'finite_real'); ce.ask(['Element', 'x', 'finite_real']); // → [ ] ce.ask(['Element', 'x', 'any']); // → [ ] // Further assumption ce.assume(['Greater', 'x', 0]); // → 'ok' ce.ask(['Greater', 'x', '_value']); // → [ ]
Empty arrays/results, for queries which have answers with current knowledge.
Array of BoxedSubstitution's, e.g. {'_value': 0} for query ce.ask(['Greater', 'x', '_value'])
BoxedSubstitution
{'_value': 0}
ce.ask(['Greater', 'x', '_value'])
Compute Engine version
0.27.0 (a bit further on, truthfully: #a981709)
0.27.0
(not sure if this functioning in prior versions, even so little far-back as 0.26.)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
ce.ask
appears to return an empty result (array) at level of basic, well-formulated predicates/propositions.Steps to Reproduce
Basic case:
Actual Result
Empty arrays/results, for queries which have answers with current knowledge.
Expected Result
Array of
BoxedSubstitution
's, e.g.{'_value': 0}
for queryce.ask(['Greater', 'x', '_value'])
Compute Engine version
0.27.0
(a bit further on, truthfully: #a981709)(not sure if this functioning in prior versions, even so little far-back as 0.26.)
The text was updated successfully, but these errors were encountered: