| 125 | } |
| 126 | |
| 127 | int CNode::expanded(){ |
| 128 | int child_num = this->children_index.size(); |
| 129 | if(child_num > 0) { |
| 130 | return 1; |
| 131 | } |
| 132 | else { |
| 133 | return 0; |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | float CNode::value(){ |
| 138 | float true_value = 0.0; |
no test coverage detected