tvb-root icon indicating copy to clipboard operation
tvb-root copied to clipboard

Support multiple models in same network

Open maedoc opened this issue 3 years ago • 0 comments

Describe the new feature or enhancement

A single network model should support multiple models on different nodes.

Describe your proposed implementation

class MultiModels:
    models = List(of=Model, required=True)
    partition = Array(of=int, required=True)
    @property
    def nvar(self):
        return max([model.nvar for model in self.models])
    ... 

Describe possible alternatives

Builtin support on the simulator itself.

Additional comments

This is a request that occurs frequently enough and currently isn't possible.

maedoc avatar Apr 28 '22 07:04 maedoc