Serge Stinckwich

Results 124 issues of Serge Stinckwich

KEScaleFreeNetworkTopology does not work correctly. When m0 = 1, we should obtain something like that : ![](https://upload.wikimedia.org/wikipedia/commons/2/2e/Barabasi_Albert_generated_network.jpg) and we obtain :

We should be able to do a tensorial sum between two models, two produce a new, not using integrate: that modify a model to add another one. This is not...

This is possible to do a tensor sum (integrate:) a model with a concern: ```Smalltalk model := KEModel new. concernA := KEModelPart new. concernB := KEModelPart new. model integrate: concernA....

Most of the model examples in Kendrick used values for parameters, but we don't where these values come from. Can we add a link for each models to the original...

At the moment we have no way to express units of quantities in Kendrick model. How we can introduce this?

enhancement

At the moment, there is no class to represent Stochastic Automata. We should represent them explicitely and their operations (like tensors sum).

Stochastic examples or tests use random values. They should be reproducible in a non-random way in order to ease their debugging. One way to do that is to fix the...

enhancement

This happens for models like the following one : ```Smalltalk KendrickModel influenza_england_1978_school attribute: #(status -> S I R); parameters: #(alpha beta lambda); transitions: #( S -- lambda --> I. I...

How to run the following model ? ```Smalltalk KendrickModel influenza_england_1978_school attribute: #(status -> S I R); parameters: #(alpha beta lambda); transitions: #( S -- lambda --> I. I -- alpha...

This is possible at the moment, to create models with two (or more) attributes: ```Smalltalk KEModel new attributes: {(#status -> #(#S #I #R)). (#species -> #(#mosquito #reservoir1 #reservoir2))}. ``` but...

enhancement