Semantic action for cnf_formula.
More...
#include <TPTPParser.hpp>
|
| void | operator() (const string &, qi::unused_type, qi::unused_type) const |
| |
Semantic action for cnf_formula.
Definition at line 557 of file TPTPParser.hpp.
◆ operator()()
| void print_cnf_formula_name::operator() |
( |
const string & | s, |
|
|
qi::unused_type | , |
|
|
qi::unused_type | ) const |
Definition at line 1164 of file TPTPParser.cpp.
1166 {
1167 current_clause_name = s;
1168#ifdef DEBUGOUTPUT
1169 cout << "Found cnf formula: "
1170 << s;
1171#endif
1172 include_this_item = false;
1173 if (to_include.empty()) {
1174 include_this_item = true;
1175 return;
1176 }
1177 auto i = to_include.find(s);
1178 if (i != to_include.end()) {
1179 include_this_item = true;
1180 return;
1181 }
1182 return;
1183 }
The documentation for this struct was generated from the following files:
- /Users/sbh11/Desktop/connection-prover/c++/connect++/source/TPTPParser.hpp
- /Users/sbh11/Desktop/connection-prover/c++/connect++/source/TPTPParser.cpp