-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 279bbe1
Showing
55 changed files
with
189,903 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
module.exports = { | ||
"env": { | ||
"browser": true, | ||
"commonjs": true, | ||
"es2021": true | ||
}, | ||
"extends": "eslint:recommended", | ||
"parserOptions": { | ||
"ecmaVersion": 12 | ||
}, | ||
"rules": { | ||
} | ||
}; |
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,2 @@ | ||
node_modules/ |
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,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, | ||
}; |
Oops, something went wrong.