Skip to content

Commit

Permalink
Added files
Browse files Browse the repository at this point in the history
  • Loading branch information
Rototu committed Jul 12, 2021
0 parents commit 279bbe1
Show file tree
Hide file tree
Showing 55 changed files with 189,903 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
module.exports = {
"env": {
"browser": true,
"commonjs": true,
"es2021": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 12
},
"rules": {
}
};
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.pdf
node_modules/
23 changes: 23 additions & 0 deletions config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
module.exports = {
/** Time in ms before returning iterator for page records,
simulates physical storage access time. */
pageFetchTime: 0.1,
/** Maximum amoung of records one page can store */
maxNoOfRecsPerFile: 100,
cacheOptions: {
/** Maximum number of pages the buffer can store */
max: 50,
},
/** Size of block for blockjoin */
blockJoinSize: 100,
/**
* Tests will repeat algorithm for each scale in array.
* If running the standard tests, the scales represent
* how many records to load from input csv files, in percentages (0-100).
* If running the graph test, the scales will represent the connectivity of the generated graph.
* If running the sorting query test, these scales will represent the number of entries generated.
*/
scales: [10,25,50,100],
/** How many runs to do for each algorithm (first one will be discarded) */
noOfRuns: 5,
};
Loading

0 comments on commit 279bbe1

Please sign in to comment.