Skip to main content
Erschienen in:

Open Access 2025 | OriginalPaper | Buchkapitel

Automating the Analysis of Quantitative Automata with QuAK

verfasst von : Marek Chalupa, Thomas A. Henzinger, Nicolas Mazzocchi, N. Ege Saraç

Erschienen in: Tools and Algorithms for the Construction and Analysis of Systems

Verlag: Springer Nature Switzerland

Aktivieren Sie unsere intelligente Suche, um passende Fachinhalte oder Patente zu finden.

search-config
download
DOWNLOAD
print
DRUCKEN
insite
SUCHEN
loading …

Abstract

Dieses Kapitel untersucht die Feinheiten quantitativer Automaten, die boolesche Automaten erweitern, indem sie rational bewertete Gewichte und Wertfunktionen einbeziehen, um unendliche Gewichtssequenzen zu bewerten. Es stellt das Quantitative Automata Kit (QuAK) vor, das erste allgemeine Werkzeug zur Analyse dieser Automaten, und präsentiert signifikante Verbesserungen gegenüber seiner ursprünglichen Version. Das erweiterte QuAK unterstützt verschiedene Automatentypen und Entscheidungsverfahren, einschließlich Leere, Universalität, Inklusion und Sicherheitsüberprüfungen. Insbesondere führt es Zersetzungsmechanismen für die Sicherheit nichtdeterministischer Automaten und Zeugengenerierungen für die Einbeziehung und hochwertige Berechnungen ein, wodurch es für die Analyse quantitativer Automaten informativer wird. Das Kapitel geht auch auf die Komplexität quantitativer Automatenprobleme ein und bietet eine detaillierte Zusammenfassung von Entscheidungsproblemen und ihren Beziehungen zur Spieltheorie. Darin werden die Implementierung, Nutzung und zukünftige Richtungen des Tools diskutiert, einschließlich potenzieller Entwicklungen symbolischer Ansätze und der Unterstützung zusätzlicher Formalismen. Das Kapitel schließt mit einer Validierung der Verbesserungen von QuAK durch rigorose Tests und Kreuzvalidierung, wobei seine praktische Anwendbarkeit und theoretische Bedeutung hervorgehoben wird.
Hinweise
This work was supported in part by the ERC-2020-AdG 101020093.

1 Introduction

Traditional system behavior analysis categorizes system behaviors as correct or incorrect. However, modern systems require more nuanced approaches to address performance and robustness criteria. Quantitative automata generalize boolean \(\omega \)-automata by adding rational-valued weights to their transitions and using value functions (instead of acceptance conditions) that accumulate infinite weight sequences into single values. Common value functions include \({\textsf{Inf}}\), \({\textsf{Sup}}\), \({\textsf{LimInf}}\), and \({\textsf{LimSup}}\) (respectively generalizing safety, reachability, co-Büchi and Büchi acceptance conditions), as well as \({\textsf{DSum}}\) (discounted sum), \({\textsf{LimInfAvg}}\), and \({\textsf{LimSupAvg}}\) (limit average a.k.a. mean payoff).
Decision problems for boolean automata extend naturally to quantitative automata. For example, a quantitative automaton \(\mathcal {A}\) is nonempty with respect to a rational number v iff \(\mathcal {A}\) maps some infinite word w to a value at least v [13]. These problems are closely related to game theory [21] and enable reasoning about quantitative system aspects. Although quantitative automata have been extensively studied from a theoretical perspective [46, 8, 16, 2426, 34, 35] and these works could significantly impact their practical verification, until recently, there was no general software tool for their analysis.
Quantitative Automata Kit (QuAK) [11] is the first general tool for quantitative automata analysis. It currently supports several automaton types (\({\textsf{Inf}}\), \({\textsf{Sup}}\), \({\textsf{LimInf}}\), \({\textsf{LimSup}}\), \({\textsf{LimInfAvg}}\), \({\textsf{LimSupAvg}}\)) and provides decision procedures for fundamental problems such as emptiness, universality, inclusion, and safety.
We present an improved version of QuAK: (i) the safety-liveness decompositions are extended to handle nondeterministic automata, and (ii) the inclusion and top value algorithms are extended with capabilities to return a witness—an ultimately periodic word explaining the algorithm’s output. For checking inclusion, i.e., whether \(\mathcal {A}(w) \le \mathcal {B}(w)\) for all words w, the witness \(\hat{w}\) is a word such that \(\mathcal {A}(\hat{w}) > \mathcal {B}(\hat{w})\). For computing top value, i.e., \(\top _{\mathcal {A}} = \sup _{w \in \varSigma ^\omega } \mathcal {A}(w)\), the witness \(\widehat{w}\) is a word such that \(\mathcal {A}(\hat{w}) = \top _{\mathcal {A}}\). Since all the other procedures are reduced to either inclusion checking or top value computation, these extensions significantly improve QuAK’s informativeness for analyzing quantitative automata.
Several approaches extend system modeling beyond boolean aspects. One uses multi-valued truth domains [9, 15], while another relies on weighted automata [36], where numerical weights are assigned to transitions and accumulated via semiring operations. Tools such as Vaucanson [32], Vcsn [18], and Awali [31] support weighted automata analysis. Other approaches address digital-analog interactions [1, 2, 22], with tools like UPPAAL [30] and HyTech [23]. Signal temporal logic [33] allows reasoning about specification satisfaction degrees, as implemented in Breach [19], S-TaLiRo [3], and RTAMT [37]. Probabilistic verification handles uncertainties, as implemented in PRISM [29] and STORM [17].

