-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (85 loc) · 4.05 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="icon" href="/favicon.ico">
<title>sebastiaanbrand.github.io</title>
<link rel="stylesheet" href="/css/bootstrap.min.css">
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<div id="home-content" class="container">
<div class="row justify-content-center">
<div id="home-message" class="col-sm-9">
<h2 class="text-center" title="General Kenobi">Hello there</h2>
</div>
</div>
<div class="row">
<div id="main-home-content" class="col-sm-12">
<div class="row pb-5 pt-5 justify-content-center">
<div class="col-lg-8"><a href="https://xkcd.com/1831"><img src="/img/here_to_help.png"
alt="xkcd comic" title="An xkcd image on a mostly empty page, so original!" class="center-block img-fluid"></a></div>
</div>
<div class="row pt-5 justify-content-center">
<div id="publications" class="col-lg-8">
<h5 class="text-center">Problems solved with algorithms (and other papers)</h5>
<hr>
<table class="table table-hover text-start">
<tbody>
<tr>
<td>
<span>Brand, S., Coopmans, T., and Elkouss, D. </span>
<span>"Efficient computation of the waiting time and fidelity in quantum repeater chains." </span>
<span class="font-italic"><a href="https://ieeexplore.ieee.org/abstract/document/8972391/">IEEE Journal on Selected Areas in Communications</a></span>
<span>(2020).</span>
</td>
<td><a href="https://arxiv.org/abs/1912.07688">arXiv</a></td>
</tr>
<tr>
<td>
<span>Coopmans, T., Brand, S., and Elkouss, D. </span>
<span>"Improved analytical bounds on delivery times of long-distance entanglement." </span>
<span class="font-italic"><a href="https://journals.aps.org/pra/abstract/10.1103/PhysRevA.105.012608">Physical Review A</a></span>
<span>(2022).</span>
</td>
<td><a href="https://arxiv.org/abs/2103.11454">arXiv</a></td>
</tr>
<tr>
<td>
<span>Brand, S., Bäck, T. and Laarman, A. </span>
<span>"A decision diagram operation for reachability." </span>
<span class="font-italic"><a href="https://doi.org/10.1007/978-3-031-27481-7_29">Formal Methods: 25th International Symposium</a></span>
<span>(2023).</span>
</td>
<td><a href="https://arxiv.org/abs/2212.03684">arXiv</a></td>
</tr>
<tr>
<td>
<span>Rennela, M., Brand, S., Laarman, A., and Dunjko V. </span>
<span>"Hybrid divide-and-conquer approach for tree search algorithms." </span>
<span class="font-italic"><a href="https://quantum-journal.org/papers/q-2023-03-23-959/">Quantum</a></span>
<span>(2023).</span>
</td>
<td><a href="https://arxiv.org/abs/2007.07040">arXiv</a></td>
</tr>
<tr>
<td>
<span>Brand, S., Coopmans, T., Laarman, A. </span>
<span>"Quantum graph-state synthesis with SAT." </span>
<span class="font-italic"><a href="https://ceur-ws.org/Vol-3545/">14th International Workshop on Pragmatics of SAT</a></span>
<span>(2023).</span>
</td>
<td><a href="https://arxiv.org/abs/2309.03593">arXiv</a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<script src="js/bootstrap.min.js"></script>
</body>
</html>