From 4a8407e61a674ecfb54eee13fbc40d6e9a9eec2f Mon Sep 17 00:00:00 2001 From: Henrik Tidefelt Date: Mon, 23 Nov 2020 23:46:14 +0100 Subject: [PATCH] Add missing semicolon in listing --- chapters/synchronous.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapters/synchronous.tex b/chapters/synchronous.tex index 6a4846f8d..45acf1c11 100644 --- a/chapters/synchronous.tex +++ b/chapters/synchronous.tex @@ -1219,7 +1219,7 @@ \subsection{Solver Methods}\label{solver-methods} input Real u; Real x(start = 1, fixed = true); equation - der(x) = -x + u + der(x) = -x + u; \end{lstlisting} shall be transformed to a clocked discretized continuous-time partition with the \lstinline!"ExplicitEuler"! method. The following model is a manual implementation: \begin{lstlisting}[language=modelica]