From 82fd581e9fdd8fdf214bca1fd671e686e0494b10 Mon Sep 17 00:00:00 2001 From: Aaron Schaefer Date: Sun, 13 Jan 2008 10:41:35 -0500 Subject: [PATCH 1/9] Fix circular doc errors --- extra/editors/vim/vim-docs.factor | 4 ++-- extra/math/statistics/statistics-docs.factor | 21 ++++++++++---------- 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/extra/editors/vim/vim-docs.factor b/extra/editors/vim/vim-docs.factor index 9f141f524f..020117564d 100644 --- a/extra/editors/vim/vim-docs.factor +++ b/extra/editors/vim/vim-docs.factor @@ -1,5 +1,5 @@ -USING: definitions editors.vim help help.markup help.syntax io io.files -editors words ; +USING: definitions help help.markup help.syntax io io.files editors words ; +IN: editors.vim ARTICLE: { "vim" "vim" } "Vim support" "This module makes the " { $link edit } " word work with Vim by setting the " { $link edit-hook } " global variable to call " { $link vim-location } ". The " { $link vim-path } " variable contains the name of the vim executable. The default " { $link vim-path } " is " { $snippet "\"gvim\"" } "." diff --git a/extra/math/statistics/statistics-docs.factor b/extra/math/statistics/statistics-docs.factor index bb92178e6d..4787a85aed 100644 --- a/extra/math/statistics/statistics-docs.factor +++ b/extra/math/statistics/statistics-docs.factor @@ -1,49 +1,50 @@ -USING: math.statistics help.markup help.syntax debugger ; +USING: help.markup help.syntax debugger ; +IN: math.statistics HELP: geometric-mean { $values { "seq" "a sequence of numbers" } { "n" "a non-negative real number"} } { $description "Computes the geometric mean of all elements in " { $snippet "seq" } ". The geometric mean measures the central tendency of a data set that minimizes the effects of extreme values." } -{ $examples { $example "USE: math.statistics" "{ 1 2 3 } geometric-mean ." "1.81712059283214" } } +{ $examples { $example "USE: math.statistics" "{ 1 2 3 } geometric-mean ." "1.81712059283214" } } { $errors "Throws a " { $link signal-error. } " (square-root of 0) if the sequence is empty." } ; HELP: harmonic-mean { $values { "seq" "a sequence of numbers" } { "n" "a non-negative real number"} } { $description "Computes the harmonic mean of the elements in " { $snippet "seq" } ". The harmonic mean is appropriate when the average of rates is desired." } -{ $examples { $example "USE: math.statistics" "{ 1 2 3 } harmonic-mean ." "6/11" } } +{ $examples { $example "USE: math.statistics" "{ 1 2 3 } harmonic-mean ." "6/11" } } { $errors "Throws a " { $link signal-error. } " (divide by zero) if the sequence is empty." } ; HELP: mean { $values { "seq" "a sequence of numbers" } { "n" "a non-negative real number"} } { $description "Computes the arithmetic mean of all elements in " { $snippet "seq" } "." } -{ $examples { $example "USE: math.statistics" "{ 1 2 3 } mean ." "2" } } +{ $examples { $example "USE: math.statistics" "{ 1 2 3 } mean ." "2" } } { $errors "Throws a " { $link signal-error. } " (divide by zero) if the sequence is empty." } ; HELP: median { $values { "seq" "a sequence of numbers" } { "n" "a non-negative real number"} } { $description "Computes the median of " { $snippet "seq" } " by sorting the sequence from lowest value to highest and outputting the middle one. If there is an even number of elements in the sequence, the median is not unique, so the mean of the two middle values is outputted." } -{ $examples +{ $examples { $example "USE: math.statistics" "{ 1 2 3 } median ." "2" } - { $example "USE: math.statistics" "{ 1 2 3 4 } median ." "5/2" } } + { $example "USE: math.statistics" "{ 1 2 3 4 } median ." "5/2" } } { $errors "Throws a " { $link signal-error. } " (divide by zero) if the sequence is empty." } ; HELP: range { $values { "seq" "a sequence of numbers" } { "n" "a non-negative real number"} } { $description "Computes the distance of the maximum and minimum values in " { $snippet "seq" } "." } -{ $examples +{ $examples { $example "USE: math.statistics" "{ 1 2 3 } range ." "2" } { $example "USE: math.statistics" "{ 1 2 3 4 } range ." "3" } } ; HELP: std { $values { "seq" "a sequence of numbers" } { "x" "a non-negative real number"} } { $description "Computes the standard deviation of " { $snippet "seq" } " by squaring the variance of the sequence. It measures how widely spread the values in a sequence are about the mean." } -{ $examples +{ $examples { $example "USE: math.statistics" "{ 1 2 3 } std ." "1.0" } { $example "USE: math.statistics" "{ 1 2 3 4 } std ." "1.290994448735806" } } ; HELP: ste { $values { "seq" "a sequence of numbers" } { "x" "a non-negative real number"} } { $description "Computes the standard error of the mean for " { $snippet "seq" } ". It's defined as the standard deviation divided by the square root of the length of the sequence, and measures uncertainty associated with the estimate of the mean." } - { $examples + { $examples { $example "USE: math.statistics" "{ -2 2 } ste ." "2.0" } { $example "USE: math.statistics" "{ -2 2 2 } ste ." "1.333333333333333" } } ; @@ -51,7 +52,7 @@ HELP: var { $values { "seq" "a sequence of numbers" } { "x" "a non-negative real number"} } { $description "Computes the variance of " { $snippet "seq" } ". It's a measurement of the spread of values in a sequence. The larger the variance, the larger the distance of values from the mean." } { $notes "If the number of elements in " { $snippet "seq" } " is 1 or less, it outputs 0." } -{ $examples +{ $examples { $example "USE: math.statistics" "{ 1 } var ." "0" } { $example "USE: math.statistics" "{ 1 2 3 } var ." "1" } { $example "USE: math.statistics" "{ 1 2 3 4 } var ." "5/3" } } ; From 0d166264c89ff818e1ca42d649c63ab3a40c929a Mon Sep 17 00:00:00 2001 From: Aaron Schaefer Date: Sun, 13 Jan 2008 17:28:54 -0500 Subject: [PATCH 2/9] lint on Project Euler solutions --- extra/project-euler/006/006.factor | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/extra/project-euler/006/006.factor b/extra/project-euler/006/006.factor index 2f09912412..fb4fb954fa 100644 --- a/extra/project-euler/006/006.factor +++ b/extra/project-euler/006/006.factor @@ -24,14 +24,18 @@ IN: project-euler.006 ! SOLUTION ! -------- + : euler006 ( -- answer ) - 1 100 [a,b] dup sum-of-squares swap square-of-sums - abs ; + 1 100 [a,b] dup sum-of-squares swap square-of-sum - abs ; ! [ euler006 ] 100 ave-time ! 0 ms run / 0 ms GC ave time - 100 trials From 12b24af9343719b9c1c1b4c8e2c2c7d40654dbf9 Mon Sep 17 00:00:00 2001 From: Aaron Schaefer Date: Mon, 14 Jan 2008 02:38:23 -0500 Subject: [PATCH 3/9] Simplify totient in math.primes.factors --- extra/math/primes/factors/factors.factor | 30 ++++++++++++------------ 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/extra/math/primes/factors/factors.factor b/extra/math/primes/factors/factors.factor index b841d49f7d..66ec748535 100644 --- a/extra/math/primes/factors/factors.factor +++ b/extra/math/primes/factors/factors.factor @@ -6,36 +6,36 @@ IN: math.primes.factors [ swap uncons >r pick call r> swap (factors) ] [ 3drop ] if ; + dup 1 > [ swap uncons >r pick call r> swap (factors) ] [ 3drop ] if ; : (decompose) ( n quot -- seq ) - [ lprimes rot (factors) ] { } make ; + [ lprimes rot (factors) ] { } make ; PRIVATE> : factors ( n -- seq ) - [ (factor) ] (decompose) ; foldable + [ (factor) ] (decompose) ; foldable : count-factors ( n -- seq ) - [ (count) ] (decompose) ; foldable + [ (count) ] (decompose) ; foldable : unique-factors ( n -- seq ) - [ (unique) ] (decompose) ; foldable + [ (unique) ] (decompose) ; foldable : totient ( n -- t ) - dup 2 < [ - drop 0 - ] [ - [ unique-factors dup 1 [ 1- * ] reduce swap product / ] keep * - ] if ; foldable + dup 2 < [ + drop 0 + ] [ + dup unique-factors dup 1 [ 1- * ] reduce swap product / * + ] if ; foldable From 75774188ea7a1db096bcabf6af19b08b4ca5aa03 Mon Sep 17 00:00:00 2001 From: Aaron Schaefer Date: Mon, 14 Jan 2008 02:43:31 -0500 Subject: [PATCH 4/9] Solution to Project Euler problem 26 --- extra/project-euler/026/026.factor | 71 ++++++++++++++++++++++++ extra/project-euler/project-euler.factor | 4 +- 2 files changed, 73 insertions(+), 2 deletions(-) create mode 100644 extra/project-euler/026/026.factor diff --git a/extra/project-euler/026/026.factor b/extra/project-euler/026/026.factor new file mode 100644 index 0000000000..d79effed02 --- /dev/null +++ b/extra/project-euler/026/026.factor @@ -0,0 +1,71 @@ +! Copyright (c) 2007 Aaron Schaefer. +! See http://factorcode.org/license.txt for BSD license. +USING: kernel math math.functions math.primes math.ranges sequences ; +IN: project-euler.026 + +! http://projecteuler.net/index.php?section=problems&id=26 + +! DESCRIPTION +! ----------- + +! A unit fraction contains 1 in the numerator. The decimal representation of +! the unit fractions with denominators 2 to 10 are given: + +! 1/2 = 0.5 +! 1/3 = 0.(3) +! 1/4 = 0.25 +! 1/5 = 0.2 +! 1/6 = 0.1(6) +! 1/7 = 0.(142857) +! 1/8 = 0.125 +! 1/9 = 0.(1) +! 1/10 = 0.1 + +! Where 0.1(6) means 0.166666..., and has a 1-digit recurring cycle. It can be +! seen that 1/7 has a 6-digit recurring cycle. + +! Find the value of d < 1000 for which 1/d contains the longest recurring cycle +! in its decimal fraction part. + + +! SOLUTION +! -------- + + + +: coprime? ( m n -- ? ) + gcd 1 = nip ; + +: recurring-period? ( a/b -- ? ) + denominator 10 coprime? ; + +! Multiplicative order a.k.a. modulo order +: mult-order ( a n -- k ) + swap 1 (mult-order) ; + +: period-length ( a/b -- n ) + dup recurring-period? [ denominator 10 swap mult-order ] [ drop 0 ] if ; + + + +: euler026 ( -- answer ) + source-026 max-period drop denominator ; + +! [ euler026 ] 100 ave-time +! 724 ms run / 7 ms GC ave time - 100 trials + +MAIN: euler026 diff --git a/extra/project-euler/project-euler.factor b/extra/project-euler/project-euler.factor index 038ae3c5b8..6abb056d28 100644 --- a/extra/project-euler/project-euler.factor +++ b/extra/project-euler/project-euler.factor @@ -8,8 +8,8 @@ USING: definitions io io.files kernel math.parser sequences vocabs project-euler.013 project-euler.014 project-euler.015 project-euler.016 project-euler.017 project-euler.018 project-euler.019 project-euler.020 project-euler.021 project-euler.022 project-euler.023 project-euler.024 - project-euler.025 project-euler.067 project-euler.134 project-euler.169 - project-euler.173 project-euler.175 ; + project-euler.025 project-euler.026 project-euler.067 project-euler.134 + project-euler.169 project-euler.173 project-euler.175 ; IN: project-euler Date: Mon, 14 Jan 2008 05:19:00 -0600 Subject: [PATCH 5/9] Mortar defined and used parsing words. Refactor this. --- extra/factory/factory-menus | 2 +- extra/factory/factory.factor | 2 +- extra/mortar/mortar.factor | 15 +++++++++++---- extra/mortar/sugar/sugar.factor | 6 ++++++ extra/x/gc/gc.factor | 3 ++- extra/x/pen/pen.factor | 2 +- extra/x/widgets/button/button.factor | 4 ++-- extra/x/widgets/keymenu/keymenu.factor | 2 +- extra/x/widgets/label/label.factor | 2 +- extra/x/widgets/wm/frame/drag/move/move.factor | 2 +- extra/x/widgets/wm/frame/drag/size/size.factor | 2 +- extra/x/widgets/wm/frame/frame.factor | 2 +- extra/x/widgets/wm/menu/menu.factor | 2 +- 13 files changed, 30 insertions(+), 16 deletions(-) create mode 100644 extra/mortar/sugar/sugar.factor diff --git a/extra/factory/factory-menus b/extra/factory/factory-menus index dd5dc29378..fa72fa6c9a 100644 --- a/extra/factory/factory-menus +++ b/extra/factory/factory-menus @@ -1,6 +1,6 @@ ! -*-factor-*- -USING: kernel unix vars mortar slot-accessors +USING: kernel unix vars mortar mortar.sugar slot-accessors x.widgets.wm.menu x.widgets.wm.unmapped-frames-menu factory.commands factory.load ; diff --git a/extra/factory/factory.factor b/extra/factory/factory.factor index a5755c2a67..ca534f12c1 100644 --- a/extra/factory/factory.factor +++ b/extra/factory/factory.factor @@ -1,6 +1,6 @@ USING: kernel parser io io.files namespaces sequences editors threads vars - mortar slot-accessors + mortar mortar.sugar slot-accessors x x.widgets.wm.root x.widgets.wm.frame diff --git a/extra/mortar/mortar.factor b/extra/mortar/mortar.factor index c7522e1db6..b7862af7ac 100644 --- a/extra/mortar/mortar.factor +++ b/extra/mortar/mortar.factor @@ -128,7 +128,7 @@ over object-class class-methods 1 head* assoc-stack call ; ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -: new* ( class -- object ) <<- create ; +! : new* ( class -- object ) <<- create ; ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! @@ -136,13 +136,20 @@ IN: slot-accessors IN: mortar +! : generate-slot-getter ( name -- ) +! "$" over append "slot-accessors" create swap [ slot-value ] curry +! define-compound ; + : generate-slot-getter ( name -- ) -"$" over append "slot-accessors" create swap [ slot-value ] curry -define-compound ; +"$" over append "slot-accessors" create swap [ slot-value ] curry define ; + +! : generate-slot-setter ( name -- ) +! ">>" over append "slot-accessors" create swap [ swap set-slot-value ] curry +! define-compound ; : generate-slot-setter ( name -- ) ">>" over append "slot-accessors" create swap [ swap set-slot-value ] curry -define-compound ; +define ; : generate-slot-accessors ( name -- ) dup diff --git a/extra/mortar/sugar/sugar.factor b/extra/mortar/sugar/sugar.factor new file mode 100644 index 0000000000..04d2f6f651 --- /dev/null +++ b/extra/mortar/sugar/sugar.factor @@ -0,0 +1,6 @@ + +USING: mortar ; + +IN: mortar.sugar + +: new* ( class -- object ) <<- create ; \ No newline at end of file diff --git a/extra/x/gc/gc.factor b/extra/x/gc/gc.factor index 77e5313d00..8db610a1ac 100644 --- a/extra/x/gc/gc.factor +++ b/extra/x/gc/gc.factor @@ -1,5 +1,6 @@ -USING: kernel namespaces arrays x11.xlib mortar slot-accessors x x.font ; +USING: kernel namespaces arrays x11.xlib mortar mortar.sugar + slot-accessors x x.font ; IN: x.gc diff --git a/extra/x/pen/pen.factor b/extra/x/pen/pen.factor index c4fc6cfa9f..59b8aeea44 100644 --- a/extra/x/pen/pen.factor +++ b/extra/x/pen/pen.factor @@ -1,5 +1,5 @@ -USING: kernel arrays math.vectors mortar x.gc slot-accessors geom.pos ; +USING: kernel arrays math.vectors mortar mortar.sugar x.gc slot-accessors geom.pos ; IN: x.pen diff --git a/extra/x/widgets/button/button.factor b/extra/x/widgets/button/button.factor index b26431c4c2..ea46b62a69 100644 --- a/extra/x/widgets/button/button.factor +++ b/extra/x/widgets/button/button.factor @@ -1,6 +1,6 @@ USING: kernel combinators math x11.xlib - mortar slot-accessors x.gc x.widgets.label ; + mortar mortar.sugar slot-accessors x.gc x.widgets.label ; IN: x.widgets.button @@ -11,7 +11,7 @@ SYMBOL: