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

Class Statistics

gecode/gist/spacenode.hh:59–75  ·  view source on GitHub ↗

%Statistics about the search tree

Source from the content-addressed store, hash-verified

57
58 /// %Statistics about the search tree
59 class Statistics : public StatusStatistics {
60 public:
61 /// Number of solutions
62 int solutions;
63 /// Number of failures
64 int failures;
65 /// Number of choice nodes
66 int choices;
67 /// Number of open, undetermined nodes
68 int undetermined;
69 /// Maximum depth of the tree
70 int maxDepth;
71
72 /// Constructor
73 Statistics(void)
74 : solutions(0), failures(0), choices(0), undetermined(1), maxDepth(0) {}
75 };
76
77 class SpaceNode;
78

Callers 1

resetMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected