diff --git a/doc/Getting-Started.org b/doc/Getting-Started.org index 6173c63b..22756430 100644 --- a/doc/Getting-Started.org +++ b/doc/Getting-Started.org @@ -17,7 +17,7 @@ java -jar conexp-clj-2.1.1-SNAPSHOT-standalone.jar This will get you a prompt for ~conexp-clj~ much like #+begin_src text -conexp.main=> +conexp.analysis=> #+end_src You can now use all the power of formal concept analysis from ~conexp-clj~, and @@ -25,7 +25,7 @@ also everything Clojure provides. For example, you can compute the value of the expression ~1 + 1~ as #+begin_src text -conexp.main=> (+ 1 1) +conexp.analysis=> (+ 1 1) 2 #+end_src diff --git a/project.clj b/project.clj index 389b7877..20aec3f4 100644 --- a/project.clj +++ b/project.clj @@ -64,4 +64,6 @@ :resource-paths ["src/main/resources"] :target-path "builds/%s" :compile-path "%s/classes/" - :java-opts ["-Dawt.useSystemAAFontSettings=lcd_hbgr" "-Xmx4G"]) + :java-opts ["-Dawt.useSystemAAFontSettings=on" "-Xmx4G"] + :repl-options {:init-ns conexp.analysis + :init (use 'conexp.analysis :reload)}) diff --git a/src/main/clojure/conexp/analysis.clj b/src/main/clojure/conexp/analysis.clj new file mode 100644 index 00000000..6489cd05 --- /dev/null +++ b/src/main/clojure/conexp/analysis.clj @@ -0,0 +1,64 @@ +(ns conexp.analysis + "Dafault Namespace." + (:require + [conexp.main :refer :all] + [conexp.base :refer :all] + [conexp.layouts :refer :all] + [conexp.gui :refer :all] + [conexp.api :refer :all] + [conexp.fca + [causal-implications :refer :all] + [contexts :refer :all] + [cover :refer :all] + [dependencies :refer :all] + [exploration :refer :all] + [graph :refer :all] + [implications :refer :all] + [incremental-ganter :refer :all] + [lattices :refer :all] + [many-valued-contexts :refer :all] + [metrics :refer :all] + [more :refer :all] + [posets :refer :all] + [pqcores :refer :all] + [protoconcepts :refer :all] + [random-contexts :refer :all] + [triadic-exploration :refer :all]] + [conexp.math + [algebra :refer :all] + [markov :refer :all] + [numbers :refer :all] + [optimize :refer :all] + [sampling :refer :all] + [statistics :refer :all] + [util :refer :all]] + [conexp.layouts + [base :refer :all] + [common :refer :all] + [dim-draw :refer :all] + ;[force :refer :all] + [freese :refer :all] + [layered :refer :all] + [util :refer :all]] + [conexp.io + [base :refer :all] + [contexts :refer :all] + [fcas :refer :all] + [implications :refer :all] + [incomplete-contexts :refer :all] + [json :refer :all] + [latex :refer :all] + [lattices :refer :all] + [layouts :refer :all] + [many-valued-contexts :refer :all] + [util :refer :all]] + [conexp.gui + [base :refer :all] + [draw :refer :all] + [plugins :refer :all] + [repl :refer :all] + [repl-utils :refer :all]] + [clojure.set :as set] + [clojure.edn :as edn] + [clojure.java.io :as io])) +