%Statistics about the search tree
| 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 |