2 Quantitative Automata

Let \(\varSigma \) be a finite alphabet of letters. We denote by \(\varSigma ^*\) (resp. \(\varSigma ^\omega \)) the set of all finite (resp. infinite) words over \(\varSigma \). For \(w \in \varSigma ^\omega \) and \(u \in \varSigma ^*\), we write \(u \prec w\) when u is a prefix of w. A value domain \(\mathbb {D} \) is a nontrivial complete lattice. A quantitative property is a total function \(\varPhi : \varSigma ^\omega \rightarrow \mathbb {D} \).
We study quantitative automata, which define a subset of quantitative properties on totally-ordered value domains. Formally, a nondeterministic quantitative automaton (or simply an automaton) is a tuple \(\mathcal {A}= (\varSigma ,Q,s,\delta )\) where \(\varSigma \) is a finite alphabet, Q is a finite nonempty set of states, \(s \in Q\) is the initial state, and \(\delta :Q \times \varSigma \rightarrow 2^{\mathbb {Q} \times Q}\) is a finite transition function over weight-state pairs [13]. A transition is a tuple \((q, \sigma , x, q') \in Q \times \varSigma \times \mathbb {Q} \times Q\) such that \((x,q') \in \delta (q,\sigma )\), denoted \(q\xrightarrow []{\sigma :x}q'\). The weight of a transition \(t = (q, \sigma , x, q')\) is denoted by \(\gamma (t) = x\). An automaton \(\mathcal {A}\) is deterministic when \(|\delta (q,a)| = 1\) for every \(q \in Q\) and \(a \in \varSigma \), and it is total (a.k.a. complete) when \(|\delta (q,a)| \ge 1\) for every \(q \in Q\) and \(a \in \varSigma \). We require quantitative automata to be total.
A run of \(\mathcal {A}\) on an infinite word \(w = a_0 a_1 \ldots \) is an infinite sequence \(\rho = q_0\xrightarrow []{a_0:x_0}q_1\xrightarrow []{a_1:x_1}q_2\ldots \) of transitions where \(q_0 = s\) and \((x_i, q_{i+1}) \in \delta (q_i, a_i)\) for each integer \(i \ge 0\). Since each transition has a weight, a run \(\rho = t_0 t_1 \ldots \) produces an infinite sequence \(\gamma (\rho ) = \gamma (t_0) \gamma (t_1) \ldots \) of weights. A value function \({\textsf{Val}}: \mathbb {Q} ^\omega \rightarrow \mathbb {R} \) maps infinite weight sequences to real values. A \({\textsf{Val}}\)-automaton is a quantitative automaton equipped with the value function \({\textsf{Val}}\), i.e., where each run \(\rho \) is mapped to the value obtained by applying \({\textsf{Val}}\) to its weight sequence \(\gamma (\rho )\). Given a \({\textsf{Val}}\)-automaton \(\mathcal {A}\), the value of an infinite word w is \(\mathcal {A}(w) = \sup \{{\textsf{Val}}(\gamma (\rho )) \;|\;\rho \text { is a run of } \mathcal {A}\text { on } w\}\). The top value of an automaton \(\mathcal {A}\) is \(\top _{\mathcal {A}} = \sup _{w \in \varSigma ^\omega } \mathcal {A}(w)\), and its bottom value is \(\bot _{\mathcal {A}} = \inf _{w \in \varSigma ^\omega } \mathcal {A}(w)\). We consider the below value functions over an infinite sequence \(x = x_0 x_1 \ldots \) of rational weights.
  • For a discount factor \(\displaystyle \lambda \in \mathbb {Q} \cap (0,1)\), \({\textsf{DSum}}_{\lambda }(x) = \sum _{i\ge 0} \lambda ^i x_i\)
The automaton \(\mathcal {A}\) in Figure 1 shows a \({\textsf{LimInfAvg}}\) automaton modeling the long-term average power consumption of a device with two operating modes.
Fig. 1.
A nondeterministic \({\textsf{LimInfAvg}}\)-automaton \(\mathcal {A}\) over the alphabet \(\varSigma = \{\textit{hi}, \textit{lo}\}\), modeling the power consumption of a device where starting with high-power mode is not reversible, its safety closure \(\mathcal {B}\), and its liveness component \(\mathcal {C}\) in a corresponding decomposition [7].
Quantitative Automata Problems We describe the standard decision problems of quantitative automata as well as the problems related to their safety and liveness. The complexity results are summarized in Table 1.
An automaton \(\mathcal {A}\) is nonempty (resp. universal) with respect to a threshold \(v \in \mathbb {Q} \) iff \(\mathcal {A}(w) \ge v\) for some (resp. all) \(w \in \varSigma ^\omega \). Nonemptiness (resp. universality) is closely related to computing an automaton’s top value (resp. bottom value): \(\mathcal {A}\) is nonempty (resp. universal) with respect to \(v \in \mathbb {Q} \) iff \(\top _{\mathcal {A}} \ge v\) (resp. \(\bot _{\mathcal {A}} \ge v\)). An automaton \(\mathcal {A}\) is included in (resp. equivalent to) an automaton \(\mathcal {B}\) iff \(\mathcal {A}(w) \le \mathcal {B}(w)\) (resp. \(\mathcal {A}(w) = \mathcal {B}(w)\)) for all \(w \in \varSigma ^\omega \). An automaton \(\mathcal {A}\) is constant iff there exists \(c \in \mathbb {R} \) such that \(\mathcal {A}(w) = c\) for all \(w \in \varSigma ^\omega \). This problem is closely related to safety and liveness of quantitative automata, as we discuss below.
Table 1.
The complexity of performing the operations on the left column with respect to nondeterministic automata with the value function on the top. The decidability results in the top five rows are shown in [13, 28] and undecidability in [12, 16, 27]. All the results in the bottom five rows are shown in [7]. All the operations are computable in PTime for deterministic automata.
 
