MCPcopy Create free account
hub / github.com/bupticybee/TexasSolver / execFromFile

Method execFromFile

src/tools/CommandLineTool.cpp:65–73  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

63}
64
65void CommandLineTool::execFromFile(string input_file){
66 std::ifstream infile(input_file);
67 std::string input_line;
68 while (std::getline(infile, input_line))
69 {
70 this->processCommand(input_line);
71 }
72
73}
74
75void split(const string& s, char c,
76 vector<string>& v) {

Callers 1

main_backupFunction · 0.80

Calls 1

processCommandMethod · 0.95

Tested by

no test coverage detected