short_circuit_function_evaluation
Allows calculating the if, multiIf, and, and or functions according to a short scheme. This helps optimize the execution of complex expressions in these functions and prevent possible exceptions (such as division by zero when it is not expected). Possible values:enable— Enables short-circuit function evaluation for functions that are suitable for it (can throw an exception or computationally heavy).force_enable— Enables short-circuit function evaluation for all functions.disable— Disables short-circuit function evaluation.