summaryrefslogtreecommitdiffstats
path: root/final_project/work/disovery-mech-play.scm
diff options
context:
space:
mode:
authorbnewbold <bnewbold@eta.mit.edu>2009-05-08 07:38:15 -0400
committerbnewbold <bnewbold@eta.mit.edu>2009-05-08 07:38:15 -0400
commitc02dece30f877532eb9b7883730edbc9f1cdd362 (patch)
treefe02619641a4c8eee24af1614e6596a292d54d24 /final_project/work/disovery-mech-play.scm
parentef5c9707e8abda96324f70d2e767f5c330854f32 (diff)
download6.945-c02dece30f877532eb9b7883730edbc9f1cdd362.tar.gz
6.945-c02dece30f877532eb9b7883730edbc9f1cdd362.zip
split out examples
Diffstat (limited to 'final_project/work/disovery-mech-play.scm')
-rw-r--r--final_project/work/disovery-mech-play.scm24
1 files changed, 0 insertions, 24 deletions
diff --git a/final_project/work/disovery-mech-play.scm b/final_project/work/disovery-mech-play.scm
deleted file mode 100644
index c2d5013..0000000
--- a/final_project/work/disovery-mech-play.scm
+++ /dev/null
@@ -1,24 +0,0 @@
-
-(load "discovery")
-;Loading "discovery.scm"... done
-;Value: discover:named-opers
-
-(discover:named-opers)
-;Value: (+ one-like cos dot-product expt one? * gcd partial-derivative acos exp atan2 cosh imag-part one = conjugate zero? / zero-like abs sinh identity? sin asin derivative angle magnitude inexact? type apply identity make-polar arity real-part - invert negate identity-like trace determinant sqrt zero log square make-rectangular type-predicate atan1)
-
-(discover:named-opers-for 1)
-;Value: (one-like cos one? acos exp cosh imag-part conjugate zero? zero-like abs sinh identity? sin asin angle magnitude inexact? type arity real-part invert negate identity-like trace determinant sqrt log square type-predicate atan1)
-
-(discover:named-opers-for (matrix-by-rows '(1 0 0)
- '(0 1 0)
- '(0 0 1)))
-;Value: (one-like cos exp conjugate zero? zero-like identity? sin inexact? type arity invert negate identity-like trace determinant type-predicate)
-
-(discover:named-opers-for 1 2)
-;Value: (+ dot-product expt * gcd atan2 = / apply make-polar - make-rectangular)
-
-(discover:named-opers-for 'a)
-;Value: (one-like cos acos exp cosh imag-part conjugate zero-like sinh sin asin angle magnitude inexact? type arity real-part invert negate identity-like sqrt log type-predicate atan1)
-
-(discover:named-opers-for (compose sin cos))
-;Value: (one-like cos acos exp cosh imag-part zero-like abs sinh sin asin angle magnitude inexact? type arity real-part invert negate identity-like sqrt log square type-predicate atan1)