MCPcopy Create free account
hub / github.com/MARIO-Math-Reasoning/Super_MARIO / select_non_prune

Function select_non_prune

offline_inference.py:108–112  ·  view source on GitHub ↗
(current_nodes: List[Type[InferNode]])

Source from the content-addressed store, hash-verified

106
107
108def select_non_prune(current_nodes: List[Type[InferNode]]) -> List[Type[InferNode]]:
109 candidate_nodes = []
110 for node in current_nodes:
111 candidate_nodes.extend([child for child in node.children if not child.prune])
112 return candidate_nodes
113
114
115def sort_by_strategy(

Callers 1

get_solutionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected