-
Notifications
You must be signed in to change notification settings - Fork 0
/
get.html
170 lines (169 loc) · 8.85 KB
/
get.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!DOCTYPE html>
<html lang="en">
<head>
<title>Get - STAMINA Model Checker</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/x-icon" href="images/favicon.svg">
<script type="text/javascript" src="scripts/scripts.js"></script>
<meta name="keywords" content="STAMINA,Model-Checker,Infinite-State,markov,markov-chain,formal-verification,formal-methods">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
</head>
<body>
<!-- Navigation Bar -->
<ul class="navbar" id="navbar">
<li><a class="stamina-name" id="stamina" href="/"><div id="slogo">STAMINA</div></a></li>
<li><a class="openbutton" id="openbutton" onclick="openNav()">☰</a></li>
<li><a class="closebutton" id="closebutton" onclick="closeNav()">×</a></li>
<li><a class="navbutton" href="/">Home</a></li>
<li><a class="navbutton" href="about.html">About</a></li>
<li id="get">
<a href="get.html" class="active" id="active" class="navbutton">Get</a>
<div class="dropdown-content" id="get-dropdown">
<a href="/run.html">Run Online</a>
<a href="get.html#download">Download</a>
<a href="source.html">Source Code</a>
</div>
</li>
<li id="documentation">
<a class="navbutton" href="documentation.html">Documentation</a>
<div class="dropdown-content" id="documentation-dropdown">
<a href="documentation/wiki/index.html">Wiki</a>
<a href="documentation/api.html">API Documentation</a>
</div>
</li>
<li><a class="navbutton" href="benchmarks.html">Benchmarks</a></li>
<li class="right"><a title="Toggle Light/Dark Mode" onclick="toggleDarkMode()"><img src="images/icons/darkLight.svg" height="15px"></a></li>
<!-- <li class="right"><a class="fluent" href="https://fluentverification.github.io">FLUENT Verification</a></li> -->
<li class="right"><a title="Show Search Bar" onclick="showSearchBar()" class="navbutton"><i class="icon bi-search" style="font-size: 12pt; margin-right: 0px;" id="search-icon"></i></a></li>
<li>
<div class="search-overlay" id="search-overlay">
<a onclick="showSearchBar()" id="search-overlay-button">×</a>
<form action="javascript:search()">
<input type="text" id="search" class="search-bar gcse-searchbox-only" placeholder="Search...">
</form>
</div>
</li>
</ul>
<script type="text/javascript" src="scripts/search.js"></script>
<div class="top-buffer" id="top-buffer"><br></div>
<!-- Back to top button -->
<a class="btt-button" id="btt-button" href="#">
<i class="icon bi-arrow-bar-up just-icon"></i></a>
<script>
let bttButton = document.getElementById('btt-button');
if (bttButton != null) {
window.onscroll = function() {
if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) {
bttButton.style.display = "block";
}
else {
bttButton.style.display = "none";
}
}
}
</script>
<!-- Cookie Banner -->
<div class="cookie-banner" id="cookie-banner">
<table>
<tr>
<td>
The STAMINA Website uses local browser storage, a technology akin to cookies, to remember your color scheme preferences. You will not see this message on future visits. <a href="privacy.html">More...</a>
</td><td>
<a style="color:black; padding: 10px; font-size: 20pt; cursor: pointer;" onclick="closeCookieBanner()">×</a></td><tr>
</table>
<script>
function closeCookieBanner() {
let cookieBanner = document.getElementById('cookie-banner');
cookieBanner.style.display = "none";
}
</script>
</div>
<div class="content">
<!-- CONTENT -->
<h1>Get STAMINA</h1>
<p>Need help installing STAMINA? Check out <a href="/documentation/wiki/install-sstamina">this page.</a></p>
<h2>Official Releases</h1>
<a class="button" href="/downloads">
<i class="icon bi-download"></i>Download Latest Release</a>
<a class="button" href="/run">
<i class="icon bi-globe2"></i>Try STAMINA Online</a>
<h3>Github Releases</h3>
<ul>
<li><a href=https://github.com/fluentverification/stamina-storm/releases/tag/vQEST23-submission>QEST23 submission</a></li>
<li><a href="https://github.com/fluentverification/stamina-storm/releases/tag/v2.2.5-alpha">STAMINA/Storm (2.2.5)</a></li>
<li><a href="https://github.com/fluentverification/stamina-storm/releases/tag/v2.2.1-beta">STAMINA/STORM 2.2.1</a></li>
<li><a href="https://github.com/fluentverification/stamina-storm/releases/tag/v0.0.1-alpha">STAMINA/STORM Version 0.1 alpha (non-optimized)</a></li>
<li><a href="https://github.com/fluentverification/stamina/releases/tag/VMCAI2022">Version 2.0 (Only PRISM Integration)</a></li>
<li><a href="https://github.com/fluentverification/stamina/releases/tag/ACSSynBio21">Version 1.1 (Only PRISM Integration)</a></li>
</ul>
<h2>Source Code</h2>
<a class="button" href="https://github.com/fluentverification/stamina"><i class="icon bi-git"></i>Get Source Code (Main Repository)</a>
<h3>Repositories</h3>
<ul>
<li><a href="https://github.com/fluentverification/stamina">Main Repository</a></li>
<li><a href="https://github.com/fluentverification/stamina-storm">STAMINA/STORM</a></li>
<li><a href="https://github.com/fluentverification/stamina-prism">STAMINA/PRISM</a></li>
</ul>
<h2>Citing Stamina</h2>
<p>To cite STAMINA in papers, use one of the following citations:</p>
<h3>To cite STAMINA/Storm, please use the following paper from QEST'23</h3>
<div class="citation" id="qest23">
Jeppson, J. et al. (2023). STAMINA in C++: Modernizing an Infinite-State Probabilistic Model Checker. In: Jansen, N., Tribastone, M. (eds) Quantitative Evaluation of Systems. QEST 2023. Lecture Notes in Computer Science, vol 14287. Springer, Cham. https://doi.org/10.1007/978-3-031-43835-6_7
</div>
<button onclick="copyCitation('qest23')" class="button"><i class="icon bi-copy"></i>Copy Citation</button>
<h3>To cite STAMINA 2.0, please use the tool paper from VMCAI'22:</h3>
<div class="citation" id="vmcai22">
Roberts R., Neupane T., Buecherl L., Myers C.J., Zhang Z. (2022) STAMINA 2.0: Improving Scalability of Infinite-State Stochastic Model Checking. In: Bernd F., Wies, T. (eds) Verification, Model Checking, and Abstract Interpretation. VMCAI 2022. Lecture Notes in Computer Science, Springer, Cham. Download link: https://link.springer.com/chapter/10.1007/978-3-030-94583-1_16
</div>
<button onclick="copyCitation('vmcai22')" class="button"><i class="icon bi-copy"></i>Copy Citation</button>
<h3>To cite STAMINA 1.0, please use the tool paper from CAV'19:</h3>
<div class="citation" id="cav19">
Neupane T., Myers C.J., Madsen C., Zheng H., Zhang Z. (2019) STAMINA: STochastic Approximate Model-Checker for INfinite-State Analysis. In: Dillig I., Tasiran S. (eds) Computer Aided Verification. CAV 2019. Lecture Notes in Computer Science, vol 11561. Springer, Cham. Download link: https://link.springer.com/chapter/10.1007/978-3-030-25540-4_31
</div>
<button onclick="copyCitation('cav19')" class="button"><i class="icon bi-copy"></i>Copy Citation</button>
<p style="font-size: 10pt">
STAMINA 2.5 and STAMINA 3.0 don't yet have papers published about them as they are currently under development. When they do have papers, they will be placed here.
</p>
</div>
<!-- Footer -->
<div class="footer">
<div class="footer-links">
<table style="width:80%">
<tr>
<th>STAMINA Information</th>
<th>FLUENT Information</th>
<th>Papers and Research</th>
</tr>
<tr>
<td><a href="https://github.com/fluentverification/stamina-storm">STAMINA/STORM</a></td>
<td><a href="/">State-space truncation (STAMINA)</a></td>
<td><a href="https://scholar.google.com/scholar?cites=9821345918508716656&as_sdt=5,45&sciodt=0,45&hl=en">Google Scholar</a></td>
</tr>
<tr>
<td><a href="https://github.com/fluentverification/stamina-prism">STAMINA/PRISM</a></td>
<!--<td><a href="#">Property-Directed Reachability</a></td>-->
</tr>
<tr>
<td><a href="about.html#contact">Contact Developers</a></td>
<!--<td><a href="#">Counterexample Generation</a></td>-->
</tr>
<tr>
<td></td>
<td><a href="https://fluentverification.github.io">Fluent Website</a></td>
</tr>
<tr>
<td></td>
<td><a href="https://fluentverification.github.io/contact/">Contact Fluent</a></td>
</tr>
</table>
</div>
<div style="padding-top: 30px;" >
STAMINA is developed at <a href="https://www.usu.edu/">Utah State University</a> and is part of the tools developed by the FLUENT Team. The STAMINA tool is licensed under the GPLv3 license, and the model checkers it integrates with, STORM and PRISM, are under the GPL 3.0 and 2.0 licenses respectively.
</div>
<div style="padding-top: 10px; font-size: 8pt;" >
This website is designed and developed by hand by Josh Jeppson. The content and design of this website is licensed under the <a href=https://creativecommons.org/licenses/by-nc-sa/3.0/>CC-BY-SA-NC license</a>. This website uses the <a href="https://icons.getbootstrap.com/">Bootstrap Icons</a> licensed under the MIT license.
</div>
</div>
</body>