Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support WolframModelEvolutionObject as an argument for WolframModel #436

Open
daneelsan opened this issue Oct 7, 2020 · 0 comments
Open
Labels
evolution Modifies code for running the evolution of the model feature New functionality, or change in existing functionality wolfram language Requires Wolfram Language implementation

Comments

@daneelsan
Copy link
Collaborator

daneelsan commented Oct 7, 2020

The problem

The idea is to support the passing of WolframModelEvolutionObject objects as an argument for WolframModel.

E.g: Let's say we already produced a WolframModelEvolutionObject which is the result of evolving some initial state for a trillion steps. Then, if I wanted to continue evolving it then the following syntax should do so:

In[] := WolframModel[WolframModelEvolutionObject[...] (* already run a trillion *), 10]
Out[] = WolframModelEvolutionObject[...] (* object that ran a trillion + 10 times *)

This syntax would be translated to WolframModel[Automatic, obj, 10] or WolframModel[rules, obj, 10], where rules is obtained from the obj itself.

This also allows us to:

  1. Change the rules of the evolution, by specifying a new rules.
  2. Change the event ordering function, etc.

Possible solution

Missing

Additional context

In WolframModel[rules, object, 10], 10 could be interpreted as either absolute or additional steps to the already evolved object. @maxitg suggested that by default 10 would be translated to

WolframModel[rules, object, <|"AdditionalGenerations" -> 10|> (* new property *)]

instead of <|"MaxGenerations" -> 10|>.

If <|"MaxGenerations" -> 10|> is passed and the object already run for > 10 steps, a proposing functionality is that WolframModel returns the object "trimmed", i.e. the evolution until the 10th step.

@daneelsan daneelsan added the feature New functionality, or change in existing functionality label Oct 7, 2020
@maxitg maxitg added the evolution Modifies code for running the evolution of the model label Oct 7, 2020
@daneelsan daneelsan added the wolfram language Requires Wolfram Language implementation label Oct 11, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
evolution Modifies code for running the evolution of the model feature New functionality, or change in existing functionality wolfram language Requires Wolfram Language implementation
Projects
None yet
Development

No branches or pull requests

2 participants