@@ -10,7 +10,9 @@ In[] := #["ExpressionsEventsGraph", VertexLabels -> Placed[Automatic, After]] &
1010 GenerateMultihistory[MultisetSubstitutionSystem[{a_, b_} :> {a + b}], MaxDestroyerEvents -> 1] @ {1, 2, 3}
1111```
1212
13- <img src =" /Documentation/Images/MaxDestroyerEvents1.png " width =" 322.2 " >
13+ <img src="/Documentation/Images/MaxDestroyerEvents1.png"
14+ width="322.2"
15+ alt="Out[ ] = ... {1, 2} -> {3 (* gen 1 * )}, {3 (* init * ), 3 (* gen 1 * )} -> 6 ...">
1416
1517If unset (which defaults to [ ` Infinity ` ] ( https://reference.wolfram.com/language/ref/Infinity.html ) ), it will generate a
1618full multihistory object subject to other selection and stopping parameters:
@@ -22,7 +24,9 @@ In[] := #["ExpressionsEventsGraph", VertexLabels -> Placed[Automatic, After]] &
2224 MultisetSubstitutionSystem[{a_, b_} :> {a + b}], MaxDestroyerEvents -> Infinity, MaxGeneration -> 1] @ {1, 2, 3}
2325```
2426
25- <img src =" /Documentation/Images/MaxDestroyerEventsInfinity.png " width =" 478.2 " >
27+ <img src="/Documentation/Images/MaxDestroyerEventsInfinity.png"
28+ width="478.2"
29+ alt="Out[ ] = ... {1, 2} -> {3 (* 1 + 2 * )}, {2, 1} -> {3 (* 2 + 1 * )}, {1, 3 (* init * )} -> {4}, <<3>> ...">
2630
2731If set to a finite number, it will generate a partial multihistory:
2832
@@ -32,6 +36,8 @@ In[] := #["ExpressionsEventsGraph", VertexLabels -> Placed[Automatic, After]] &
3236 GenerateMultihistory[MultisetSubstitutionSystem[{a_, b_} :> {a + b}], MaxDestroyerEvents -> 5] @ {1, 2, 3}
3337```
3438
35- <img src =" /Documentation/Images/MaxDestroyerEvents5.png " width =" 478.2 " >
39+ <img src="/Documentation/Images/MaxDestroyerEvents5.png"
40+ width="478.2"
41+ alt="Out[ ] = ... token-event graph containing tokens with out degrees up to 5 ...">
3642
3743Note that results generally depend on the event order in this case, similar to single histories.
0 commit comments