Skip to content

Commit dc6b25f

Browse files
committed
Merge branch 'master' into examples
2 parents 7369af7 + 80bf1b1 commit dc6b25f

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

export/tests/models/Identity.hpp

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,6 @@ class Model : public fmu_base {
5454
.setInitial(initial_t::CALCULATED)
5555
.setDependencies({"stringIn"});
5656

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-
.setVariability(variability_t::DISCRETE);
65-
#endif
6657
Model::reset();
6758
}
6859

@@ -95,14 +86,12 @@ class Model : public fmu_base {
9586
double real_{};
9687
bool boolean_{};
9788
std::string string_{};
98-
std::vector<uint8_t> binary_{};
9989

10090
void reset() {
10191
integer_ = 0;
10292
real_ = 0;
10393
boolean_ = false;
10494
string_ = "empty";
105-
binary_ = {};
10695
}
10796
};
10897

0 commit comments

Comments
 (0)