comparison org/types.org @ 15:da4c47650d38

minor edits to types.org
author Robert McIntyre <rlm@mit.edu>
date Sun, 05 Feb 2012 11:24:40 -0700
parents e1b7ef479bd1
children 7698e9bdff2b
comparison
equal deleted inserted replaced
14:ecb6e3f9b7d6 15:da4c47650d38
310 types. For example, the total possible number of type combinations 310 types. For example, the total possible number of type combinations
311 given just 8 possible types is: 17^{8} = 6,975,757,441 combinations. 311 given just 8 possible types is: 17^{8} = 6,975,757,441 combinations.
312 Therefore, it's prudent to use search. 312 Therefore, it's prudent to use search.
313 313
314 These functions are a simple implementation of best-first search in 314 These functions are a simple implementation of best-first search in
315 clojure. The idea to start off with a collection of nodes and some way 315 clojure. The idea is to start off with a collection of nodes and some
316 of finding the best node, and to always expand the best node at every 316 way of finding the best node, and to always expand the best node at
317 step. 317 every step.
318 318
319 #+srcname: search 319 #+srcname: search
320 #+begin_src clojure :results silent 320 #+begin_src clojure :results silent
321 (in-ns 'pokemon.types) 321 (in-ns 'pokemon.types)
322 322