We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7369af7 + 80bf1b1 commit dc6b25fCopy full SHA for dc6b25f
1 file changed
export/tests/models/Identity.hpp
@@ -54,15 +54,6 @@ class Model : public fmu_base {
54
.setInitial(initial_t::CALCULATED)
55
.setDependencies({"stringIn"});
56
57
-#ifdef FMI3
58
- register_binary("binaryIn", &state_.binary_)
59
- .setCausality(causality_t::INPUT)
60
- .setVariability(variability_t::DISCRETE);
61
-
62
- register_binary("binaryOut", &state_.binary_)
63
- .setCausality(causality_t::OUTPUT)
64
65
-#endif
66
Model::reset();
67
}
68
@@ -95,14 +86,12 @@ class Model : public fmu_base {
95
86
double real_{};
96
87
bool boolean_{};
97
88
std::string string_{};
98
- std::vector<uint8_t> binary_{};
99
89
100
90
void reset() {
101
91
integer_ = 0;
102
92
real_ = 0;
103
93
boolean_ = false;
104
94
string_ = "empty";
105
- binary_ = {};
106
107
};
108
0 commit comments