File tree 2 files changed +27
-2
lines changed
2 files changed +27
-2
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ BaselineOfKendrick >> baseline: spec [
21
21
spec
22
22
baseline: ' PolyMath' with: [
23
23
spec
24
- repository: ' github://PolyMathOrg/PolyMath:v1.0.4 ' ;
24
+ repository: ' github://PolyMathOrg/PolyMath:v1.0.5 ' ;
25
25
loads: ' Core' ];
26
26
baseline: ' DataFrame'
27
27
with: [ spec repository: ' github://PolyMathOrg/DataFrame:v2.0' ].
@@ -94,5 +94,5 @@ BaselineOfKendrick >> baseline: spec [
94
94
package: ' Kendrick-Examples'
95
95
with: [ spec requires: #( 'Kendrick-Core' 'Kendrick-DSL' ) ];
96
96
package: ' Kendrick2-Automata'
97
- with: [ spec requires: #( 'Kendrick-Core' ) ].
97
+ with: [ spec requires: #( 'Kendrick-Core' ) ]
98
98
]
Original file line number Diff line number Diff line change
1
+ "
2
+ Add a trait for Gillespie simulation engine. Models that are simulable by Gillespie engine should use this trait.
3
+ "
4
+ Trait {
5
+ #name : #K2TGillespieSimulation ,
6
+ #category : #' Kendrick-Core'
7
+ }
8
+
9
+ { #category : #accessing }
10
+ K2TGillespieSimulation >> executeEventAtRateIndex: aNumber [
11
+
12
+ self explicitRequirement
13
+ ]
14
+
15
+ { #category : #accessing }
16
+ K2TGillespieSimulation >> rates [
17
+
18
+ self explicitRequirement
19
+ ]
20
+
21
+ { #category : #accessing }
22
+ K2TGillespieSimulation >> t: time [
23
+
24
+ self explicitRequirement
25
+ ]
You can’t perform that action at this time.
0 commit comments