From 03dc9837d00979e2967d4ec983b76ebaddc63efc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= Date: Fri, 20 May 2022 12:27:22 +0200 Subject: [PATCH] Comment improvement --- src/CodeInterpreter.hh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/CodeInterpreter.hh b/src/CodeInterpreter.hh index efdb0367..ca45be29 100644 --- a/src/CodeInterpreter.hh +++ b/src/CodeInterpreter.hh @@ -1,5 +1,5 @@ /* - * Copyright © 2007-2021 Dynare Team + * Copyright © 2007-2022 Dynare Team * * This file is part of Dynare. * @@ -90,10 +90,10 @@ enum class Tags FPOP, //!< Pop a double from the stack - 25 (37) FLDTEF, //!< Stores the result of an external function in the stack - 26 (38) FSTPTEF, //!< Loads the result of an external function from the stack- 27 (39) - FLDTEFD, //!< Stores the result of an external function in the stack - 28 (40) - FSTPTEFD, //!< Loads the result of an external function from the stack- 29 (41) - FLDTEFDD, //!< Stores the result of an external function in the stack - 28 (42) - FSTPTEFDD //!< Loads the result of an external function from the stack- 29 (43) + FLDTEFD, //!< Stores the result of the 1st derivative of an external function in the stack - 28 (40) + FSTPTEFD, //!< Loads the result of the 1st derivative of an external function from the stack- 29 (41) + FLDTEFDD, //!< Stores the result of the 2nd derivative of an external function in the stack - 28 (42) + FSTPTEFDD //!< Loads the result of the 2nd derivative of an external function from the stack- 29 (43) };