You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now integration.type is mandatory for all values of TimeIntegratorOption.
However, integration.type is only needed for TimeIntegratorOption = 4, not for TimeIntegratorOption = 0; 1; 2; 3.
We should find a way to change the parsing conditional, i.e. integration.type is still mandatory (parsed by get function) when TimeIntegratorOption = 4, but is not required when TimeIntegratorOption = 0; 1; 2; 3. Better off, when TimeIntegratorOption = 0; 1; 2; 3 but there is some integration.type value provided by the input, the code should generate a warning.
The text was updated successfully, but these errors were encountered:
Right now
integration.type
is mandatory for all values ofTimeIntegratorOption
.However,
integration.type
is only needed forTimeIntegratorOption = 4
, not forTimeIntegratorOption = 0; 1; 2; 3
.We should find a way to change the parsing conditional, i.e.
integration.type
is still mandatory (parsed byget
function) whenTimeIntegratorOption = 4
, but is not required whenTimeIntegratorOption = 0; 1; 2; 3
. Better off, whenTimeIntegratorOption = 0; 1; 2; 3
but there is someintegration.type
value provided by the input, the code should generate a warning.The text was updated successfully, but these errors were encountered: