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 573 of file TPTPParser.hpp.
◆ operator()()
void print_fof_formula_name::operator() |
( |
const string & | s, |
|
|
qi::unused_type | , |
|
|
qi::unused_type | ) const |
Definition at line 1187 of file TPTPParser.cpp.
1189 {
1190 current_formula_name = s;
1191 #ifdef DEBUGOUTPUT
1192 cout << "Found fof formula: "
1193 << s;
1194 #endif
1195 include_this_item = false;
1196 if (to_include.empty()) {
1197 include_this_item = true;
1198 return;
1199 }
1200 auto i = to_include.find(s);
1201 if (i != to_include.end()) {
1202 include_this_item = true;
1203 return;
1204 }
1205 return;
1206 }
The documentation for this struct was generated from the following files:
- /Users/sbh11/Desktop/connection-prover/c++/connect++/v0.5.0/source/TPTPParser.hpp
- /Users/sbh11/Desktop/connection-prover/c++/connect++/v0.5.0/source/TPTPParser.cpp