Connect++ 0.4.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 573 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 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: