A crate for reading files in the TPTP format.
```rust use tptp;
// start to read with the DefaultResolver for paths let reader = tptp::Reader::new() .follow_includes() // follow include directives .read("example.p")?; // start here, resolved from current directory
let mut count = 0;
// stream TPTP statements for statement in reader { println!("{:?}\n", statement?); count += 1; }
println!("{} total inputs", count); ```
include()
handling with the Resolve
traitIn order of urgency:
Display
instances