-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
279 lines (204 loc) · 11.6 KB
/
index.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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
<!DOCTYPE html>
<!--[if lt IE 7]>
<html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>
<html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]>
<html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Hipster4j | An Open Source Java Library for Heuristic Search</title>
<meta name="description" content="Hipster (also known as hipster4j) is an easy to use yet powerful and flexible type-safe library for heuristic search, written in pure Java. Define search problems or graph and solve it using Dijkstra, A*, Bellman-Ford or any other algorithm included in the library.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Language" content="en">
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link href="assets/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/custom/style.min.css">
<link href="http://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css">
<script src="assets/js/custom/modernizr/modernizr-custom.js"></script>
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade
your browser</a> to improve your experience.</p>
<![endif]-->
<!-- Fixed navbar -->
<div class="navbar navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".navbar-collapse" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" rel="home" href="/" title="Hipster">
<img style="max-width:170px; margin-top: -7px;" src="assets/css/custom/img/hipster-logo-text.png">
</a>
</div>
<div class="navbar-collapse collapse">
<!-- navigation menus -->
<ul class="nav navbar-nav navbar-right">
<li><a href="http://hipster4j.gitbooks.io/hipster4j/content/">Documentation</a></li>
<li><a href="hipster-javadocs">Javadoc</a></li>
<li>
<a href="about.html">About</a>
</li>
</ul>
</div>
<!--/.navbar-collapse -->
</div>
</div>
<div class="jumbotron">
<div class="container">
<img class="main-hipster-logo" src="assets/css/custom/img/hipster-logo-text-white.png"/>
<p>An Open Source Java Library for Heuristic Search</p>
<p><a id="download-release" class="btn btn-primary btn-lg" role="button">Download <span class="version"></span> »</a></p>
</div>
</div>
<div class="container">
<!-- Example row of columns -->
<div class="row">
<div class="col-md-4">
<h2><i class="fa fa-rocket"></i> Powerful</h2>
<p>Hipster is an easy to use yet powerful and flexible type-safe library for heuristic search, written in
pure Java. It relies on a flexible model with generic operators to define search problems.</p>
<p><a class="btn btn-default" href="#" role="button" data-toggle="modal" data-target="#powerful-example-modal">View details »</a></p>
<!-- Bootstrap Modal Popup -->
<div class="modal fade" id="powerful-example-modal" tabindex="-1" role="dialog" aria-labelledby="powerful-example-modal" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="powerful-example-modal">Define problems declaratively</h4>
</div>
<div class="modal-body">
<p>Hipster allows you to define problems in a declarative manner.
Here is an example that shows how to define a search problem and its components:</p>
<script src="https://gist.github.com/4f8c44fc235f1047a7fa.js"></script>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<h2><i class="fa fa-refresh"></i> Iterative</h2>
<p>All the algorithms are iterators. Just iterate over an algorithm to obtain the next expanded state.
You can control the search process or change the behaviour of an algorithm according to your needs.</p>
<p><a class="btn btn-default" href="#" role="button" data-toggle="modal" data-target="#iterative-example-modal">View details »</a></p>
<!-- Bootstrap Modal Popup -->
<div class="modal fade" id="iterative-example-modal" tabindex="-1" role="dialog" aria-labelledby="iterative-example-modal" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="iterative-example-modal">Iterative algorithms</h4>
</div>
<div class="modal-body">
<p>Algorithms are all implemented in an iterative fashion. You can control the behaviour
of each algorithm or change it according to your needs:</p>
<script src="https://gist.github.com/11402595.js"></script>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<h2><i class="fa fa-github"></i> Open Source</h2>
<p>Hipster comes with a permissive Apache 2.0 license that allows you to use the library in a wide variety
of commercial and non-commercial projects. All the source code of this library is also hosted on GitHub.
</p>
<p><a class="btn btn-default" href="https://github.com/citiususc/hipster" role="button">GitHub project »</a></p>
</div>
</div>
</div>
<div class="container">
<div class="page-header">
<h1>Quick Example</h1>
</div>
<p>Let's se how to search the shortest path in a directed graph using Dijkstra. Although Hipster is graph-agnostic, we have included
some nice classes and builders to create directed and undirected graphs to start playing with the library. You can also use other
library graphs such as JUNG, JGraphT or Blueprints/TinkerPop API.</p>
<div id="quick-example" class="row">
<div class="col-md-5">
<img class="img-responsive" src="assets/css/custom/img/graph-example-hipster-blue.png"/>
</div>
<div class="col-md-7">
<script src="https://gist.github.com/pablormier/3fa802e722d169e63dc6.js"></script>
</div>
</div>
<div class="bs-callout bs-callout-primary">
<h4>Output example</h4>
<code>Total number of iterations: 7. States: [A, B, C, E, D, F], Actions: [2.0, 1.0, 3.0, 2.0, 2.0], Search information: WeightedNode{state=F, cost=10.0, estimation=0.0, score=10.0}</code>
</div>
</div>
<div class="container-fluid background-pattern video-tutorial">
<div class="container">
<h1>Video tutorial</h1>
<p>
Learn how fast you can code and solve in a concise way the <a href="http://www.d.umn.edu/~jrichar4/8puz.html">8-Puzzle problem</a> with
Hipster with this three minute video tutorial. Full source code of this example can be found in the <a href="https://github.com/citiususc/hipster/tree/development/hipster-examples/src/main/java/es/usc/citius/hipster/examples">examples module</a>.</p>
<div class="embed-responsive embed-responsive-16by9 embed-video-thumbnail">
<img id="img-video-thumbnail" class="embed-responsive-item" src="assets/css/custom/img/intellij-hipster.png" />
<span class="play-video-button"><img src="assets/css/custom/img/play-video-b.png" /> </span>
<iframe id="video-tutorial-frame" class="embed-responsive-item embed-frame" src="http://www.youtube.com/embed/rQBz_xLkvww?wmode=opaque&autoplay=0" frameborder="0"
allowfullscreen></iframe>
</div>
</div>
</div>
<div class="container-fluid bg-darkgrey text-white">
<div class="container">
<h2 class="text-center">Who's using Hipster4j?</h2>
<p class="text-center">Check some of the awesome projects and companies that are using Hipster4j as part of their core components<br>
Are you also using Hipster4j? We would love to know where! please send us an email to [email protected]</p>
<div class="row vcenter">
<div class="col-md-6"><a href="http://www.situm.es"><img class="img-responsive center-block" alt="situm" src="assets/css/custom/img/logo-situm.png"/></a></div>
<div class="col-md-6"><a href="http://www.compose-project.eu/"><img class="img-responsive center-block" alt="compose eu" src="assets/css/custom/img/logo-compose.png"/></a></div>
</div>
</div>
</div>
<footer class="footer">
<div class="container">
<div class="row">
<div class="col-md-10">
<a class="footer-brand" href="http://citius.usc.es" title="CiTIUS"><img class="citius-logo" src="assets/css/custom/img/citius-logo.png"/></a>
<p class="footer-text">© 2014 Hipster - Centro de Investigación en Tecnoloxías da Información (CiTIUS)</p>
</div>
<div class="col-md-2"><a class="footer-brand right jprofiler-logo" href="http://www.ej-technologies.com/products/jprofiler/overview.html" title="Software profiled thanks to JProfiler Java Profiler" alt="This software is optimized thanks to JProfiler"></a></div>
</div>
</div>
</footer>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="assets/js/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/custom/helpers.min.js"></script>
<!-- Google Analytics -->
<script>
(function (b, o, i, l, e, r) {
b.GoogleAnalyticsObject = l;
b[l] || (b[l] =
function () {
(b[l].q = b[l].q || []).push(arguments)
});
b[l].l = +new Date;
e = o.createElement(i);
r = o.getElementsByTagName(i)[0];
e.src = '//www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e, r)
}(window, document, 'script', 'ga'));
ga('create', 'UA-54364281-2');
ga('require', 'displayfeatures');
ga('send', 'pageview');
</script>
</body>
</html>