-
Notifications
You must be signed in to change notification settings - Fork 7
/
benchmark.html
34 lines (28 loc) · 1.18 KB
/
benchmark.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<html>
<head>
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"> -->
</head>
<body>
<h1>TLA+ Web Benchmarks</h1>
<div id="tests"></div>
<div id="test-duration"></div>
</body>
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
crossorigin="anonymous">
</script>
<!-- <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script> -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.21/lodash.js" integrity="sha512-2iwCHjuj+PmdCyvb88rMOch0UcKQxVHi/gsAml1fN3eg82IDaO/cdzzeXX4iF2VzIIes7pODE1/G0ts3QBwslA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/clusterize.js/0.18.0/clusterize.min.js"></script>
<script src="js/object_hash.js" crossorigin="anonymous"></script>
<script src="js/hash-sum/hash-sum.js" crossorigin="anonymous"></script>
<script src=js/eval.js></script>
<script>LANGUAGE_BASE_URL = "js";</script>
<script src=js/tree-sitter.js></script>
<script src="js/benchmark.js"></script>
<style>
body{
font-family: monospace;
}
</style>
</html>