Skip to content

Commit

Permalink
TVM 1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
paschalis-mpeis committed Feb 7, 2017
0 parents commit 5639635
Show file tree
Hide file tree
Showing 160 changed files with 29,573 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@

# Created by https://www.gitignore.io/api/osx

### OSX ###
*.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon


# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

# End of https://www.gitignore.io/api/osx
674 changes: 674 additions & 0 deletions COPYING

Large diffs are not rendered by default.

30 changes: 30 additions & 0 deletions CREDITS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Credits:
* Paschalis Mpeis [paschalis.mp](http://paschalis.mp/)
- Implemented TVM Server and Client.
* Giannis Evagorou [doc.ic.ac.uk/~ge14](https://www.doc.ic.ac.uk/~ge14/)
- Contributed in experimental evaluation.
* Andreas Konstantinidis [cs.ucy.ac.cy/~akonstan](http://www.cs.ucy.ac.cy/~akonstan/)
- Project supervision.
* Demetris Zeinalipour [cs.ucy.ac.cy/~dzeina](https://www.cs.ucy.ac.cy/~dzeina/)
- Project supervision and co-ordination.

# Source code contributions:
* [Julia Metochi](http://www.cs.ucy.ac.cy/~jmetoc01/)
- Authored [Client: Heading.java](./Client/app/src/main/java/cy/ac/ucy/cs/tvm/tvm/Heading.java)

## Open Source libraries:

### Murmur2 Java implementation:
* Originally ported to Java by Andrzej Bialecki (ab at getopt org).
* License: Apache License, Version 2.0
* Files:
- [Client: Murmur2.java](./Client/app/src/main/java/cy/ac/ucy/cs/tvm/Bloomfilter/Murmur2.java)
- [Server: Murmur2.java](./Server/src/java/cy/ac/ucy/dmsl/vectormap/paschalis/bloom/Murmur2.java)
* URL: [Apache Mahoot](https://github.com/apache/mahout)

### JenkinsHash
* Written by Bob Jenkins, 1996
* Ported to Java by [Gray Watson](http://256.com/gray/)
* Files:
- [Client: JenkinsHash.java](./Client/app/src/main/java/cy/ac/ucy/cs/tvm/Bloomfilter/JenkinsHash.java)
- [Server: JenkinsHash.java](./Server/src/java/cy/ac/ucy/dmsl/vectormap/paschalis/bloom/JenkinsHash.java)
9 changes: 9 additions & 0 deletions Client/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
*.iml
.gradle
/local.properties
/.idea/workspace.xml
/.idea/libraries
.DS_Store
/build
/captures
.externalNativeBuild
231 changes: 231 additions & 0 deletions Client/.idea/codeStyleSettings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions Client/.idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions Client/.idea/copyright/TVM.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Client/.idea/copyright/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions Client/.idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions Client/.idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Client/.idea/markdown-navigator/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 5639635

Please sign in to comment.