├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bin └── .gitignore ├── collections ├── Collection.chpl ├── DistributedBag.chpl ├── DistributedDeque.chpl └── SynchronizedList.chpl ├── docs ├── .buildinfo ├── .nojekyll ├── _config.yml ├── _sources │ ├── index.txt │ └── modules │ │ ├── Collection.txt │ │ ├── Collection │ │ ├── List.txt │ │ └── Queue.txt │ │ ├── DistributedBalancedList.txt │ │ ├── DistributedBoundedQueue.txt │ │ ├── DistributedQueue.txt │ │ ├── Frozen.txt │ │ ├── collections │ │ ├── Collection.txt │ │ ├── Collection │ │ │ ├── List.txt │ │ │ ├── Queue.txt │ │ │ └── Stack.txt │ │ ├── DistributedBag.txt │ │ ├── DistributedBalancedList.txt │ │ ├── DistributedBoundedQueue.txt │ │ ├── DistributedDeque.txt │ │ ├── DistributedList.txt │ │ ├── DistributedQueue.txt │ │ ├── SynchronizedList.txt │ │ └── SynchronizedQueue.txt │ │ ├── list │ │ ├── DistributedBalancedList.txt │ │ ├── OrderedList.txt │ │ └── UnorderedList.txt │ │ ├── queue │ │ ├── BoundedQueue.txt │ │ ├── DistributedBoundedQueue.txt │ │ ├── DistributedQueue.txt │ │ └── Queue.txt │ │ └── queues │ │ └── Queue.txt ├── _static │ ├── ajax-loader.gif │ ├── basic.css │ ├── comment-bright.png │ ├── comment-close.png │ ├── comment.png │ ├── css │ │ ├── badge_only.css │ │ └── theme.css │ ├── doctools.js │ ├── down-pressed.png │ ├── down.png │ ├── empty │ ├── file.png │ ├── fonts │ │ ├── Inconsolata-Bold.ttf │ │ ├── Inconsolata-Regular.ttf │ │ ├── Lato-Bold.ttf │ │ ├── Lato-Regular.ttf │ │ ├── RobotoSlab-Bold.ttf │ │ ├── RobotoSlab-Regular.ttf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── jquery-1.11.1.js │ ├── jquery.js │ ├── js │ │ ├── modernizr.min.js │ │ └── theme.js │ ├── minus.png │ ├── plus.png │ ├── pygments.css │ ├── searchtools.js │ ├── underscore-1.3.1.js │ ├── underscore.js │ ├── up-pressed.png │ ├── up.png │ └── websupport.js ├── chpl-modindex.html ├── genindex.html ├── index.html ├── modules │ └── collections │ │ ├── Collection.html │ │ ├── DistributedBag.html │ │ └── DistributedDeque.html ├── objects.inv ├── search.html └── searchindex.js ├── results ├── Collections_Add.png └── Collections_Remove.png └── testing ├── Benchmark.chpl ├── Plot.chpl ├── README.md ├── collections ├── AddBenchmark.chpl └── RemoveBenchmark.chpl ├── misc └── BlockDistBenchmark.chpl └── unit ├── CollectionBulk.chpl ├── CollectionBulk.compopts ├── CollectionBulk.good ├── CollectionCounter.chpl ├── CollectionCounter.compopts ├── CollectionCounter.good ├── CollectionNQueens.chpl ├── CollectionNQueens.compopts ├── CollectionNQueens.good ├── DequeOrdering.chpl ├── DequeOrdering.compopts ├── DequeOrdering.good ├── DequeParity.chpl ├── DequeParity.compopts ├── DequeParity.good ├── EXECOPTS └── NUMLOCALES /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/README.md -------------------------------------------------------------------------------- /bin/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | * 3 | -------------------------------------------------------------------------------- /collections/Collection.chpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/collections/Collection.chpl -------------------------------------------------------------------------------- /collections/DistributedBag.chpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/collections/DistributedBag.chpl -------------------------------------------------------------------------------- /collections/DistributedDeque.chpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/collections/DistributedDeque.chpl -------------------------------------------------------------------------------- /collections/SynchronizedList.chpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/collections/SynchronizedList.chpl -------------------------------------------------------------------------------- /docs/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/.buildinfo -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_sources/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_sources/index.txt -------------------------------------------------------------------------------- /docs/_sources/modules/Collection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_sources/modules/Collection.txt -------------------------------------------------------------------------------- /docs/_sources/modules/Collection/List.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_sources/modules/Collection/List.txt -------------------------------------------------------------------------------- /docs/_sources/modules/Collection/Queue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_sources/modules/Collection/Queue.txt -------------------------------------------------------------------------------- /docs/_sources/modules/DistributedBalancedList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_sources/modules/DistributedBalancedList.txt -------------------------------------------------------------------------------- /docs/_sources/modules/DistributedBoundedQueue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_sources/modules/DistributedBoundedQueue.txt -------------------------------------------------------------------------------- /docs/_sources/modules/DistributedQueue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_sources/modules/DistributedQueue.txt -------------------------------------------------------------------------------- /docs/_sources/modules/Frozen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_sources/modules/Frozen.txt -------------------------------------------------------------------------------- /docs/_sources/modules/collections/Collection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_sources/modules/collections/Collection.txt -------------------------------------------------------------------------------- /docs/_sources/modules/collections/Collection/List.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_sources/modules/collections/Collection/List.txt -------------------------------------------------------------------------------- /docs/_sources/modules/collections/Collection/Queue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_sources/modules/collections/Collection/Queue.txt -------------------------------------------------------------------------------- /docs/_sources/modules/collections/Collection/Stack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_sources/modules/collections/Collection/Stack.txt -------------------------------------------------------------------------------- /docs/_sources/modules/collections/DistributedBag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_sources/modules/collections/DistributedBag.txt -------------------------------------------------------------------------------- /docs/_sources/modules/collections/DistributedBalancedList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_sources/modules/collections/DistributedBalancedList.txt -------------------------------------------------------------------------------- /docs/_sources/modules/collections/DistributedBoundedQueue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_sources/modules/collections/DistributedBoundedQueue.txt -------------------------------------------------------------------------------- /docs/_sources/modules/collections/DistributedDeque.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_sources/modules/collections/DistributedDeque.txt -------------------------------------------------------------------------------- /docs/_sources/modules/collections/DistributedList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_sources/modules/collections/DistributedList.txt -------------------------------------------------------------------------------- /docs/_sources/modules/collections/DistributedQueue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_sources/modules/collections/DistributedQueue.txt -------------------------------------------------------------------------------- /docs/_sources/modules/collections/SynchronizedList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_sources/modules/collections/SynchronizedList.txt -------------------------------------------------------------------------------- /docs/_sources/modules/collections/SynchronizedQueue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_sources/modules/collections/SynchronizedQueue.txt -------------------------------------------------------------------------------- /docs/_sources/modules/list/DistributedBalancedList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_sources/modules/list/DistributedBalancedList.txt -------------------------------------------------------------------------------- /docs/_sources/modules/list/OrderedList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_sources/modules/list/OrderedList.txt -------------------------------------------------------------------------------- /docs/_sources/modules/list/UnorderedList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_sources/modules/list/UnorderedList.txt -------------------------------------------------------------------------------- /docs/_sources/modules/queue/BoundedQueue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_sources/modules/queue/BoundedQueue.txt -------------------------------------------------------------------------------- /docs/_sources/modules/queue/DistributedBoundedQueue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_sources/modules/queue/DistributedBoundedQueue.txt -------------------------------------------------------------------------------- /docs/_sources/modules/queue/DistributedQueue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_sources/modules/queue/DistributedQueue.txt -------------------------------------------------------------------------------- /docs/_sources/modules/queue/Queue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_sources/modules/queue/Queue.txt -------------------------------------------------------------------------------- /docs/_sources/modules/queues/Queue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_sources/modules/queues/Queue.txt -------------------------------------------------------------------------------- /docs/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/ajax-loader.gif -------------------------------------------------------------------------------- /docs/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/basic.css -------------------------------------------------------------------------------- /docs/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/comment-bright.png -------------------------------------------------------------------------------- /docs/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/comment-close.png -------------------------------------------------------------------------------- /docs/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/comment.png -------------------------------------------------------------------------------- /docs/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/css/badge_only.css -------------------------------------------------------------------------------- /docs/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/css/theme.css -------------------------------------------------------------------------------- /docs/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/doctools.js -------------------------------------------------------------------------------- /docs/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/down-pressed.png -------------------------------------------------------------------------------- /docs/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/down.png -------------------------------------------------------------------------------- /docs/_static/empty: -------------------------------------------------------------------------------- 1 | This directory is empty. 2 | -------------------------------------------------------------------------------- /docs/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/file.png -------------------------------------------------------------------------------- /docs/_static/fonts/Inconsolata-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/fonts/Inconsolata-Bold.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Inconsolata-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/fonts/Inconsolata-Regular.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/fonts/RobotoSlab-Bold.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/fonts/RobotoSlab-Regular.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/_static/jquery-1.11.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/jquery-1.11.1.js -------------------------------------------------------------------------------- /docs/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/jquery.js -------------------------------------------------------------------------------- /docs/_static/js/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/js/modernizr.min.js -------------------------------------------------------------------------------- /docs/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/js/theme.js -------------------------------------------------------------------------------- /docs/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/minus.png -------------------------------------------------------------------------------- /docs/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/plus.png -------------------------------------------------------------------------------- /docs/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/pygments.css -------------------------------------------------------------------------------- /docs/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/searchtools.js -------------------------------------------------------------------------------- /docs/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/underscore.js -------------------------------------------------------------------------------- /docs/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/up-pressed.png -------------------------------------------------------------------------------- /docs/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/up.png -------------------------------------------------------------------------------- /docs/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/_static/websupport.js -------------------------------------------------------------------------------- /docs/chpl-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/chpl-modindex.html -------------------------------------------------------------------------------- /docs/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/genindex.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/modules/collections/Collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/modules/collections/Collection.html -------------------------------------------------------------------------------- /docs/modules/collections/DistributedBag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/modules/collections/DistributedBag.html -------------------------------------------------------------------------------- /docs/modules/collections/DistributedDeque.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/modules/collections/DistributedDeque.html -------------------------------------------------------------------------------- /docs/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/objects.inv -------------------------------------------------------------------------------- /docs/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/search.html -------------------------------------------------------------------------------- /docs/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/docs/searchindex.js -------------------------------------------------------------------------------- /results/Collections_Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/results/Collections_Add.png -------------------------------------------------------------------------------- /results/Collections_Remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/results/Collections_Remove.png -------------------------------------------------------------------------------- /testing/Benchmark.chpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/testing/Benchmark.chpl -------------------------------------------------------------------------------- /testing/Plot.chpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/testing/Plot.chpl -------------------------------------------------------------------------------- /testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/testing/README.md -------------------------------------------------------------------------------- /testing/collections/AddBenchmark.chpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/testing/collections/AddBenchmark.chpl -------------------------------------------------------------------------------- /testing/collections/RemoveBenchmark.chpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/testing/collections/RemoveBenchmark.chpl -------------------------------------------------------------------------------- /testing/misc/BlockDistBenchmark.chpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/testing/misc/BlockDistBenchmark.chpl -------------------------------------------------------------------------------- /testing/unit/CollectionBulk.chpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/testing/unit/CollectionBulk.chpl -------------------------------------------------------------------------------- /testing/unit/CollectionBulk.compopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/testing/unit/CollectionBulk.compopts -------------------------------------------------------------------------------- /testing/unit/CollectionBulk.good: -------------------------------------------------------------------------------- 1 | SUCCESS 2 | -------------------------------------------------------------------------------- /testing/unit/CollectionCounter.chpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/testing/unit/CollectionCounter.chpl -------------------------------------------------------------------------------- /testing/unit/CollectionCounter.compopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/testing/unit/CollectionCounter.compopts -------------------------------------------------------------------------------- /testing/unit/CollectionCounter.good: -------------------------------------------------------------------------------- 1 | SUCCESS 2 | -------------------------------------------------------------------------------- /testing/unit/CollectionNQueens.chpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/testing/unit/CollectionNQueens.chpl -------------------------------------------------------------------------------- /testing/unit/CollectionNQueens.compopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/testing/unit/CollectionNQueens.compopts -------------------------------------------------------------------------------- /testing/unit/CollectionNQueens.good: -------------------------------------------------------------------------------- 1 | SUCCESS 2 | -------------------------------------------------------------------------------- /testing/unit/DequeOrdering.chpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/testing/unit/DequeOrdering.chpl -------------------------------------------------------------------------------- /testing/unit/DequeOrdering.compopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/testing/unit/DequeOrdering.compopts -------------------------------------------------------------------------------- /testing/unit/DequeOrdering.good: -------------------------------------------------------------------------------- 1 | SUCCESS 2 | -------------------------------------------------------------------------------- /testing/unit/DequeParity.chpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/testing/unit/DequeParity.chpl -------------------------------------------------------------------------------- /testing/unit/DequeParity.compopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LouisJenkinsCS/Distributed-Data-Structures/HEAD/testing/unit/DequeParity.compopts -------------------------------------------------------------------------------- /testing/unit/DequeParity.good: -------------------------------------------------------------------------------- 1 | SUCCESS 2 | -------------------------------------------------------------------------------- /testing/unit/EXECOPTS: -------------------------------------------------------------------------------- 1 | --quiet -------------------------------------------------------------------------------- /testing/unit/NUMLOCALES: -------------------------------------------------------------------------------- 1 | 1 --------------------------------------------------------------------------------