# --simulation-parameter MsgLen int 100 200 300 

%% define parameter MsgLen of type int and three values

# --simulation-parameter MsgLen int @[1-3]00 

%% define parameter MsgLen of type int and a regular expression for the value

# --simulation-parameter ServiceTime float 1.0 2.0

%% define parameter ServiceTime of type float with two values

# --simulation-parameter ServiceTime float seq 1 1 10

%% define parameter ServiceTime with values from 1 to 10 with step 1

# --simulation-parameter ServiceTime float ! 1 2 3

%% define all values for parameter ServiceTime except the values 1, 2 and 3

