We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20f1baf commit ef0b246Copy full SHA for ef0b246
src/BaselineOfPolyMathDataStructures/BaselineOfPolyMathDataStructures.class.st
@@ -0,0 +1,19 @@
1
+Class {
2
+ #name : #BaselineOfPolyMathDataStructures,
3
+ #superclass : #BaselineOf,
4
+ #category : #BaselineOfPolyMathDataStructures
5
+}
6
+
7
+{ #category : #baselines }
8
+BaselineOfPolyMathDataStructures >> baseline: spec [
9
+ <baseline>
10
+ spec for: #common do: [
11
+ "External dependencies"
12
13
+ "Packages"
14
+ spec
15
+ package: 'Math-Core';
16
+ package: 'Math-Matrix' with: [ spec requires: #('Math-Core') ];
17
+ package: 'Math-Tests-Core' with: [ spec requires: #('Math-Core') ];
18
+ package: 'Math-Tests-Matrix' with: [ spec requires: #('Math-Matrix') ] ].
19
+]
src/BaselineOfPolyMathDataStructures/package.st
@@ -0,0 +1 @@
+Package { #name : #BaselineOfPolyMathDataStructures }
0 commit comments