Butanium

Untitled

Mar 2nd, 2022 (edited)
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
OCaml 0.66 KB | None | 0 0
  1. type exploration_mode = Min_spanning_tree | Standard_deviation
  2. (* [FR] Définie le paramètre d'exploration utilisée pour sélectionner le meilleur fils d'un noeud
  3.    - Min_spanning_tree utilise la longueur de l'arbre couvrant minimal
  4.    - Standard_deviation utilise la valeur de l'écart type entre les scores des noeuds une fois que la racine de l'arbre
  5.        est entièrement développé *)
  6. (* [EN] Define the exploration parameter used to select the best child of a node
  7.    - Min_spanning_tree use the length of the minimal spanning tree
  8.    - Standard_deviation use the standard deviation of the score of all the children of the root once they are developed *)
  9.  
Add Comment
Please, Sign In to add comment