| 117 | |
| 118 | |
| 119 | void ABstats::IncrNode(const int depth) |
| 120 | { |
| 121 | ABnodes.list[depth]++; |
| 122 | ABnodes.sum++; |
| 123 | ABnodes.sumWeighted += depth; |
| 124 | |
| 125 | ABnodesCum.list[depth]++; |
| 126 | ABnodesCum.sumCum++; |
| 127 | ABnodesCum.sumCumWeighted += depth; |
| 128 | } |
| 129 | |
| 130 | |
| 131 | int ABstats::GetNodes() const |
no outgoing calls
no test coverage detected