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
Given a domain with
symbol domain Location = { C_BS_O, C_DS_I, C_CS1_I, C_CS2_I }
I'd like to check in a test whether my object is part of that domain, e.g.,
test(has_type(C_BS_O, Location))
This can be done manually, e.g.,:
bool fluent is_location(symbol location) { domain: location in Location; initially: (location) = true; }
However, adding this for every type is cumbersome. It would be nice if such a predicate or function was generated automatically.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given a domain with
I'd like to check in a test whether my object is part of that domain, e.g.,
This can be done manually, e.g.,:
However, adding this for every type is cumbersome. It would be nice if such a predicate or function was generated automatically.
The text was updated successfully, but these errors were encountered: