| 
									
										
										
										
											2009-02-24 00:28:02 -05:00
										 |  |  | ! Copyright (C) 2007, 2009 Slava Pestov, Daniel Ehrenberg. | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | ! See http://factorcode.org/license.txt for BSD license. | 
					
						
							| 
									
										
										
										
											2009-10-08 13:55:52 -04:00
										 |  |  | USING: kernel hashtables sequences sequences.private arrays | 
					
						
							|  |  |  | words namespaces make parser math assocs effects definitions | 
					
						
							|  |  |  | quotations summary accessors fry ;
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | IN: memoize | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-08 13:24:07 -04:00
										 |  |  | <PRIVATE
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-08 13:24:07 -04:00
										 |  |  | ! We can't use n*quot, narray and firstn from generalizations because | 
					
						
							|  |  |  | ! they're macros, and macros use memoize! | 
					
						
							|  |  |  | : (n*quot) ( n quot -- quotquot )
 | 
					
						
							|  |  |  |     <repetition> concat >quotation ;
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-08 13:55:52 -04:00
										 |  |  | : [nsequence] ( length exemplar -- quot )
 | 
					
						
							|  |  |  |     [ [ [ 1 - ] keep ] dip '[ _ _ _ new-sequence ] ] | 
					
						
							|  |  |  |     [ drop [ [ set-nth-unsafe ] 2keep [ 1 - ] dip ] (n*quot) ] 2bi
 | 
					
						
							| 
									
										
										
										
											2009-10-08 13:24:07 -04:00
										 |  |  |     [ nip ] 3append ;  | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : [firstn] ( length -- quot )
 | 
					
						
							|  |  |  |     [ 0 swap ] swap
 | 
					
						
							| 
									
										
										
										
											2009-10-08 13:55:52 -04:00
										 |  |  |     [ [ nth-unsafe ] 2keep [ 1 + ] dip ] (n*quot) | 
					
						
							| 
									
										
										
										
											2009-10-08 13:24:07 -04:00
										 |  |  |     [ 2drop ] 3append ;
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 00:28:02 -05:00
										 |  |  | : packer ( seq -- quot )
 | 
					
						
							| 
									
										
										
										
											2009-10-08 13:24:07 -04:00
										 |  |  |     length dup 4 <=
 | 
					
						
							|  |  |  |     [ { [ f ] [ ] [ 2array ] [ 3array ] [ 4array ] } nth ] | 
					
						
							| 
									
										
										
										
											2009-10-08 13:55:52 -04:00
										 |  |  |     [ { } [nsequence] ] if ;
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 00:28:02 -05:00
										 |  |  | : unpacker ( seq -- quot )
 | 
					
						
							| 
									
										
										
										
											2009-10-08 13:24:07 -04:00
										 |  |  |     length dup 4 <=
 | 
					
						
							|  |  |  |     [ { [ drop ] [ ] [ first2 ] [ first3 ] [ first4 ] } nth ] | 
					
						
							|  |  |  |     [ [firstn] ] if ;
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 00:28:02 -05:00
										 |  |  | : pack/unpack ( quot effect -- newquot )
 | 
					
						
							|  |  |  |     [ in>> packer ] [ out>> unpacker ] bi surround ;
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 00:28:02 -05:00
										 |  |  | : unpack/pack ( quot effect -- newquot )
 | 
					
						
							|  |  |  |     [ in>> unpacker ] [ out>> packer ] bi surround ;
 | 
					
						
							| 
									
										
										
										
											2008-08-29 03:14:14 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 00:28:02 -05:00
										 |  |  | : make-memoizer ( table quot effect -- quot )
 | 
					
						
							|  |  |  |     [ unpack/pack '[ _ _ cache ] ] keep
 | 
					
						
							|  |  |  |     pack/unpack ;
 | 
					
						
							| 
									
										
										
										
											2008-08-29 03:14:14 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-24 00:28:02 -05:00
										 |  |  | PRIVATE>
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-21 04:17:35 -04:00
										 |  |  | : define-memoized ( word quot effect -- )
 | 
					
						
							|  |  |  |     [ drop "memo-quot" set-word-prop ] | 
					
						
							|  |  |  |     [ 2drop H{ } clone "memoize" set-word-prop ] | 
					
						
							|  |  |  |     [ [ [ dup "memoize" word-prop ] 2dip make-memoizer ] keep define-declared ] | 
					
						
							| 
									
										
										
										
											2009-02-24 00:28:02 -05:00
										 |  |  |     3tri ;
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-21 02:27:50 -04:00
										 |  |  | SYNTAX: MEMO: (:) define-memoized ;
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-26 19:23:19 -04:00
										 |  |  | PREDICATE: memoized < word "memoize" word-prop ;
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | M: memoized definer drop \ MEMO: \ ; ;
 | 
					
						
							| 
									
										
										
										
											2008-05-28 19:17:58 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | M: memoized definition "memo-quot" word-prop ;
 | 
					
						
							| 
									
										
										
										
											2007-12-31 00:44:40 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-28 19:17:58 -04:00
										 |  |  | M: memoized reset-word | 
					
						
							|  |  |  |     [ call-next-method ] | 
					
						
							| 
									
										
										
										
											2008-06-30 04:57:00 -04:00
										 |  |  |     [ { "memoize" "memo-quot" } reset-props ] | 
					
						
							| 
									
										
										
										
											2008-05-28 19:17:58 -04:00
										 |  |  |     bi ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-31 00:44:40 -05:00
										 |  |  | : memoize-quot ( quot effect -- memo-quot )
 | 
					
						
							| 
									
										
										
										
											2009-02-24 00:28:02 -05:00
										 |  |  |     [ H{ } clone ] 2dip make-memoizer ;
 | 
					
						
							| 
									
										
										
										
											2008-02-05 19:52:16 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | : reset-memoized ( word -- )
 | 
					
						
							|  |  |  |     "memoize" word-prop clear-assoc ;
 | 
					
						
							| 
									
										
										
										
											2008-05-25 15:00:55 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-08 16:32:55 -04:00
										 |  |  | : invalidate-memoized ( inputs... word -- )
 | 
					
						
							| 
									
										
										
										
											2009-02-24 00:28:02 -05:00
										 |  |  |     [ stack-effect in>> packer call ] [ "memoize" word-prop delete-at ] bi ;
 | 
					
						
							| 
									
										
										
										
											2009-04-12 17:08:46 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-08 13:24:07 -04:00
										 |  |  | \ invalidate-memoized t "no-compile" set-word-prop |