File tree 1 file changed +10
-9
lines changed
1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -82,15 +82,6 @@ class ConstraintSet : public Component {
82
82
*/
83
83
Jacobian GetJacobian () const final ;
84
84
85
- protected:
86
- /* *
87
- * @brief Read access to the value of the optimization variables.
88
- *
89
- * This must be used to formulate the constraint violation and Jacobian.
90
- */
91
- const VariablesPtr GetVariables () const { return variables_; };
92
-
93
- private:
94
85
/* *
95
86
* @brief Set individual Jacobians corresponding to each decision variable set.
96
87
* @param var_set Set of variables the current Jacobian block belongs to.
@@ -107,6 +98,16 @@ class ConstraintSet : public Component {
107
98
* simply do nothing.
108
99
*/
109
100
virtual void FillJacobianBlock (std::string var_set, Jacobian& jac_block) const = 0;
101
+
102
+ protected:
103
+ /* *
104
+ * @brief Read access to the value of the optimization variables.
105
+ *
106
+ * This must be used to formulate the constraint violation and Jacobian.
107
+ */
108
+ const VariablesPtr GetVariables () const { return variables_; };
109
+
110
+ private:
110
111
VariablesPtr variables_;
111
112
112
113
/* *
You can’t perform that action at this time.
0 commit comments