File tree Expand file tree Collapse file tree 1 file changed +0
-11
lines changed
Expand file tree Collapse file tree 1 file changed +0
-11
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments