MCPcopy Create free account
hub / github.com/Gecode/gecode / RunInfo

Class RunInfo

test/branch.cpp:386–397  ·  view source on GitHub ↗

Information about one test-run

Source from the content-addressed store, hash-verified

384
385 /// Information about one test-run
386 class RunInfo {
387 public:
388 std::string var, val;
389 unsigned int a_d, c_d;
390 RunInfo(const std::string& vara, const std::string& varb,
391 const std::string& valname,
392 const Gecode::Search::Options& o)
393 : var(vara + "::" + varb), val(valname), a_d(o.a_d), c_d(o.c_d) {}
394 void print(std::ostream& o) const {
395 o << "(" << var << ", " << val << ", " << a_d << ", " << c_d << ")";
396 }
397 };
398
399}}
400

Callers 1

runMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected