while loop

parent 39e9908b
...@@ -344,7 +344,7 @@ fmi2Status fmi2SetReal (void* c, const fmi2ValueReference vr[], size_t nvr, cons ...@@ -344,7 +344,7 @@ fmi2Status fmi2SetReal (void* c, const fmi2ValueReference vr[], size_t nvr, cons
} }
real_variables[inverted_map[vr[i]]] = value[i]; real_variables[inverted_map[vr[i]]] = value[i];
cout<< "fmi2SetBoolean: (Value Reference " << vr[i] << ", Name: " << inverted_map[vr[i]] << " Value: " <<real_variables[inverted_map[vr[i]]] << ")\n"; cout<< "fmi2SetReal: (Value Reference " << vr[i] << ", Name: " << inverted_map[vr[i]] << " Value: " <<real_variables[inverted_map[vr[i]]] << ")\n";
//modelInstance->setReal(vr[i], value[i]); //modelInstance->setReal(vr[i], value[i]);
} }
catch (std::exception & ex) { catch (std::exception & ex) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment