File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ PMNewtonZeroFinder class >> function: aBlock1 derivative: aBlock2 [
4040]
4141
4242{ #category : #information }
43- PMNewtonZeroFinder class >> rootFindingAlgorithmWith : precision [
43+ PMNewtonZeroFinder class >> with : precision [
4444
4545 | rootFinder |
4646 rootFinder := PMNewtonZeroFinder new .
Original file line number Diff line number Diff line change @@ -249,7 +249,7 @@ PMPolynomial >> roots [
249249PMPolynomial >> roots: aNumber [
250250
251251 | pol roots x rootFinder |
252- rootFinder := PMNewtonZeroFinder rootFindingAlgorithmWith : aNumber.
252+ rootFinder := PMNewtonZeroFinder with : aNumber.
253253 pol := self class coefficients:
254254 (coefficients reverse collect: [ :each | each asFloat ]).
255255 roots := OrderedCollection new : self degree.
You can’t perform that action at this time.
0 commit comments