Bytecode: add some comments to FNUMEXPR_

[skip ci]
master
Sébastien Villemot 2022-07-26 14:51:48 +02:00
parent 21cecee599
commit 613e0da782
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
1 changed files with 3 additions and 1 deletions

View File

@ -842,7 +842,9 @@ class FNUMEXPR_ : public BytecodeInstruction
{
private:
ExpressionType expression_type;
int equation, dvariable1, lag1;
int equation; // Equation number (non-block-specific) (or temporary term number for ExpressionType::TemporaryTerm)
int dvariable1; // For derivatives, type-specific ID of the derivation variable
int lag1; // For derivatives, lead/lag of the derivation variable
public:
FNUMEXPR_(const ExpressionType expression_type_arg, int equation_arg) :
BytecodeInstruction{Tags::FNUMEXPR},