This repository was archived by the owner on Oct 17, 2023. It is now read-only.

Description
Using a co-simulation with multiple real value inputs that are discrete I have seen that the first value in the input file is copied to all real inputs. For example a model with real discrete variables A, B, C and an input file that using the compliance checker with an input similar to:
"time","A","B","C"
0,1.0,2.0,3.0
The output file (using -f) will show:
"time","A","B","C"
0,1.0,1.0,1.0
If I use integers or continuous no issue.
I originally raised this here:
ghorwin/FMICodeGenerator#32
But I believe the issue is not with the code generator but seems to be the compliance checker.