-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
initial building blocks for Rope data structure
- Loading branch information
Showing
11 changed files
with
395 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,5 @@ pom.xml.asc | |
.idea | ||
benchmarks/data/ | ||
.DS_Store | ||
gen-javadoc.sh | ||
gen-javadoc.sh | ||
javadoc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,45 @@ | ||
(defproject io.lacuna/bifurcan "0.1.0-alpha1" | ||
:java-source-paths ["src"] | ||
:dependencies [] | ||
:test-selectors {:default #(not | ||
(some #{:benchmark :stress} | ||
(cons (:tag %) (keys %)))) | ||
:test-selectors {:default #(not | ||
(some #{:benchmark :stress} | ||
(cons (:tag %) (keys %)))) | ||
:benchmark :benchmark | ||
:stress :stress | ||
:all (constantly true)} | ||
:stress :stress | ||
:all (constantly true)} | ||
:profiles {:travis {:jvm-opts ^:replace ["-server" "-Xmx1g"]} | ||
:bench {:jvm-opts ^:replace ["-server" "-Xmx10g" "-XX:+UseParallelGC"]} | ||
:dev {:dependencies [[org.clojure/clojure "1.8.0"] | ||
[org.clojure/test.check "0.9.0"] | ||
[criterium "0.4.3"] | ||
[potemkin "0.4.3"] | ||
[proteus "0.1.6"] | ||
[byte-streams "0.2.2"] | ||
[eftest "0.1.4"]]}} | ||
:aliases {"partest" ["run" "-m" "bifurcan.run-tests"] | ||
:bench {:jvm-opts ^:replace ["-server" "-Xmx10g" "-XX:+UseParallelGC"]} | ||
:dev {:dependencies [[org.clojure/clojure "1.8.0"] | ||
[org.clojure/test.check "0.9.0"] | ||
[criterium "0.4.3"] | ||
[potemkin "0.4.3"] | ||
[proteus "0.1.6"] | ||
[byte-streams "0.2.2"] | ||
[eftest "0.1.4"] | ||
[virgil "0.1.7-alpha1"]]}} | ||
:aliases {"partest" ["run" "-m" "bifurcan.run-tests"] | ||
"benchmark" ["with-profile" "bench,dev" "run" "-m" "bifurcan.benchmark-test" "benchmark"]} | ||
:jvm-opts ^:replace ["-server" "-XX:+UseG1GC" "-Xmx10g" "-XX:-OmitStackTraceInFastThrow"]) | ||
:jvm-opts ^:replace ["-server" "-XX:+UseG1GC" "-Xmx10g" "-XX:-OmitStackTraceInFastThrow"] | ||
|
||
;; deployment | ||
:url "https://github.com/lacuna/bifurcan" | ||
:description "impure functional data structures" | ||
:license {:name "MIT License"} | ||
:javac-options ["-target" "1.8" "-source" "1.8"] | ||
:deploy-repositories {"releases" {:url "https://oss.sonatype.org/service/local/staging/deploy/maven2/" | ||
:creds :gpg} | ||
"snapshots" {:url "https://oss.sonatype.org/content/repositories/snapshots/" | ||
:creds :gpg}} | ||
|
||
;; Maven properties for the Maven God | ||
:scm {:url "[email protected]:lacuna/bifurcan.git"} | ||
:pom-addition [:developers [:developer | ||
[:name "Zach Tellman"] | ||
[:url "http://ideolalia.com"] | ||
[:email "[email protected]"] | ||
[:timezone "-8"]]] | ||
:classifiers {:javadoc {:java-source-paths ^:replace [] | ||
:source-paths ^:replace [] | ||
:resource-paths ^:replace ["javadoc"]} | ||
:sources {:java-source-paths ^:replace ["src"] | ||
:resource-paths ^:replace []}}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package io.lacuna.bifurcan.nodes; | ||
|
||
|
||
/** | ||
* @author ztellman | ||
*/ | ||
public class RopeNodes { | ||
|
||
|
||
|
||
} |
Oops, something went wrong.