]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/math/numerical-integration/numerical-integration.factor
core, basis, extra: Remove DOS line endings from files.
[factor.git] / extra / math / numerical-integration / numerical-integration.factor
index 261f33c4f3aa30540826f7f4aa7ae9929095e1d4..87bdd6e64a65d442efd63f65686bf50aa3e6fc2e 100644 (file)
@@ -16,6 +16,6 @@ SYMBOL: num-steps
     { 1 4 } { 1 } surround ;
 
 : integrate-simpson ( from to quot -- x )
-    [ setup-simpson-range dup ] dip 
+    [ setup-simpson-range dup ] dip
     map dup generate-simpson-weights
     v. swap [ third ] keep first - 6 / * ; inline