@@ -17,7 +17,7 @@ prob = ODEProblem(sys, [], tspan, [])
1717
1818@test prob. f. initializeprob[y] == 2.0
1919@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 ))
2121
2222# Guess via observed
2323
@@ -34,7 +34,7 @@ prob = ODEProblem(sys, [], tspan, [])
3434
3535@test prob. f. initializeprob[x] == 2.0
3636@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 ))
3838
3939# Guess via parameter
4040
@@ -52,7 +52,7 @@ tspan = (0.0, 0.2)
5252prob = ODEProblem (sys, [], tspan, [])
5353
5454@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 ))
5656
5757# Guess via observed parameter
5858
@@ -61,7 +61,7 @@ sol = solve(prob.f.initializeprob; show_trace=Val(true))
6161@variables y (t) [guess = a]
6262
6363eqs = [D (x) ~ a,
64- y ~ x]
64+ y ~ x]
6565
6666initialization_eqs = [1 ~ exp (1 + x)]
6767
@@ -72,4 +72,4 @@ tspan = (0.0, 0.2)
7272prob = ODEProblem (sys, [], tspan, [])
7373
7474@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