mirror of
https://github.com/Z3Prover/z3
synced 2026-05-26 03:46:22 +00:00
Finish TPTP review cleanups
Agent-Logs-Url: https://github.com/Z3Prover/z3/sessions/ca1df142-d992-4e45-a8b3-859fa70a5222 Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
parent
61c37b8640
commit
2bfb8d80db
2 changed files with 10 additions and 4 deletions
|
|
@ -1660,7 +1660,7 @@ class tptp_parser {
|
|||
std::string role = to_lower(parse_name());
|
||||
expect(token_kind::comma, "','");
|
||||
|
||||
if (!m_name_filters.empty() && !m_name_filters.back().contains(formula_name)) {
|
||||
if (!m_name_filters.empty() && m_name_filters.back().find(formula_name) == m_name_filters.back().end()) {
|
||||
skip_annotations_until_rparen();
|
||||
expect(token_kind::rparen, "')'");
|
||||
expect(token_kind::dot, "'.'");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue