Support WolframModelEvolutionObject as an argument for WolframModel #436
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
The problem
The idea is to support the passing of
WolframModelEvolutionObject
objects as an argument forWolframModel
.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:This syntax would be translated to
WolframModel[Automatic, obj, 10]
orWolframModel[rules, obj, 10]
, whererules
is obtained from theobj
itself.This also allows us to:
rules
.Possible solution
Missing
Additional context
In
WolframModel[rules, object, 10]
, 10 could be interpreted as either absolute or additional steps to the already evolvedobject
. @maxitg suggested that by default10
would be translated toinstead of
<|"MaxGenerations" -> 10|>
.If
<|"MaxGenerations" -> 10|>
is passed and theobject
already run for> 10
steps, a proposing functionality is thatWolframModel
returns theobject
"trimmed", i.e. the evolution until the 10th step.The text was updated successfully, but these errors were encountered: