This update adds support for sublayers within a network. Sublayers of context are integrated independently of one another. Sublayers may also have different parameters; for example, different sublayers may have different integration rates. Finally, network weights are specified in a more flexible format, allowing weights to be set using arbitrary expressions.
To implement these new features, changes had to be made to the model API:
* Sublayers must be indicated explicitly using a new Parameters attribute.
* Weights are specified in a different format to allow assigning patterns to any specific region of a connection matrix.
* Previously, special parameters could be used to scale patterns when adding them to a weight matrix. Scaling parameters were normalized before being applied. Scaling parameters are no longer explictly supported, but the same effect can be achieved using dependent parameters (to normalize scaling parameters) and weight expressions (to apply scaling or add an intercept).
* The `Axx` and `Dxx` parameters have been removed from the CMR-D implementation. The same effects can be achieved using weights expressions.