File tree 5 files changed +56
-11
lines changed
5 files changed +56
-11
lines changed Original file line number Diff line number Diff line change
1
+ language : smalltalk
2
+ sudo : false
3
+
4
+ os :
5
+ - linux
6
+ - osx
7
+
8
+ smalltalk :
9
+ - Pharo32-7.0
10
+ - Pharo64-7.0
11
+ - Pharo32-8.0
12
+ - Pharo64-8.0
13
+
14
+ matrix :
15
+ fast_finish : true
Original file line number Diff line number Diff line change
1
+ environment :
2
+ CYG_ROOT : C:\cygwin
3
+ CYG_BASH : C:\cygwin\bin\bash
4
+ CYG_CACHE : C:\cygwin\var\cache\setup
5
+ CYG_EXE : C:\cygwin\setup-x86.exe
6
+ CYG_MIRROR : http://cygwin.mirror.constant.com
7
+ SCI_RUN : /cygdrive/c/smalltalkCI-master/run.sh
8
+ matrix :
9
+ - SMALLTALK : Pharo-8.0
10
+
11
+ platform :
12
+ - x86
13
+
14
+ install :
15
+ - ' %CYG_EXE% -dgnqNO -R "%CYG_ROOT%" -s "%CYG_MIRROR%" -l "%CYG_CACHE%" -P unzip'
16
+ - ps : Start-FileDownload "https://github.com/hpi-swa/smalltalkCI/archive/master.zip" "C:\smalltalkCI.zip"
17
+ - 7z x C:\smalltalkCI.zip -oC:\ -y > NULL
18
+
19
+ build : false
20
+
21
+ test_script :
22
+ - ' %CYG_BASH% -lc "cd $APPVEYOR_BUILD_FOLDER; exec 0</dev/null; $SCI_RUN"'
Original file line number Diff line number Diff line change @@ -176,3 +176,17 @@ BaselineOfPolyMath >> projectClass [
176
176
on: NotFound
177
177
do: [ super projectClass ]
178
178
]
179
+
180
+ { #category : #dependencies }
181
+ BaselineOfPolyMath >> sMark: spec [
182
+ spec
183
+ baseline: ' SMark'
184
+ with: [ spec repository: ' github://smarr/SMark:v1.0.4/repository' ]
185
+ ]
186
+
187
+ { #category : #dependencies }
188
+ BaselineOfPolyMath >> xmlWriter: spec [
189
+ spec
190
+ baseline: ' XMLWriter'
191
+ with: [ spec repository: ' github://pharo-contributions/XML-XMLWriter:2.9.0/src' ]
192
+ ]
Original file line number Diff line number Diff line change @@ -206,12 +206,6 @@ PMVector >> householder [
206
206
^ Array with: b with: v
207
207
]
208
208
209
- { #category : #testing }
210
- PMVector >> isReal [
211
- " Answer true if all values of the vector are real numbers"
212
- ^ self allSatisfy: [ :each | each isRealNumber ].
213
- ]
214
-
215
209
{ #category : #operation }
216
210
PMVector >> log [
217
211
" Apply log function to every element of a vector"
Original file line number Diff line number Diff line change @@ -23,19 +23,19 @@ PMAccuracyTestExample >> argumentWith: key [
23
23
24
24
{ #category : #tests }
25
25
PMAccuracyTestExample >> checkAaa [
26
- ( self argumentWith: ' Aaa ' ) first
26
+ self argument first
27
27
ifTrue: [ ^ #(1 1) ].
28
28
^ Array with: (4 + (0.4 * Random new next)) with: 2
29
29
]
30
30
31
31
{ #category : #tests }
32
32
PMAccuracyTestExample >> checkBbb [
33
- ^ ( self argumentWith: ' Bbb ' ) first size + self parameter first
33
+ ^ self argument first size + self parameter first
34
34
]
35
35
36
36
{ #category : #tests }
37
37
PMAccuracyTestExample >> checkCcc [
38
- ^ ( self argumentWith: ' Ccc ' ) first + (0.01 * self parameter first)
38
+ ^ self argument first + (0.01 * self parameter first)
39
39
]
40
40
41
41
{ #category : #tests }
@@ -154,7 +154,7 @@ PMAccuracyTestExample >> tearDown [
154
154
PMAccuracyTestExample >> testGetterAaa [
155
155
^ Array
156
156
with: self parameter
157
- with: ( self argumentWith: ' Aaa ' )
157
+ with: self argument
158
158
with: (self resultsAt: ' Aaa' )
159
159
with: (self numberOfDifferentParametersAt: ' Aaa' )
160
160
with: (self numberOfDifferentResultsAt: ' Aaa' )
@@ -164,7 +164,7 @@ PMAccuracyTestExample >> testGetterAaa [
164
164
PMAccuracyTestExample >> testGetterBbb [
165
165
^ Array
166
166
with: self parameter
167
- with: ( self argumentWith: ' Bbb ' )
167
+ with: self argument
168
168
with: (self resultsAt: ' Bbb' )
169
169
with: (self numberOfDifferentParametersAt: ' Bbb' )
170
170
with: (self numberOfDifferentResultsAt: ' Bbb' )
You can’t perform that action at this time.
0 commit comments