\({\textsf{Inf}}\)
\({\textsf{Sup}}\), \({\textsf{LimInf}}, {\textsf{LimSup}}\)
\({\textsf{LimInfAvg}}, {\textsf{LimSupAvg}}\)
\({\textsf{DSum}}\)
Nonemptiness check
PTime
Universality check
PSpace-complete
Undecidable
Open
Inclusion check
PSpace-complete
Undecidable
Open
Equivalence check
PSpace-complete
Undecidable
Open
Top value
computation
PTime
Safety closure
construction
O(1)
PTime
O(1)
Safety-liveness
decomposition
O(1)
PTime
O(1)
Safety check
O(1)
PSpace-complete
ExpSpace; PSpace-hard
O(1)
Liveness check
PSpace-complete
Constant-function
check
PSpace-complete
Quantitative safety generalizes the boolean view by considering membership hypotheses in the form of lower bound queries: a property is safe iff every wrong membership hypothesis has a finite witness for the violation. Formally, a quantitative property \(\varPhi : \varSigma ^\omega \rightarrow \mathbb {D} \) is safe iff for every \(w \in \varSigma ^\omega \) and \(v \in \mathbb {D} \) with \(\varPhi (w) \not \ge v\), there exists a finite prefix \(u \prec w\) such that \(\sup _{w' \in \varSigma ^\omega } \varPhi (u w') \not \ge v\) [25]. Moreover, an automaton \(\mathcal {A}\) is safe iff the quantitative property defined by \(\mathcal {A}\) is safe. Given a quantitative property \(\varPhi : \varSigma ^\omega \rightarrow \mathbb {D} \), its safety closure is defined as \({ SafetyCl}(\varPhi )(w) = \inf _{u \prec w} \sup _{w' \in \varSigma ^\omega } \varPhi (u w')\) and is the least safety property that bounds \(\varPhi \) from above [25]. As expected, a property \(\varPhi \) is safe iff \(\varPhi (w) = { SafetyCl}(\varPhi )(w)\) for all \(w \in \varSigma ^\omega \), and we can compute the safety closure of an automaton \(\mathcal {A}\)—the automaton \({ SafetyCl}(\mathcal {A})\) that expresses the safety closure of the property defined by \(\mathcal {A}\). While this characterization is useful for some classes of quantitative automata, the equivalence problem is undecidable for \({\textsf{LimInfAvg}}\) and \({\textsf{LimSupAvg}}\) automata. For these, the safety problem is still decidable by a reduction to their constant-function problem [6].
Quantitative liveness extends the membership-based view: a quantitative property \(\varPhi : \varSigma ^\omega \rightarrow \mathbb {D} \) is live iff for every word (whose value is less than \(\top = \sup \mathbb {D} \)) there exists a wrong membership hypothesis without a finite witness for the violation. Formally, a quantitative property \(\varPhi : \varSigma ^\omega \rightarrow \mathbb {D} \) is live iff for all \(w \in \varSigma ^\omega \), if \(\varPhi (w) < \top \), then there exists a value \(v \in \mathbb {D} \) such that \(\varPhi (w) \not \ge v\) and for all prefixes \(u \prec w\), we have \(\sup _{w' \in \varSigma ^\omega } \varPhi (uw') \ge v\) [25]. Moreover, an automaton \(\mathcal {A}\) is live iff the quantitative property defined by \(\mathcal {A}\) is live. For the common classes of quantitative automata, deciding liveness reduces to the constant-function problem: an automaton \(\mathcal {A}\) is live iff \({ SafetyCl}(\mathcal {A})\) is constant [6]. Just like every boolean property is the intersection of its safety closure and a liveness property, every quantitative property is the pointwise minimum of its safety closure and a liveness property [25]. Recently, it was proved that all the common classes of automata can be decomposed into its safety closure and a liveness property [7]. Consider the automaton \(\mathcal {A}\), its safety closure \(\mathcal {B}\), and its liveness part \(\mathcal {C}\) as defined in Figure 1. In \(\mathcal {B}\), each strongly connected component (SCC) of \(\mathcal {A}\) is assigned the highest value achievable within the component, representing the greatest among the lower bound hypotheses that cannot be refuted by any finite prefix. The liveness part \(\mathcal {C}\) consists of three components: the upper part is a copy of \(\mathcal {A}\) (ensuring \(\mathcal {C}\) can have runs with the same value as \(\mathcal {A}\)); the middle part contains a \(\top _{\mathcal {A}}\)-weighted copy of the highest-valued cycle in each SCC (enabling \(\mathcal {C}\) to achieve high-valued runs when \(\mathcal {A}\) and \(\mathcal {B}\) agree); and the lower part includes a sink state looping with the lowest weight of \(\mathcal {A}\) (allowing \(\mathcal {C}\) to “escape” the middle part and realize a value using the upper part).
Fig. 2.
Reductions of quantitative automata problems in QuAK. The subscript b stands for basic (i.e., \({\textsf{Val}}\in \{{\textsf{Inf}}, {\textsf{Sup}}, {\textsf{LimInf}}, {\textsf{LimSup}}\}\)), la for limit-average (i.e., \({\textsf{Val}}\in \{{\textsf{LimInfAvg}}, {\textsf{LimSupAvg}}\}\)), d for deterministic, and nd for nondeterministic. For example, checking safety of limit-average automata (safety\(_\textit{la}\)) reduces to their constant-function problem, which reduces to universality of \({\textsf{LimInf}}\) automata.

3 QuAK Overview and Usage

QuAK is written in C++ using the standard library, and the source code is available online [10]. It can be used both as a C++ library and a stand-alone tool through the command-line interface – see our project repository for instructions. For \({\textsf{Inf}}\), \({\textsf{Sup}}\), \({\textsf{LimInf}}\), \({\textsf{LimSup}}\), \({\textsf{LimInfAvg}}\), and \({\textsf{LimSupAvg}}\) automata, QuAK implements the operations listed in Table 1 and a monitoring procedure where the monitor maintains the maximal and minimal possible values or a running average. The problems handled in QuAK reduce to either the inclusion problem or the top value computation, as shown in Figure 2. For the details of these reductions, we refer the reader to [7, 11, 13].
We improve over QuAK’s initial version [11] in two ways. First, a safety-liveness decomposition for nondeterministic automata is implemented, following a new result that provides a decomposition for nondeterministic automata with prefix-independent value functions, namely, \({\textsf{LimInf}}\), \({\textsf{LimSup}}\), \({\textsf{LimInfAvg}}\), and \({\textsf{LimSupAvg}}\) automata [7, Thm. 9.5]. Second, the inclusion-checking and the top-value computation algorithms are extended with an option to return a witness (for negative instance of inclusion and all instances of top value). Since all other problems reduce to these two (see Figure 2), the ability to generate witnesses makes QuAK more informative for analyzing quantitative automata. Inclusion checking, a central component of QuAK, is implemented using an antichain-based algorithm, extending FORKLIFT for Büchi automata [20], with details and performance benefits discussed in [11]. As this algorithm systematically searches for counterexamples, it inherently supports witness construction for negative instances. Top value computation is based on graph-theoretic algorithms [13], with witness generation achieved via backtracking pointers. These improvements, along with other features of QuAK, were validated through unit testing, random testing, and cross-validation with existing implementations.
QuAK reads and constructs automata from text files. Each automaton is represented as a list of transitions of the format a : v, q -> p which encodes a transition from state q to state p with letter a and weight v. The initial state of the input automaton is the source state of the first transition in its text file.
Recall the nondeterministic limit-average automaton \(\mathcal {A}\) and its safety-liveness decomposition from Figure 1. The first three lines of the code snippet in Figure 3 construct the automata \(\mathcal {A}\), \(\mathcal {B}\), and \(\mathcal {C}\) as presented in Figure 1. The nonemptiness check returns false, and witEmpt points to an array storing \(u = \textit{hi}\) and \(v = \textit{hi}\) as \(\top _{\mathcal {A}} = \mathcal {A}(\textit{hi}^\omega ) = 6\). Similarly, the safety check returns false and witSafe points to an array storing \(u = v = \textit{lo}\) as \(\mathcal {B}(\textit{lo}^\omega ) = 4\) and \(\mathcal {A}(\textit{lo}^\omega ) = 2\).
Fig. 3.
An example usage of QuAK as a C++ library. The functions isNonEmpty and isSafe now take an additional (optional) parameter for storing the stem and the period of the ultimately periodic word witnessing the algorithms’ outputs.

4 Conclusion

