Skip to content

Commit 35e718b

Browse files
committed
Added pubs
1 parent abd0672 commit 35e718b

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

src/components/Publications/citations.bib

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
% Cleaned by https://flamingtempura.github.io/bibtex-tidy
22
% Run `pandoc citations.bib -t csljson -o citations.json`
3+
@inproceedings{Lee:25:Time,
4+
author = {Lee, Edward A.},
5+
title = {Logical Time in Actor Systems},
6+
booktitle = {Concurrent Programming, Open Systems and Formal Methods: Essays Dedicated to Prof. Gul Agha to Celebrate his Scientific Career},
7+
editor = {Jos\'e Meseguer and Carlos A. Varela and Nalini Venkatasubramanian},
8+
publisher = {Springer},
9+
volume = {LNCS},
10+
abstract = {The nondeterministic ordering of message handling in the original actor model makes it difficult to achieve the consistency across a distributed system that some applications require. This paper explores a number of mitigations, focusing primarily on the use of logical time to define a semantic ordering for messages.Avariety of coordination mechanisms can ensure that messages are handled in logical time order, but they all come with costs. A fundamental tradeoff (the CAL theorem) makes it impossible to achieve consistency without paying a price in availability, where the price depends on the latencies introduced by network communication, computation overhead, and clock synchronization error. This paper shows how to use the Lingua Franca coordination language to navigate this tradeoff, and particularly how to ensure eventual consistency while bounding unavailability with manageable risk.},
11+
url = {https://eecs.berkeley.edu/~eal/publications/LeeTimeAghaFestschriftPreprint2025.pdf},
12+
year = {2025},
13+
type = {Conference Proceedings}
14+
}
15+
16+
@inproceedings{JunEtAl:25:DE,
17+
author = {Jun, Byeonggil and Lee, Edward A. and Lohstroh, Marten and Kim, Hokeun},
18+
title = {Improving the Efficiency of Coordinating Timed Events in Distributed Systems},
19+
booktitle = {Conference on Principles of Advanced Discrete Simulation (PADS)},
20+
publisher = {ACM},
21+
pages = {99-109},
22+
abstract = {For distributed cyber-physical systems (CPS), accurate and precise timing control among distributed nodes helps ensure safety and correctness. Discrete-event (DE) systems serve as an effective model of computation for distributed CPS requiring precise timing control. The high-level architecture (HLA) has been widely used for the simulation of distributed DE (DDE) systems and can be extended for the implementation of distributed CPS. We find that HLA imposes excessive network communication overhead, specifically, through the run-time infrastructure (RTI), for the coordination of timed events for some applications. This paper identifies inefficiencies and proposes a novel approach that reduces the number of messages without compromising control over timing. We evaluate our approach using example patterns of distributed CPS.},
23+
DOI = {10.1145/3726301.3728399},
24+
year = {2025},
25+
type = {Conference Proceedings}
26+
}
27+
328
@article{LohstrohEtAl:24:DeterministicCoordination,
429
author = {Lohstroh, Marten and Bateni, Soroush and Menard, Christian and Schulz-Rosengarten, Alexander and Castrillon, Jeronimo},
530
title = {Deterministic Coordination across Multiple Timelines},

src/components/Publications/copypasta.tsx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ import Link from "@docusaurus/Link";
66

77
export const copypastaPublications: ReactNode = (
88
<ul>
9+
<li>
10+
<p>
11+
<strong>Agha '25</strong>: Edward A. Lee.
12+
"<Link href="https://eecs.berkeley.edu/~eal/publications/LeeTimeAghaFestschriftPreprint2025.pdf">Logical Time in Actor Systems</Link>", in <i>Concurrent Programming, Open Systems and Formal Methods: Essays Dedicated to Prof. Gul Agha to Celebrate his Scientific Career</i>, Springer, LNCS, 2025.
13+
</p>
14+
</li>
15+
<li>
16+
<p>
17+
<strong>PADS '25</strong>: Byeonggil Jun, Edward A. Lee, Marten Lohstroh, and Hokeun Kim.
18+
"<Link href="https://doi.org/10.1145/3726301.3728399">Improving the Efficiency of Coordinating Timed Events in Distributed Systems</Link>", in <i>Proceedings of the Conference on Principles of Advanced Discrete Simulation (PADS)</i>, ACM, June 23-26,2025.
19+
</p>
20+
</li>
921
<li>
1022
<p>
1123
<strong>ESL '25</strong>: Francesco Paladino, Erling Jellum, Efsane Soyer, and Edward A. Lee.

0 commit comments

Comments
 (0)