-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
129 lines (125 loc) · 5.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/js/bootstrap.bundle.min.js" integrity="sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0" crossorigin="anonymous"></script>
<style>
body {
background-color: #F2F3F5;
/* background-color: #F1E9D2; */
}
body, a {
text-decoration: none;
color: #A41623;
}
.gutter {
/* background-color: #16161D; */
background-color: #F2F3F5;
}
a:hover {
color: #F2F3F5;
background-color: #A41623;
}
.inner-main {
background-color: #F2F3F5;
color: #16161D;
}
.section {
padding-top: 2em;
}
/* .sc {
font-variant: small-caps;
} */
.min-vh-100 {
min-height: 100vh;
}
li{
margin: 20px 0;
}
</style>
</head>
<body>
<div class="container-fluid">
<div class="row min-vh-100">
<div class="col-3 gutter"></div>
<div class="col-lg-6 inner-main min-vh-100">
<div class="section">
<div class="row">
<div class="col-9">
<h2>Derek Egolf</h2>
<p>egolf (dot) d (at) northeastern (dot) edu</p>
<p>
I am a PhD student (since 2021) at Northeastern University and I'm advised by
<a href="https://www.khoury.northeastern.edu/~stavros">Stavros Tripakis</a>.
My primary research focus is the automatic generation of correct-by-construction systems
from high-level specifications (synthesis).
In the past this focus has included verified lexer generation.
More recently it has been directed toward the synthesis of distributed protocols.
Before coming to Northeastern, I completed my BS in Computer Science and Mathematics at Tufts
University.
</p>
</div>
<div class="col-3">
<img src="./mugshot.jpeg" alt="Derek Egolf" style="width: 70%; max-width: 300px;">
</div>
</div>
</div>
<div class="section">
<h4>Publications</h4>
<ol>
<li>
<b>Accelerating Protocol Synthesis and Detecting Unrealizability with Interpretation Reduction.</b>
<!-- <br> -->
<u>Derek Egolf</u>, Stavros Tripakis.
<b>TACAS 2025</b> (to appear).
<a href="https://arxiv.org/abs/2501.14585">arXiv</a>
</li>
<li>
<b>Efficient Synthesis of Symbolic Distributed Protocols by Sketching.</b>
<!-- <br> -->
<u>Derek Egolf</u>, William Schultz, Stavros Tripakis.
<b>FMCAD 2024.</b>
<a href="https://doi.org/10.34727/2024/isbn.978-3-85448-065-5_34">DOI</a>
</li>
<li>
<b>Decoupled Fitness Criteria for Reactive Systems.</b>
<!-- <br> -->
<u>Derek Egolf</u>, Stavros Tripakis.
<b>SEFM 2023.</b>
<a href="https://doi.org/10.1007/978-3-031-47115-5_6">DOI</a>
</li>
<li>
<b>Synthesis of Distributed Protocols by Enumeration Modulo Isomorphisms.</b>
<!-- <br> -->
<u>Derek Egolf</u>, Stavros Tripakis.
<b>ATVA 2023.</b>
<a href="https://doi.org/10.1007/978-3-031-45329-8_13">DOI</a>
</li>
<li>
<b>Verified ALL (*) Parsing with Semantic Actions and Dynamic Input Validation.</b>
<!-- <br> -->
Sam Lasser, Chris Casinghino, <u>Derek Egolf</u>, Kathleen Fisher, Cody Roux.
<b>NFM 2023.</b>
<a href="https://doi.org/10.1007/978-3-031-33170-1_25">DOI</a>
</li>
<li>
<b>Verbatim++: Verified, Optimized, and Semantically Rich Lexing with Derivatives.</b>
<!-- <br> -->
<u>Derek Egolf</u>, Sam Lasser, Kathleen Fisher.
<b>CPP 2022.</b>
<a href="https://doi.org/10.1145/3497775.3503694">DOI</a>
</li>
<li>
<b>Verbatim: A Verified Lexer Generator.</b>
<!-- <br> -->
<u>Derek Egolf</u>, Sam Lasser, Kathleen Fisher.
<b>LangSec 2021.</b>
<a href="http://dx.doi.org/10.1109/SPW53761.2021.00022">DOI</a>
</li>
</ol>
</div>
</div>
<div class="col-3 gutter"></div>
</div>
</div>
</body>