We presented an improved version of QuAK, our software tool for automating quantitative automata analysis, which extends the functionality introduced in [11]. Future work aims to improve the tool’s scalability and applicability while exploring more efficient verification methods. One promising avenue is the development of symbolic approaches to efficiently manage large state spaces. Another key direction involves extending the tool to support additional formalisms, such as various types of discounted-sum automata [4], mean-payoff automaton expressions [12], and nested quantitative automata [14]. In parallel with these efforts, developing novel verification methods specifically tailored to the safety fragments of expressive quantitative formalisms presents an exciting research direction.
Open Access This chapter is licensed under the terms of the Creative Commons Attribution 4.0 International License (http://​creativecommons.​org/​licenses/​by/​4.​0/​), which permits use, sharing, adaptation, distribution and reproduction in any medium or format, as long as you give appropriate credit to the original author(s) and the source, provide a link to the Creative Commons license and indicate if changes were made.
The images or other third party material in this chapter are included in the chapter's Creative Commons license, unless indicated otherwise in a credit line to the material. If material is not included in the chapter's Creative Commons license and your intended use is not permitted by statutory regulation or exceeds the permitted use, you will need to obtain permission directly from the copyright holder.
Literatur
3.
Zurück zum Zitat Annpureddy, Y., Liu, C., Fainekos, G., Sankaranarayanan, S.: S-taliro: A tool for temporal logic falsification for hybrid systems. In: Abdulla, P.A., Leino, K.R.M. (eds.) Tools and Algorithms for the Construction and Analysis of Systems - 17th International Conference, TACAS 2011, Held as Part of the Joint European Conferences on Theory and Practice of Software, ETAPS 2011, Saarbrücken, Germany, March 26-April 3, 2011. Proceedings. Lecture Notes in Computer Science, vol. 6605, pp. 254–257. Springer (2011). https://doi.org/10.1007/978-3-642-19835-9_21 Annpureddy, Y., Liu, C., Fainekos, G., Sankaranarayanan, S.: S-taliro: A tool for temporal logic falsification for hybrid systems. In: Abdulla, P.A., Leino, K.R.M. (eds.) Tools and Algorithms for the Construction and Analysis of Systems - 17th International Conference, TACAS 2011, Held as Part of the Joint European Conferences on Theory and Practice of Software, ETAPS 2011, Saarbrücken, Germany, March 26-April 3, 2011. Proceedings. Lecture Notes in Computer Science, vol. 6605, pp. 254–257. Springer (2011). https://​doi.​org/​10.​1007/​978-3-642-19835-9_​21
4.
Zurück zum Zitat Boker, U.: Discounted-sum automata with real-valued discount factors. In: Sobocinski, P., Lago, U.D., Esparza, J. (eds.) Proceedings of the 39th Annual ACM/IEEE Symposium on Logic in Computer Science, LICS 2024, Tallinn, Estonia, July 8-11, 2024. pp. 15:1–15:14. ACM (2024). https://doi.org/10.1145/3661814.3662090 Boker, U.: Discounted-sum automata with real-valued discount factors. In: Sobocinski, P., Lago, U.D., Esparza, J. (eds.) Proceedings of the 39th Annual ACM/IEEE Symposium on Logic in Computer Science, LICS 2024, Tallinn, Estonia, July 8-11, 2024. pp. 15:1–15:14. ACM (2024). https://​doi.​org/​10.​1145/​3661814.​3662090
6.
Zurück zum Zitat Boker, U., Henzinger, T.A., Mazzocchi, N., Saraç, N.E.: Safety and liveness of quantitative automata. In: Pérez, G.A., Raskin, J. (eds.) 34th International Conference on Concurrency Theory, CONCUR 2023, September 18-23, 2023, Antwerp, Belgium. LIPIcs, vol. 279, pp. 17:1–17:18. Schloss Dagstuhl - Leibniz-Zentrum für Informatik (2023). https://doi.org/10.4230/LIPICS.CONCUR.2023.17 Boker, U., Henzinger, T.A., Mazzocchi, N., Saraç, N.E.: Safety and liveness of quantitative automata. In: Pérez, G.A., Raskin, J. (eds.) 34th International Conference on Concurrency Theory, CONCUR 2023, September 18-23, 2023, Antwerp, Belgium. LIPIcs, vol. 279, pp. 17:1–17:18. Schloss Dagstuhl - Leibniz-Zentrum für Informatik (2023). https://​doi.​org/​10.​4230/​LIPICS.​CONCUR.​2023.​17
8.
Zurück zum Zitat Boker, U., Henzinger, T.A., Otop, J.: The target discounted-sum problem. In: 30th Annual ACM/IEEE Symposium on Logic in Computer Science, LICS 2015, Kyoto, Japan, July 6-10, 2015. pp. 750–761. IEEE Computer Society (2015). https://doi.org/10.1109/LICS.2015.74 Boker, U., Henzinger, T.A., Otop, J.: The target discounted-sum problem. In: 30th Annual ACM/IEEE Symposium on Logic in Computer Science, LICS 2015, Kyoto, Japan, July 6-10, 2015. pp. 750–761. IEEE Computer Society (2015). https://​doi.​org/​10.​1109/​LICS.​2015.​74
9.
Zurück zum Zitat Bruns, G., Godefroid, P.: Model checking partial state spaces with 3-valued temporal logics. In: Halbwachs, N., Peled, D.A. (eds.) Computer Aided Verification, 11th International Conference, CAV ’99, Trento, Italy, July 6-10, 1999, Proceedings. Lecture Notes in Computer Science, vol. 1633, pp. 274–287. Springer (1999). https://doi.org/10.1007/3-540-48683-6_25 Bruns, G., Godefroid, P.: Model checking partial state spaces with 3-valued temporal logics. In: Halbwachs, N., Peled, D.A. (eds.) Computer Aided Verification, 11th International Conference, CAV ’99, Trento, Italy, July 6-10, 1999, Proceedings. Lecture Notes in Computer Science, vol. 1633, pp. 274–287. Springer (1999). https://​doi.​org/​10.​1007/​3-540-48683-6_​25
12.
Zurück zum Zitat Chatterjee, K., Doyen, L., Edelsbrunner, H., Henzinger, T.A., Rannou, P.: Mean-payoff automaton expressions. In: Gastin, P., Laroussinie, F. (eds.) CONCUR 2010 - Concurrency Theory, 21th International Conference, CONCUR 2010, Paris, France, August 31-September 3, 2010. Proceedings. Lecture Notes in Computer Science, vol. 6269, pp. 269–283. Springer (2010). https://doi.org/10.1007/978-3-642-15375-4_19 Chatterjee, K., Doyen, L., Edelsbrunner, H., Henzinger, T.A., Rannou, P.: Mean-payoff automaton expressions. In: Gastin, P., Laroussinie, F. (eds.) CONCUR 2010 - Concurrency Theory, 21th International Conference, CONCUR 2010, Paris, France, August 31-September 3, 2010. Proceedings. Lecture Notes in Computer Science, vol. 6269, pp. 269–283. Springer (2010). https://​doi.​org/​10.​1007/​978-3-642-15375-4_​19
15.
Zurück zum Zitat Chechik, M., Gurfinkel, A., Devereux, B.: chi-chek: A multi-valued model-checker. In: Brinksma, E., Larsen, K.G. (eds.) Computer Aided Verification, 14th International Conference, CAV 2002,Copenhagen, Denmark, July 27-31, 2002, Proceedings. Lecture Notes in Computer Science, vol. 2404, pp. 505–509. Springer (2002). https://doi.org/10.1007/3-540-45657-0_41 Chechik, M., Gurfinkel, A., Devereux, B.: chi-chek: A multi-valued model-checker. In: Brinksma, E., Larsen, K.G. (eds.) Computer Aided Verification, 14th International Conference, CAV 2002,Copenhagen, Denmark, July 27-31, 2002, Proceedings. Lecture Notes in Computer Science, vol. 2404, pp. 505–509. Springer (2002). https://​doi.​org/​10.​1007/​3-540-45657-0_​41
16.
Zurück zum Zitat Degorre, A., Doyen, L., Gentilini, R., Raskin, J., Torunczyk, S.: Energy and mean-payoff games with imperfect information. In: Dawar, A., Veith, H. (eds.) Computer Science Logic, 24th International Workshop, CSL 2010, 19th Annual Conference of the EACSL, Brno, Czech Republic, August 23-27, 2010. Proceedings. Lecture Notes in Computer Science, vol. 6247, pp. 260–274. Springer (2010). https://doi.org/10.1007/978-3-642-15205-4_22 Degorre, A., Doyen, L., Gentilini, R., Raskin, J., Torunczyk, S.: Energy and mean-payoff games with imperfect information. In: Dawar, A., Veith, H. (eds.) Computer Science Logic, 24th International Workshop, CSL 2010, 19th Annual Conference of the EACSL, Brno, Czech Republic, August 23-27, 2010. Proceedings. Lecture Notes in Computer Science, vol. 6247, pp. 260–274. Springer (2010). https://​doi.​org/​10.​1007/​978-3-642-15205-4_​22
18.
Zurück zum Zitat Demaille, A., Duret-Lutz, A., Lombardy, S., Sakarovitch, J.: Implementation concepts in vaucanson 2. In: Konstantinidis, S. (ed.) Implementation and Application of Automata - 18th International Conference, CIAA 2013, Halifax, NS, Canada, July 16-19, 2013. Proceedings. Lecture Notes in Computer Science, vol. 7982, pp. 122–133. Springer (2013). https://doi.org/10.1007/978-3-642-39274-0_12 Demaille, A., Duret-Lutz, A., Lombardy, S., Sakarovitch, J.: Implementation concepts in vaucanson 2. In: Konstantinidis, S. (ed.) Implementation and Application of Automata - 18th International Conference, CIAA 2013, Halifax, NS, Canada, July 16-19, 2013. Proceedings. Lecture Notes in Computer Science, vol. 7982, pp. 122–133. Springer (2013). https://​doi.​org/​10.​1007/​978-3-642-39274-0_​12
19.
Zurück zum Zitat Donzé, A.: Breach, A toolbox for verification and parameter synthesis of hybrid systems. In: Touili, T., Cook, B., Jackson, P.B. (eds.) Computer Aided Verification, 22nd International Conference, CAV 2010, Edinburgh, UK, July 15-19, 2010. Proceedings. Lecture Notes in Computer Science, vol. 6174, pp. 167–170. Springer (2010). https://doi.org/10.1007/978-3-642-14295-6_17 Donzé, A.: Breach, A toolbox for verification and parameter synthesis of hybrid systems. In: Touili, T., Cook, B., Jackson, P.B. (eds.) Computer Aided Verification, 22nd International Conference, CAV 2010, Edinburgh, UK, July 15-19, 2010. Proceedings. Lecture Notes in Computer Science, vol. 6174, pp. 167–170. Springer (2010). https://​doi.​org/​10.​1007/​978-3-642-14295-6_​17
20.
Zurück zum Zitat Doveri, K., Ganty, P., Mazzocchi, N.: Forq-based language inclusion formal testing. In: Shoham, S., Vizel, Y. (eds.) Computer Aided Verification - 34th International Conference, CAV 2022, Haifa, Israel, August 7-10, 2022, Proceedings, Part II. Lecture Notes in Computer Science, vol. 13372, pp. 109–129. Springer (2022). https://doi.org/10.1007/978-3-031-13188-2_6 Doveri, K., Ganty, P., Mazzocchi, N.: Forq-based language inclusion formal testing. In: Shoham, S., Vizel, Y. (eds.) Computer Aided Verification - 34th International Conference, CAV 2022, Haifa, Israel, August 7-10, 2022, Proceedings, Part II. Lecture Notes in Computer Science, vol. 13372, pp. 109–129. Springer (2022). https://​doi.​org/​10.​1007/​978-3-031-13188-2_​6
23.
Zurück zum Zitat Henzinger, T.A., Ho, P.: HYTECH: the cornell hybrid technology tool. In: Antsaklis, P.J., Kohn, W., Nerode, A., Sastry, S. (eds.) Hybrid Systems II, Proceedings of the Third International Workshop on Hybrid Systems, Ithaca, NY, USA, October 1994. Lecture Notes in Computer Science, vol. 999, pp. 265–293. Springer (1994). https://doi.org/10.1007/3-540-60472-3_14 Henzinger, T.A., Ho, P.: HYTECH: the cornell hybrid technology tool. In: Antsaklis, P.J., Kohn, W., Nerode, A., Sastry, S. (eds.) Hybrid Systems II, Proceedings of the Third International Workshop on Hybrid Systems, Ithaca, NY, USA, October 1994. Lecture Notes in Computer Science, vol. 999, pp. 265–293. Springer (1994). https://​doi.​org/​10.​1007/​3-540-60472-3_​14
24.
Zurück zum Zitat Henzinger, T.A., Mazzocchi, N., Saraç, N.E.: Abstract monitors for quantitative specifications. In: Dang, T., Stolz, V. (eds.) Runtime Verification - 22nd International Conference, RV 2022, Tbilisi, Georgia, September 28-30, 2022, Proceedings. Lecture Notes in Computer Science, vol. 13498, pp. 200–220. Springer (2022). https://doi.org/10.1007/978-3-031-17196-3_11 Henzinger, T.A., Mazzocchi, N., Saraç, N.E.: Abstract monitors for quantitative specifications. In: Dang, T., Stolz, V. (eds.) Runtime Verification - 22nd International Conference, RV 2022, Tbilisi, Georgia, September 28-30, 2022, Proceedings. Lecture Notes in Computer Science, vol. 13498, pp. 200–220. Springer (2022). https://​doi.​org/​10.​1007/​978-3-031-17196-3_​11
25.
Zurück zum Zitat Henzinger, T.A., Mazzocchi, N., Saraç, N.E.: Quantitative safety and liveness. In: Kupferman, O., Sobocinski, P. (eds.) Foundations of Software Science and Computation Structures - 26th International Conference, FoSSaCS 2023, Held as Part of the European Joint Conferences on Theory and Practice of Software, ETAPS 2023, Paris, France, April 22-27, 2023, Proceedings. Lecture Notes in Computer Science, vol. 13992, pp. 349–370. Springer (2023). https://doi.org/10.1007/978-3-031-30829-1_17 Henzinger, T.A., Mazzocchi, N., Saraç, N.E.: Quantitative safety and liveness. In: Kupferman, O., Sobocinski, P. (eds.) Foundations of Software Science and Computation Structures - 26th International Conference, FoSSaCS 2023, Held as Part of the European Joint Conferences on Theory and Practice of Software, ETAPS 2023, Paris, France, April 22-27, 2023, Proceedings. Lecture Notes in Computer Science, vol. 13992, pp. 349–370. Springer (2023). https://​doi.​org/​10.​1007/​978-3-031-30829-1_​17
28.
Zurück zum Zitat Kupferman, O., Lustig, Y.: Lattice automata. In: Cook, B., Podelski, A. (eds.) Verification, Model Checking, and Abstract Interpretation, 8th International Conference, VMCAI 2007, Nice, France, January 14-16, 2007, Proceedings. Lecture Notes in Computer Science, vol. 4349, pp. 199–213. Springer (2007). https://doi.org/10.1007/978-3-540-69738-1_14 Kupferman, O., Lustig, Y.: Lattice automata. In: Cook, B., Podelski, A. (eds.) Verification, Model Checking, and Abstract Interpretation, 8th International Conference, VMCAI 2007, Nice, France, January 14-16, 2007, Proceedings. Lecture Notes in Computer Science, vol. 4349, pp. 199–213. Springer (2007). https://​doi.​org/​10.​1007/​978-3-540-69738-1_​14
29.
Zurück zum Zitat Kwiatkowska, M.Z., Norman, G., Parker, D.: PRISM: probabilistic symbolic model checker. In: Field, T., Harrison, P.G., Bradley, J.T., Harder, U. (eds.) Computer Performance Evaluation, Modelling Techniques and Tools 12th International Conference, TOOLS 2002, London, UK, April 14-17, 2002, Proceedings. Lecture Notes in Computer Science, vol. 2324, pp. 200–204. Springer (2002). https://doi.org/10.1007/3-540-46029-2_13 Kwiatkowska, M.Z., Norman, G., Parker, D.: PRISM: probabilistic symbolic model checker. In: Field, T., Harrison, P.G., Bradley, J.T., Harder, U. (eds.) Computer Performance Evaluation, Modelling Techniques and Tools 12th International Conference, TOOLS 2002, London, UK, April 14-17, 2002, Proceedings. Lecture Notes in Computer Science, vol. 2324, pp. 200–204. Springer (2002). https://​doi.​org/​10.​1007/​3-540-46029-2_​13
31.
Zurück zum Zitat Lombardy, S., Marsault, V., Sakarovitch, J.: Awali, a library for weighted automata and transducers (version 2.3) (2022), software available at http://vaucanson-project.org/Awali/2.3/ Lombardy, S., Marsault, V., Sakarovitch, J.: Awali, a library for weighted automata and transducers (version 2.3) (2022), software available at http://​vaucanson-project.​org/​Awali/​2.​3/​
32.
Zurück zum Zitat Lombardy, S., Poss, R., Régis-Gianas, Y., Sakarovitch, J.: Introducing VAUCANSON. In: Ibarra, O.H., Dang, Z. (eds.) Implementation and Application of Automata, 8th International Conference, CIAA 2003, Santa Barbara, California, USA, July 16-18, 2003, Proceedings. Lecture Notes in Computer Science, vol. 2759, pp. 96–107. Springer (2003). https://doi.org/10.1007/3-540-45089-0_10 Lombardy, S., Poss, R., Régis-Gianas, Y., Sakarovitch, J.: Introducing VAUCANSON. In: Ibarra, O.H., Dang, Z. (eds.) Implementation and Application of Automata, 8th International Conference, CIAA 2003, Santa Barbara, California, USA, July 16-18, 2003, Proceedings. Lecture Notes in Computer Science, vol. 2759, pp. 96–107. Springer (2003). https://​doi.​org/​10.​1007/​3-540-45089-0_​10
33.
Zurück zum Zitat Maler, O., Nickovic, D.: Monitoring temporal properties of continuous signals. In: Lakhnech, Y., Yovine, S. (eds.) Formal Techniques, Modelling and Analysis of Timed and Fault-Tolerant Systems, Joint International Conferences on Formal Modelling and Analysis of Timed Systems, FORMATS 2004 and Formal Techniques in Real-Time and Fault-Tolerant Systems, FTRTFT 2004, Grenoble, France, September 22-24, 2004, Proceedings. Lecture Notes in Computer Science, vol. 3253, pp. 152–166. Springer (2004). https://doi.org/10.1007/978-3-540-30206-3_12 Maler, O., Nickovic, D.: Monitoring temporal properties of continuous signals. In: Lakhnech, Y., Yovine, S. (eds.) Formal Techniques, Modelling and Analysis of Timed and Fault-Tolerant Systems, Joint International Conferences on Formal Modelling and Analysis of Timed Systems, FORMATS 2004 and Formal Techniques in Real-Time and Fault-Tolerant Systems, FTRTFT 2004, Grenoble, France, September 22-24, 2004, Proceedings. Lecture Notes in Computer Science, vol. 3253, pp. 152–166. Springer (2004). https://​doi.​org/​10.​1007/​978-3-540-30206-3_​12
34.
Zurück zum Zitat Michaliszyn, J., Otop, J.: Approximate learning of limit-average automata. In: Fokkink, W.J., van Glabbeek, R. (eds.) 30th International Conference on Concurrency Theory, CONCUR 2019, August 27-30, 2019, Amsterdam, the Netherlands. LIPIcs, vol. 140, pp. 17:1–17:16. Schloss Dagstuhl - Leibniz-Zentrum für Informatik (2019). https://doi.org/10.4230/LIPICS.CONCUR.2019.17 Michaliszyn, J., Otop, J.: Approximate learning of limit-average automata. In: Fokkink, W.J., van Glabbeek, R. (eds.) 30th International Conference on Concurrency Theory, CONCUR 2019, August 27-30, 2019, Amsterdam, the Netherlands. LIPIcs, vol. 140, pp. 17:1–17:16. Schloss Dagstuhl - Leibniz-Zentrum für Informatik (2019). https://​doi.​org/​10.​4230/​LIPICS.​CONCUR.​2019.​17
35.
Zurück zum Zitat Michaliszyn, J., Otop, J.: Minimization of limit-average automata. In: Zhou, Z. (ed.) Proceedings of the Thirtieth International Joint Conference on Artificial Intelligence, IJCAI 2021, Virtual Event / Montreal, Canada, 19-27 August 2021. pp. 2819–2825. ijcai.org (2021). https://doi.org/10.24963/IJCAI.2021/388 Michaliszyn, J., Otop, J.: Minimization of limit-average automata. In: Zhou, Z. (ed.) Proceedings of the Thirtieth International Joint Conference on Artificial Intelligence, IJCAI 2021, Virtual Event / Montreal, Canada, 19-27 August 2021. pp. 2819–2825. ijcai.org (2021). https://​doi.​org/​10.​24963/​IJCAI.​2021/​388
Metadaten
Titel
Automating the Analysis of Quantitative Automata with QuAK
verfasst von
Marek Chalupa
Thomas A. Henzinger
Nicolas Mazzocchi
N. Ege Saraç
Copyright-Jahr
2025
DOI
https://doi.org/10.1007/978-3-031-90643-5_16