Semantic action for fof_formula.
More...
#include <TPTPParser.hpp>
|
| void | operator() (const string &, qi::unused_type, qi::unused_type) const |
| |
Semantic action for fof_formula.
Definition at line 576 of file TPTPParser.hpp.
◆ operator()()
| void print_fof_formula_name::operator() |
( |
const string & | s, |
|
|
qi::unused_type | , |
|
|
qi::unused_type | ) const |
Definition at line 1198 of file TPTPParser.cpp.
1200 {
1201 current_formula_name = s;
1202 #ifdef DEBUGOUTPUT
1203 cout << "Found fof formula: "
1204 << s;
1205 #endif
1206 include_this_item = false;
1207 if (to_include.empty()) {
1208 include_this_item = true;
1209 return;
1210 }
1211 auto i = to_include.find(s);
1212 if (i != to_include.end()) {
1213 include_this_item = true;
1214 return;
1215 }
1216 return;
1217 }
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