Connect++ 0.7.0
A fast, readable connection prover for first-order logic.
Loading...
Searching...
No Matches
print_fof_formula_name Struct Reference

Semantic action for fof_formula. More...

#include <TPTPParser.hpp>

Public Member Functions

void operator() (const string &, qi::unused_type, qi::unused_type) const
 

Detailed Description

Semantic action for fof_formula.

Definition at line 576 of file TPTPParser.hpp.

Member Function Documentation

◆ 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: