This partial function defines the input and output arguments of
an initialState(..) function of a random number generator
package.
partial function initialState
extends Modelica.Icons.Function;
input Integer localSeed "The local seed to be used for generating initial states";
input Integer globalSeed "The global seed to be combined with the local seed";
input Integer stateSize "The dimension of the internal state vector";
output Integer[stateSize] state "The generated initial states";
end initialState;