So the intent is to construct an LTL formula that describes the following scenario:
There are two agents, Anastasia and Boris, who have arranged to meet at a cafe and exchange secret information. Initially, neither of them are at the cafe, then Anastasia arrives, strictly before Boris does. She cannot leave before Boris arrives. Boris must arrive at some point. Once Boris arrives they spend some time together, but they leave separately. Anastasia has to leave strictly before Boris, who must leave eventually. They will never return to the cafe.
The propositions are the following:
$A$: Anastasia is at the cafe
$B$: Boris is at the cafe
So first by breaking up things into sub-formulas I have constructed the following:
$\neg A \land \neg B \hspace{10pt}$ "Neither Anastasia or Boris are at the cafe"
$\neg B \cup (A \land \neg B) \hspace{10pt}$ "Anastasia arrives, strictly before Boris"
$A \cup (A \land B) \hspace{10pt}$ "Anastasia cannot leave before Boris arrives. Boris must arrive at some point."
$B \cup (\neg A \land B) \hspace{10pt}$ "Anastasia leaves strictly before Boris"
$\Diamond \neg B \hspace{10pt}$ "Boris leaves eventually"
$\square (\neg A \land \neg B) \hspace{10pt}$ "Anastasia and Boris never return to the cafe"
The trouble I have is combining the above formulas in a way such that they take place in the proper chronological order. My attempt would be
\begin{align} (\neg A \land \neg B) & \land \bigcirc (\neg B \cup (A \land \neg B)) \\ & \land ((A \land \neg B) \implies A \cup (A \land B)) \\ & \land ((A \land B) \implies B \cup (\neg A \land B)) \\ & \land ((\neg A \land B) \implies \neg A \cup (\neg A \land \neg B)) \\ \end{align}
However I don't know how to incorporate the fact that Anastasia and Boris never return to the cafe