File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ BaselineOfKendrick >> baseline: spec [
2121 spec
2222 baseline: ' PolyMath' with: [
2323 spec
24- repository: ' github://PolyMathOrg/PolyMath:v1.0.4 ' ;
24+ repository: ' github://PolyMathOrg/PolyMath:v1.0.5 ' ;
2525 loads: ' Core' ];
2626 baseline: ' DataFrame'
2727 with: [ spec repository: ' github://PolyMathOrg/DataFrame:v2.0' ].
@@ -94,5 +94,5 @@ BaselineOfKendrick >> baseline: spec [
9494 package: ' Kendrick-Examples'
9595 with: [ spec requires: #( 'Kendrick-Core' 'Kendrick-DSL' ) ];
9696 package: ' Kendrick2-Automata'
97- with: [ spec requires: #( 'Kendrick-Core' ) ].
97+ with: [ spec requires: #( 'Kendrick-Core' ) ]
9898]
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