Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit f0e45a1

Browse files
feat: add more benchmarks
1 parent 177ad12 commit f0e45a1

File tree

1 file changed

+50
-4
lines changed

1 file changed

+50
-4
lines changed

‎run_experiment.py

Lines changed: 50 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,38 +10,84 @@
1010

1111
projects = {
1212
"./benchmark/commanderjs": [
13+
"./benchmark/commanderjs/lib/argument.js",
1314
"./benchmark/commanderjs/lib/help.js",
1415
"./benchmark/commanderjs/lib/option.js",
1516
"./benchmark/commanderjs/lib/suggestSimilar.js"
1617
],
1718
"./benchmark/express": [
18-
# "./benchmark/express/lib/application.js",
19+
"./benchmark/express/lib/application.js",
20+
"./benchmark/express/lib/middleware/init.js",
1921
"./benchmark/express/lib/middleware/query.js",
2022
"./benchmark/express/lib/request.js",
2123
"./benchmark/express/lib/response.js",
24+
"./benchmark/express/lib/router/index.js",
25+
"./benchmark/express/lib/router/route.js",
2226
"./benchmark/express/lib/utils.js",
2327
"./benchmark/express/lib/view.js"
2428
],
2529
"./benchmark/javascript-algorithms": [
30+
"./benchmark/javascript-algorithms/src/algorithms/cryptography/hill-cipher/hillCipher.js",
31+
"./benchmark/javascript-algorithms/src/algorithms/cryptography/rail-fence-cipher/railFenceCipher.js",
2632
"./benchmark/javascript-algorithms/src/algorithms/graph/articulation-points/articulationPoints.js",
2733
"./benchmark/javascript-algorithms/src/algorithms/graph/bellman-ford/bellmanFord.js",
2834
"./benchmark/javascript-algorithms/src/algorithms/graph/travelling-salesman/bfTravellingSalesman.js",
2935
"./benchmark/javascript-algorithms/src/algorithms/graph/breadth-first-search/breadthFirstSearch.js",
3036
"./benchmark/javascript-algorithms/src/algorithms/graph/depth-first-search/depthFirstSearch.js",
3137
"./benchmark/javascript-algorithms/src/algorithms/graph/detect-cycle/detectDirectedCycle.js",
3238
"./benchmark/javascript-algorithms/src/algorithms/graph/detect-cycle/detectUndirectedCycle.js",
33-
# "./benchmark/javascript-algorithms/src/algorithms/graph/dijkstra/dijktra.js",
39+
"./benchmark/javascript-algorithms/src/algorithms/graph/dijkstra/dijktra.js",
3440
"./benchmark/javascript-algorithms/src/algorithms/graph/eulerian-path/eulerianPath.js",
3541
"./benchmark/javascript-algorithms/src/algorithms/graph/floyd-warshall/floydWarshall.js",
3642
"./benchmark/javascript-algorithms/src/algorithms/graph/hamiltonian-cycle/hamiltonianCycle.js",
3743
"./benchmark/javascript-algorithms/src/algorithms/graph/kruskal/kruskal.js",
3844
"./benchmark/javascript-algorithms/src/algorithms/graph/prim/prim.js",
3945
"./benchmark/javascript-algorithms/src/algorithms/graph/strongly-connected-components/stronglyConnectedComponents.js",
46+
"./benchmark/javascript-algorithms/src/algorithms/image-processing/seam-carving/resizeImageWidth.js",
47+
"./benchmark/javascript-algorithms/src/algorithms/math/complex-number/ComplexNumber.js",
48+
"./benchmark/javascript-algorithms/src/algorithms/math/euclidean-algorithm/euclideanAlgorithmIterative.js",
49+
"./benchmark/javascript-algorithms/src/algorithms/math/fourier-transform/fastFourierTransform.js",
50+
"./benchmark/javascript-algorithms/src/algorithms/math/integer-partition/integerPartition.js",
51+
"./benchmark/javascript-algorithms/src/algorithms/math/matrix/Matrix.js",
52+
"./benchmark/javascript-algorithms/src/algorithms/math/primality-test/trialDivision.js",
53+
"./benchmark/javascript-algorithms/src/algorithms/ml/k-means/kMeans.js",
54+
"./benchmark/javascript-algorithms/src/algorithms/ml/knn/kNN.js",
55+
"./benchmark/javascript-algorithms/src/algorithms/search/interpolation-search/interpolationSearch.js",
56+
"./benchmark/javascript-algorithms/src/algorithms/search/jump-search/jumpSearch.js",
57+
"./benchmark/javascript-algorithms/src/algorithms/sets/cartesian-product/cartesianProduct.js",
4058
"./benchmark/javascript-algorithms/src/algorithms/sets/knapsack-problem/Knapsack.js",
4159
"./benchmark/javascript-algorithms/src/algorithms/sets/knapsack-problem/KnapsackItem.js",
42-
"./benchmark/javascript-algorithms/src/algorithms/math/matrix/Matrix.js",
60+
"./benchmark/javascript-algorithms/src/algorithms/sets/longest-common-subsequence/longestCommonSubsequence.js",
61+
"./benchmark/javascript-algorithms/src/algorithms/sets/longest-increasing-subsequence/dpLongestIncreasingSubsequence.js",
62+
"./benchmark/javascript-algorithms/src/algorithms/sets/shortest-common-supersequence/shortestCommonSupersequence.js",
4363
"./benchmark/javascript-algorithms/src/algorithms/sorting/counting-sort/CountingSort.js",
44-
"./benchmark/javascript-algorithms/src/data-structures/tree/red-black-tree/RedBlackTree.js"
64+
"./benchmark/javascript-algorithms/src/algorithms/sorting/radix-sort/RadixSort.js",
65+
"./benchmark/javascript-algorithms/src/algorithms/statistics/weighted-random/weightedRandom.js",
66+
"./benchmark/javascript-algorithms/src/algorithms/string/knuth-morris-pratt/knuthMorrisPratt.js",
67+
"./benchmark/javascript-algorithms/src/algorithms/string/levenshtein-distance/levenshteinDistance.js",
68+
"./benchmark/javascript-algorithms/src/algorithms/string/longest-common-substring/longestCommonSubstring.js",
69+
"./benchmark/javascript-algorithms/src/algorithms/string/regular-expression-matching/regularExpressionMatching.js",
70+
"./benchmark/javascript-algorithms/src/algorithms/string/z-algorithm/zAlgorithm.js",
71+
"./benchmark/javascript-algorithms/src/algorithms/tree/breadth-first-search/breadthFirstSearch.js",
72+
"./benchmark/javascript-algorithms/src/algorithms/tree/depth-first-search/depthFirstSearch.js",
73+
"./benchmark/javascript-algorithms/src/algorithms/uncategorized/jump-game/dpTopDownJumpGame.js",
74+
"./benchmark/javascript-algorithms/src/algorithms/uncategorized/knight-tour/knightTour.js",
75+
"./benchmark/javascript-algorithms/src/algorithms/uncategorized/n-queens/nQueens.js",
76+
"./benchmark/javascript-algorithms/src/algorithms/uncategorized/unique-paths/dpUniquePaths.js",
77+
"./benchmark/javascript-algorithms/src/data-structures/bloom-filter/BloomFilter.js",
78+
"./benchmark/javascript-algorithms/src/data-structures/disjoint-set/DisjointSet.js",
79+
"./benchmark/javascript-algorithms/src/data-structures/doubly-linked-list/DoublyLinkedList.js",
80+
"./benchmark/javascript-algorithms/src/data-structures/graph/Graph.js",
81+
"./benchmark/javascript-algorithms/src/data-structures/linked-list/LinkedList.js",
82+
"./benchmark/javascript-algorithms/src/data-structures/tree/avl-tree/AvlTree.js",
83+
"./benchmark/javascript-algorithms/src/data-structures/tree/binary-search-tree/BinarySearchTreeNode.js",
84+
"./benchmark/javascript-algorithms/src/data-structures/tree/BinaryTreeNode.js",
85+
"./benchmark/javascript-algorithms/src/data-structures/tree/fenwick-tree/FenwickTree.js",
86+
"./benchmark/javascript-algorithms/src/data-structures/tree/red-black-tree/RedBlackTree.js",
87+
"./benchmark/javascript-algorithms/src/data-structures/tree/segment-tree/SegmentTree.js",
88+
"./benchmark/javascript-algorithms/src/data-structures/trie/Trie.js",
89+
"./benchmark/javascript-algorithms/src/data-structures/trie/TrieNode.js",
90+
"./benchmark/javascript-algorithms/src/utils/comparator/Comparator.js"
4591
],
4692
"./benchmark/lodash": [
4793
"./benchmark/lodash/.internal/equalArrays.js",

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /