Startup time of standalone .jar executable

2017-03-21 Thread Michael Lindon
I wrote a collaborator some clojure code which I distributed to them as a standalone jar file which they are executing with java -jar mystandalone.jar The problem is that this executable is called a great many times in their application and every time the executable is called there is a java/

Re: A more mathematical kind of set object in clojure

2017-01-29 Thread Michael Lindon
Not quite what I'm looking for. There is an assigment in the Functional Programming in Scala coursera course called "funsets" - purely functional sets. A set is defined by its characteristic functions (a predicate) and source code can be found here https://mwclearning.com/sourcecode/scala/funs

A more mathematical kind of set object in clojure

2017-01-27 Thread Michael Lindon
Hi All, First time poster in this google group. I'm looking for a slightly different kind of* set* than the set collection offered in clojure.core. Whilst the latter is great for finite sets, I'm looking for a package that implements uncountable sets i.e. the set of real numbers less than 44. Th