@@ -17,7 +17,7 @@ prob = ODEProblem(sys, [], tspan, [])
17
17
18
18
@test prob. f. initializeprob[y] == 2.0
19
19
@test prob. f. initializeprob[x] == 2.0
20
- sol = solve (prob. f. initializeprob; show_trace= Val (true ))
20
+ sol = solve (prob. f. initializeprob; show_trace = Val (true ))
21
21
22
22
# Guess via observed
23
23
@@ -34,7 +34,7 @@ prob = ODEProblem(sys, [], tspan, [])
34
34
35
35
@test prob. f. initializeprob[x] == 2.0
36
36
@test prob. f. initializeprob[y] == 2.0
37
- sol = solve (prob. f. initializeprob; show_trace= Val (true ))
37
+ sol = solve (prob. f. initializeprob; show_trace = Val (true ))
38
38
39
39
# Guess via parameter
40
40
@@ -52,7 +52,7 @@ tspan = (0.0, 0.2)
52
52
prob = ODEProblem (sys, [], tspan, [])
53
53
54
54
@test prob. f. initializeprob[x] == - 1.0
55
- sol = solve (prob. f. initializeprob; show_trace= Val (true ))
55
+ sol = solve (prob. f. initializeprob; show_trace = Val (true ))
56
56
57
57
# Guess via observed parameter
58
58
@@ -61,7 +61,7 @@ sol = solve(prob.f.initializeprob; show_trace=Val(true))
61
61
@variables y (t) [guess = a]
62
62
63
63
eqs = [D (x) ~ a,
64
- y ~ x]
64
+ y ~ x]
65
65
66
66
initialization_eqs = [1 ~ exp (1 + x)]
67
67
@@ -72,4 +72,4 @@ tspan = (0.0, 0.2)
72
72
prob = ODEProblem (sys, [], tspan, [])
73
73
74
74
@test prob. f. initializeprob[x] == - 1.0
75
- sol = solve (prob. f. initializeprob; show_trace= Val (true ))
75
+ sol = solve (prob. f. initializeprob; show_trace = Val (true ))
0 commit comments