Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- \begin{algorithm}
- \caption{Algorithme génétique}
- \begin{algorithmic}[1]
- \State $\textit{t} \gets \text{0 }$
- \State $\text{initialiser $P_{t}$ avec des individus aléatoires issus de S}$
- \State \textbf{Fitness($P_{t}$)}
- \While {$\textit{critères d'arrêt}$ \textbf{Faux}}
- \State $\text{sélectionner des individus dans $P_{t}$}$
- \State $\text{recombiner des individus}$
- \State $\text{muter les individus}$
- \State \textbf{Fitness($P_t$)}
- \State $t \gets t+1$.
- \State $P_t \gets \text{les individus nouvellement créés}$
- \EndWhile
- \State \Return \text{meilleure solution trouvée}
- \end{algorithmic}
- \end{algorithm}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement