Reference-FMUs icon indicating copy to clipboard operation
Reference-FMUs copied to clipboard

minor bug in fmi3GetBinary & fmi3SetBinary

Open masoud-najafi opened this issue 1 year ago • 0 comments

In the API fmi3GetBinary (in fmi3Functions.c ) this piece of code is missing. if (S->isDirtyValues) { CALL(calculateValues(S)); S->isDirtyValues = false; } Also in fmi3SetBinary you need to add this line: if (nValueReferences > 0) S->isDirtyValues = true;

masoud-najafi avatar Sep 27 '24 11:09 masoud-najafi