Skip to content

Commit 28579bd

Browse files
Remove quadratic closure Rhs
1 parent d6b4e90 commit 28579bd

File tree

2 files changed

+0
-17
lines changed

2 files changed

+0
-17
lines changed

src/+otp/+quadratic/QuadraticProblem.m

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
classdef QuadraticProblem < otp.Problem
22

3-
properties
4-
RhsClosure
5-
end
6-
73
methods
84
function obj = QuadraticProblem(timeSpan, y0, parameters)
95
obj@otp.Problem('Quadratic Problem', [], timeSpan, y0, parameters);
@@ -21,8 +17,6 @@ function onSettingsChanged(obj)
2117
'PartialDerivativea', @(t, x) otp.quadratic.pda(t, x, a, B, C), ...
2218
'PartialDerivativeB', @(t, x) otp.quadratic.pdb(t, x, a, B, C), ...
2319
'PartialDerivativeC', @(t, x) otp.quadratic.pdc(t, x, a, B, C));
24-
25-
obj.RhsClosure = otp.Rhs(@(t, x, Btilde) otp.quadratic.fclosureB(t, x, a, B, C, Btilde));
2620
end
2721

2822
function validateNewState(obj, newTimeSpan, newY0, newParameters)

src/+otp/+quadratic/fclosureB.m

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)