You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"The number of incoming particles given by the process ($(incoming_particles(proc))) mismatches the number of given stateful incoming particles ($(length(in_p)))",
196
+
"the number of incoming particles given by the process ($(incoming_particles(proc))) mismatches the number of given stateful incoming particles ($(length(in_p)))",
"The number of outgoing particles given by the process ($(outgoing_particles(proc))) mismatches the number of given stateful outgoing particles ($(length(out_p)))",
201
+
"the number of outgoing particles given by the process ($(outgoing_particles(proc))) mismatches the number of given stateful outgoing particles ($(length(out_p)))",
202
202
),
203
203
)
204
204
205
205
for (proc_p, p) inzip(incoming_particles(proc), in_p)
206
206
proc_p == p.species ||throw(
207
207
InvalidInputError(
208
-
"Process given particle species ($(proc_p)) does not match stateful particle species ($(p.species))",
208
+
"process given particle species ($(proc_p)) does not match stateful particle species ($(p.species))",
209
209
),
210
210
)
211
211
is_incoming(p) ||throw(
212
212
InvalidInputError(
213
-
"Stateful particle $(p) is given as an incoming particle but is outgoing",
213
+
"stateful particle $(p) given as an incoming particle but is outgoing",
214
214
),
215
215
)
216
216
end
217
217
for (proc_p, p) inzip(outgoing_particles(proc), out_p)
218
218
proc_p == p.species ||throw(
219
219
InvalidInputError(
220
-
"Process given particle species ($(proc_p)) does not match stateful particle species ($(p.species))",
220
+
"process given particle species ($(proc_p)) does not match stateful particle species ($(p.species))",
221
221
),
222
222
)
223
223
is_outgoing(p) ||throw(
224
224
InvalidInputError(
225
-
"Stateful particle $(p) is given as an outgoing particle but is incoming",
225
+
"stateful particle $(p) given as an outgoing particle but is incoming",
0 commit comments