-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathexample.html
106 lines (95 loc) · 4.17 KB
/
example.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<!-- Copyright 2017 Timofey Rechkalov <[email protected]>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. -->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Measurelook пример</title>
<script src="libs/jquery-3.1.1.min.js"></script>
<script src="libs/bootstrap.min.js"></script>
<script src="libs/ramda.min.js"></script>
<script src="libs/vex.combined.min.js"></script>
<script src="libs/FileSaver.js"></script>
<link href="style/bootstrap.min.css" rel="stylesheet">
<link href="style/vex-theme-default.css" rel="stylesheet">
<link href="style/vex.css" rel="stylesheet">
<link href="style/style.css" rel="stylesheet">
</head>
<body onload="example.init()">
<div class="container-fluid">
<div class="row">
<div class="col-xs-12">
<div class="panel panel-default intro-panel">
<div class="panel-heading">
<a href="#/" panel-toggler=".container-fluid .intro-panel .panel-body">
<h3 class="panel-title player-profile-header" >О программе</h3>
</a>
</div>
<div class="panel-body">
<p>
На этой странице вы можете провести один из вычислительных экспериментов и визуализировать полученные результаты с помощью Measurelook.
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<div class="panel panel-default settings-panel">
<div class="panel-heading">
<a href="#/" panel-toggler=".container-fluid .settings-panel .panel-body">
<h3 class="panel-title player-profile-header" >Эксперименты</h3>
</a>
</div>
<div class="panel-body">
<div class="radio">
<label>
<input type="radio" name="experimentRadios" id="standard-sort" value="standard-sort" checked>
1. Цель - пример работы. Сортировка случайного массива чисел размером от 20000 до 200000 с шагом 20000 встроенным алгоритмом сортировки. 5 прогонов.
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="experimentRadios" id="bubble-sort" value="bubble-sort" checked>
2. Цель - сравнение двух алгоритмов. То же, что и эксперимент 1 + сортировка пузырьком.
</label>
</div>
<button class="btn btn-default run-example-button">Запустить</button>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<div class="panel panel-default execution-panel">
<div class="panel-heading">
<a href="#/" panel-toggler=".container-fluid .execution-panel .panel-body">
<h3 class="panel-title player-profile-header" >Ход выполнения</h3>
</a>
</div>
<div class="panel-body">
</div>
</div>
</div>
</div>
</div>
<script src="js/errors.js"></script>
<script src="js/constants.js"></script>
<script src="js/commonUtils.js"></script>
<script src="js/fileUtils.js"></script>
<script src="js/utils.js"></script>
<script src="js/uiUtils.js"></script>
<script src="js/sortExample.js"></script>
<script src="js/l10n.ru.js"></script>
<script src="js/example.js"></script>
</body>
</html>