Feat: schéma d'optimisation
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Bertrand Benjamin 2020-09-01 10:03:49 +02:00
parent 88d075b185
commit e2b6fb4afa
2 changed files with 11 additions and 10 deletions

View File

@ -25,24 +25,25 @@ Pour réaliser cette optimisation, on a utilisé plusieurs méthodes:
Pour \textbf{optimiser}, la démarche sera toujours la même:
\begin{center}
\begin{tikzpicture}[auto]
\begin{tikzpicture}[auto, bend angle=45]
\tikzstyle{block} = [rectangle, draw=text, thick, fill=highlightbg,
text width=7em, text centered, rounded corners, minimum height=4em];
\tikzstyle{element} = [text width=7em, text centered, minimum height=4em];
\tikzstyle{line} = [draw, thick, -latex];
\matrix [column sep=12mm]
{
\node [block] (fct) {$f$ la fonction à optimiser}; &
\node [block] (derv) {$f'$ la fonction dérivée}; &
\node [block] (sgn) {Tableau de signes de $f'$}; &
\node [block] (varia) {Tableau de variations de $f$}; &
\node [block] (minmax) {Minimum ou maximum};
\node [element] (fct) {$f$ la fonction à optimiser}; &
\node [element] (derv) {$f'$ la fonction dérivée}; &
\node [element] (sgn) {Tableau de signes de $f'$}; &
\node [element] (varia) {Tableau de variations de $f$}; &
\node [element] (minmax) {Minimum ou maximum};
\\
};
\tikzstyle{every path}=[line]
\path (fct) -- (derv);
\path (derv) -- (sgn);
\path (sgn) -- (varia);
\path (varia) -- (minmax);
\path (fct) edge [bend left] node [block] {1. Dériver} (derv);
\path (derv) edge [bend right] node [block, swap] {2. Étudier le signe} (sgn);
\path (sgn) edge [bend left] node [block] {3. Déduire variation} (varia);
\path (varia) edge [bend right] node [block, swap] {4. Identifier} (minmax);
\end{tikzpicture}
\end{center}