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
Currently, some bbf components are tested using simple code snippet:
... auto [at, A, desc] = B.assign(raw_input); std::cout << "Is_satisfied = " << B.is_satisfied(at) << std::endl;
The missing assert(B.is_satisfied(at)) may let errors be unnoticed in github action logs. Currently affected components:
assert(B.is_satisfied(at))
The text was updated successfully, but these errors were encountered:
Valeh2012
ayashunsky
Successfully merging a pull request may close this issue.
Currently, some bbf components are tested using simple code snippet:
The missing
assert(B.is_satisfied(at))
may let errors be unnoticed in github action logs.Currently affected components:
The text was updated successfully, but these errors were encountered: