diff options
author | Mike Hinchey <hincheymg@gmail.com> | 2009-10-28 23:24:16 -0700 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2009-10-29 12:28:20 -0400 |
commit | 09d39aca5a69a83f4326ffb0d4ba8f9fc15c9861 (patch) | |
tree | ac9a91b1d4dfa4080f8b30c9784e28f1c70e2e81 /src/clojure/contrib/probabilities | |
parent | 8eef617aac7b077421d4aa9c84a2df189af6ee17 (diff) |
works with clojure branch new by excluding deftype
Signed-off-by: Rich Hickey <richhickey@gmail.com>
Diffstat (limited to 'src/clojure/contrib/probabilities')
-rw-r--r-- | src/clojure/contrib/probabilities/monte_carlo.clj | 1 | ||||
-rw-r--r-- | src/clojure/contrib/probabilities/random_numbers.clj | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/clojure/contrib/probabilities/monte_carlo.clj b/src/clojure/contrib/probabilities/monte_carlo.clj index 6e140a48..e3bc0f7e 100644 --- a/src/clojure/contrib/probabilities/monte_carlo.clj +++ b/src/clojure/contrib/probabilities/monte_carlo.clj @@ -31,6 +31,7 @@ stream. Such functions are state monad values and can be composed using operations defined in clojure.contrib.monads."} clojure.contrib.probabilities.monte-carlo + (:refer-clojure :exclude (deftype)) (:use [clojure.contrib.macros :only (const)]) (:use [clojure.contrib.types :only (deftype)]) (:use [clojure.contrib.stream-utils :only (defstream stream-next)]) diff --git a/src/clojure/contrib/probabilities/random_numbers.clj b/src/clojure/contrib/probabilities/random_numbers.clj index bf6372f0..bc21769b 100644 --- a/src/clojure/contrib/probabilities/random_numbers.clj +++ b/src/clojure/contrib/probabilities/random_numbers.clj @@ -24,6 +24,7 @@ At the moment, the only generator provided is a rather simple linear congruential generator."} clojure.contrib.probabilities.random-numbers + (:refer-clojure :exclude (deftype)) (:use [clojure.contrib.types :only (deftype)]) (:use [clojure.contrib.stream-utils :only (defstream)]) (:use [clojure.contrib.def :only (defvar)])) |