-
Notifications
You must be signed in to change notification settings - Fork 1
/
visualize.jade
84 lines (84 loc) · 2.72 KB
/
visualize.jade
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
doctype html
html
head
block head
meta(charset='utf-8')
title Visualization of Weighted Kripke System
link(rel='stylesheet', href='http://fonts.googleapis.com/css?family=Open+Sans')
for source in style
link(rel='stylesheet', href="#{source}")
for source in scripts
script(src="#{source}")
body
div#initial-state-form.form-horizontal
legend Choose Initial State for Visualization
div.controls
p
| The weighted Kripke structure will be rendered as if it was explorered from a particular
| initial state.
| States which cannot be reached from the initial state will not be rendered.
br
| Please choose an initial state.
div.control-group
label.control-label Initial state
div.controls
select#initial-state
div.controls
p
| By default all reachable states are not rendered initially, instead states
| are expanded when they are selected.
br
| If you tick the option below, all reachable states will be expanded and rendered
| initially.
div.controls
label
input(type='checkbox')#expand-all
| Expand all reachable nodes initially.
div.controls
br
div#expand-all-warning.alert.alert-block
h4 Warning!
| State space exploration and graph generation will take place on the main-thread.
| For large graphs this may crash this iframe or the entire tab.
b Please save before you proceed!
div#render-form-actions.form-actions
button#render-button.btn.btn-success.disabled
i.icon-play.icon-white
| Render
button.close-button.btn Cancel
div#visualization
legend#render-title State-Space Exploration from "
span#statename
| "
button.close-button.btn.pull-right
i.icon-remove
| Close
div#splitter
div.ui-layout-center
canvas
div#meta-rows.ui-layout-south
div
table.table
colgroup
col(width='15%')
col(width='85%')
tbody
tr
th State
td#current-state.state
tr
th Properties
td#current-props.props
div
h4 Transitions
table.table.table-condensed.table-hover
colgroup
col(width='10%')
col(width='10%')
col(width='80%')
thead
tr
th Weight
th Action
th Target
tbody#targets