Skip to content

Commit 708b72a

Browse files
Fix conflicts
2 parents a48b152 + 95aebd1 commit 708b72a

File tree

5 files changed

+56
-11
lines changed

5 files changed

+56
-11
lines changed

.travis.yml

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

appveyor.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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"'

src/BaselineOfPolyMath/BaselineOfPolyMath.class.st

+14
Original file line numberDiff line numberDiff line change
@@ -176,3 +176,17 @@ BaselineOfPolyMath >> projectClass [
176176
on: NotFound
177177
do: [ super projectClass ]
178178
]
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+
]

src/Math-Core/PMVector.class.st

-6
Original file line numberDiff line numberDiff line change
@@ -206,12 +206,6 @@ PMVector >> householder [
206206
^Array with: b with: v
207207
]
208208

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-
215209
{ #category : #operation }
216210
PMVector >> log [
217211
"Apply log function to every element of a vector"

src/Math-Tests-Accuracy/PMAccuracyTestExample.class.st

+5-5
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,19 @@ PMAccuracyTestExample >> argumentWith: key [
2323

2424
{ #category : #tests }
2525
PMAccuracyTestExample >> checkAaa [
26-
(self argumentWith: 'Aaa') first
26+
self argument first
2727
ifTrue: [ ^ #(1 1) ].
2828
^ Array with: (4 + (0.4 * Random new next)) with: 2
2929
]
3030

3131
{ #category : #tests }
3232
PMAccuracyTestExample >> checkBbb [
33-
^ (self argumentWith: 'Bbb') first size + self parameter first
33+
^ self argument first size + self parameter first
3434
]
3535

3636
{ #category : #tests }
3737
PMAccuracyTestExample >> checkCcc [
38-
^ (self argumentWith: 'Ccc') first + (0.01 * self parameter first)
38+
^ self argument first + (0.01 * self parameter first)
3939
]
4040

4141
{ #category : #tests }
@@ -154,7 +154,7 @@ PMAccuracyTestExample >> tearDown [
154154
PMAccuracyTestExample >> testGetterAaa [
155155
^Array
156156
with: self parameter
157-
with: (self argumentWith: 'Aaa')
157+
with: self argument
158158
with: (self resultsAt: 'Aaa')
159159
with: (self numberOfDifferentParametersAt: 'Aaa')
160160
with: (self numberOfDifferentResultsAt: 'Aaa')
@@ -164,7 +164,7 @@ PMAccuracyTestExample >> testGetterAaa [
164164
PMAccuracyTestExample >> testGetterBbb [
165165
^Array
166166
with: self parameter
167-
with: (self argumentWith: 'Bbb')
167+
with: self argument
168168
with: (self resultsAt: 'Bbb')
169169
with: (self numberOfDifferentParametersAt: 'Bbb')
170170
with: (self numberOfDifferentResultsAt: 'Bbb')

0 commit comments

Comments
 (0)