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
Currently SDE expects the inputVars and outputVars arrays in the JSON spec file to be provided as C names with numeric indices, e.g. _var_name[0][1]. This requires advance knowledge of subscript->index mapping and generally makes usage more difficult.
We should allow for providing these variables using the original Vensim names instead, and convert to C names as needed inside of SDE. We can call the arrays inputVarNames and outputVarNames, and these will take precedence over inputVars and outputVars.
The text was updated successfully, but these errors were encountered:
Currently SDE expects the
inputVars
andoutputVars
arrays in the JSON spec file to be provided as C names with numeric indices, e.g._var_name[0][1]
. This requires advance knowledge of subscript->index mapping and generally makes usage more difficult.We should allow for providing these variables using the original Vensim names instead, and convert to C names as needed inside of SDE. We can call the arrays
inputVarNames
andoutputVarNames
, and these will take precedence overinputVars
andoutputVars
.The text was updated successfully, but these errors were encountered: