Skip to content

Commit 5fec655

Browse files
Merge pull request #510 from SergeStinckwich/master
Fix baseline+loading
2 parents 176cfa0 + 8b35b68 commit 5fec655

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed

src/BaselineOfKendrick/BaselineOfKendrick.class.st

+2-2
Original file line numberDiff line numberDiff 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 numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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+
]

0 commit comments

Comments
 (0)