File tree Expand file tree Collapse file tree 3 files changed +72
-0
lines changed
src/BaselineOfPolyMathDataStructures Expand file tree Collapse file tree 3 files changed +72
-0
lines changed Original file line number Diff line number Diff line change
1
+ "
2
+ Description
3
+ --------------------
4
+
5
+ One line summary. For example, " " I represent a paragraph of text" " .
6
+
7
+ Three sentences about my main responsibilities - what I do, what I know.
8
+
9
+ State my main collaborators and one line about how I interact with them.
10
+
11
+ Public API and Key Messages
12
+ --------------------
13
+
14
+ - #
15
+ - #
16
+ - #
17
+
18
+ Examples
19
+ --------------------
20
+
21
+
22
+
23
+ Internal Representation and Key Implementation Points.
24
+ --------------------
25
+
26
+ "
27
+ Class {
28
+ #name : #BaselineOfPolyMathDataStructures ,
29
+ #superclass : #BaselineOf ,
30
+ #category : #BaselineOfPolyMathDataStructures
31
+ }
32
+
33
+ { #category : #testing }
34
+ BaselineOfPolyMathDataStructures class >> isDeprecated [
35
+ ^ true
36
+ ]
37
+
38
+ { #category : #baselines }
39
+ BaselineOfPolyMathDataStructures >> baseline: spec [
40
+
41
+ < baseline>
42
+ spec for: #common do: [ " Packages"
43
+ spec
44
+ package: ' Math-Vector' ;
45
+ package: ' Math-Matrix' with: [ spec requires: #( 'Math-Vector' ) ];
46
+ package: ' Math-Vector-Tests' with: [ spec requires: #( 'Math-Vector' ) ];
47
+ package: ' Math-Matrix-Tests' with: [ spec requires: #( 'Math-Matrix' ) ].
48
+
49
+ spec
50
+ group: ' Core' with: #( 'Math-Vector' 'Math-Matrix' ) ;
51
+ group: ' Tests' with: #( 'Math-Vector-Tests' 'Math-Matrix-Tests' ) ].
52
+
53
+ spec for: #( #'pharo9.x' #'pharo10.x' ) do: [
54
+ spec
55
+ package: ' Math-Matrix' with: [ spec requires: #( 'Math-DataStructures-Pharo11' ) ];
56
+ package: ' Math-DataStructures-Pharo11' ]
57
+ ]
Original file line number Diff line number Diff line change
1
+ "
2
+ Please comment package here
3
+ "
4
+ Class {
5
+ #name : #ManifestBaselineOfPolyMathDataStructures ,
6
+ #superclass : #PackageManifest ,
7
+ #category : #' BaselineOfPolyMathDataStructures-Manifest'
8
+ }
9
+
10
+ { #category : #testing }
11
+ ManifestBaselineOfPolyMathDataStructures class >> isDeprecated [
12
+
13
+ ^ true
14
+ ]
Original file line number Diff line number Diff line change
1
+ Package { #name : #BaselineOfPolyMathDataStructures }
You can’t perform that action at this time.
0 commit comments