We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3466dee commit 3a137d6Copy full SHA for 3a137d6
src/ModelingToolkit.jl
@@ -233,25 +233,25 @@ PrecompileTools.@compile_workload begin
233
end
234
if structp
235
@variables begin
236
- x(t) = 0.0, [description="foo", guess=1.0]
+ x(t) = 0.0, [description = "foo", guess = 1.0]
237
238
else
239
240
- x(t) = 0.0, [description="foo w/o structp", guess=1.0]
+ x(t) = 0.0, [description = "foo w/o structp", guess = 1.0]
241
242
243
@parameters begin
244
- a = 1.0, [description="bar"]
+ a = 1.0, [description = "bar"]
245
246
- b=2*a, [description="if"]
+ b = 2 * a, [description = "if"]
247
248
c
249
250
251
@equations begin
252
x ~ a + b
253
254
- end;
+ end
255
256
257
export AbstractTimeDependentSystem,
0 commit comments