Skip to content

Commit

Permalink
Merge pull request KendrickOrg#510 from SergeStinckwich/master
Browse files Browse the repository at this point in the history
Fix baseline+loading
  • Loading branch information
SergeStinckwich committed Oct 25, 2022
2 parents 176cfa0 + 8b35b68 commit 5fec655
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/BaselineOfKendrick/BaselineOfKendrick.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ BaselineOfKendrick >> baseline: spec [
spec
baseline: 'PolyMath' with: [
spec
repository: 'github://PolyMathOrg/PolyMath:v1.0.4';
repository: 'github://PolyMathOrg/PolyMath:v1.0.5';
loads: 'Core' ];
baseline: 'DataFrame'
with: [ spec repository: 'github://PolyMathOrg/DataFrame:v2.0' ].
Expand Down Expand Up @@ -94,5 +94,5 @@ BaselineOfKendrick >> baseline: spec [
package: 'Kendrick-Examples'
with: [ spec requires: #( 'Kendrick-Core' 'Kendrick-DSL' ) ];
package: 'Kendrick2-Automata'
with: [ spec requires: #( 'Kendrick-Core' ) ].
with: [ spec requires: #( 'Kendrick-Core' ) ]
]
25 changes: 25 additions & 0 deletions src/Kendrick-Core/K2TGillespieSimulation.trait.st
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
"
Add a trait for Gillespie simulation engine. Models that are simulable by Gillespie engine should use this trait.
"
Trait {
#name : #K2TGillespieSimulation,
#category : #'Kendrick-Core'
}

{ #category : #accessing }
K2TGillespieSimulation >> executeEventAtRateIndex: aNumber [

self explicitRequirement
]

{ #category : #accessing }
K2TGillespieSimulation >> rates [

self explicitRequirement
]

{ #category : #accessing }
K2TGillespieSimulation >> t: time [

self explicitRequirement
]

0 comments on commit 5fec655

Please sign in to comment.