The list of static parameters is defined by using the following syntax:
Static {
protection Parameter<type> name initial_value;
}
The qualifier for static parameters is the class name followed by ``::''
NewModel StaticTest {
Static {
protected Parameter<double> x;
}
evaluate { StaticTest::x = 1.0; }
}
Example 3.11: Static MDL class parameters