summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraristote <quentin.aristote@irif.fr>2025-08-01 12:44:41 +0200
committeraristote <quentin.aristote@irif.fr>2025-08-01 12:44:41 +0200
commit7132af9e3a7f84cebe287b3174f2d4a9c25252ca (patch)
tree7d7ef9c12a37289725f0773049f50f2c3717c629
parentac54a9c2e1f1dd6abd56be9f9a02c7741ab9b731 (diff)
parent152a5c4697c257b7eeb91ad1a3dca74c44973f91 (diff)
Merge branch 'new-pub-format'
-rw-r--r--default.nix2
-rw-r--r--experience/2019-06_lis.nix4
-rw-r--r--experience/2020-03_nii.nix2
-rw-r--r--experience/2022-03_irif.nix2
-rw-r--r--experience/2022-09_tweag.nix2
-rw-r--r--experience/2023-03_irif.nix4
-rw-r--r--publications/default.nix17
-rw-r--r--publications/export.nix20
-rw-r--r--publications/publications.json13
-rw-r--r--research/conferences.json (renamed from publications/publications_selected.json)0
-rw-r--r--research/default.nix20
-rw-r--r--research/export.nix23
-rw-r--r--research/journals.json3
-rw-r--r--research/miscellaneous.json5
-rw-r--r--research/reports.json5
-rw-r--r--research/talks.json19
16 files changed, 83 insertions, 58 deletions
diff --git a/default.nix b/default.nix
index 11fd374..5ee2b61 100644
--- a/default.nix
+++ b/default.nix
@@ -18,7 +18,7 @@
in {
inherit files;
basics = make ./basics {};
- publications = make ./publications {};
+ research = make ./research {};
experience = make ./experience {};
languages = make ./languages {};
education = make ./education {};
diff --git a/experience/2019-06_lis.nix b/experience/2019-06_lis.nix
index 6b2612f..456e6dc 100644
--- a/experience/2019-06_lis.nix
+++ b/experience/2019-06_lis.nix
@@ -27,12 +27,12 @@
{
name = "internship report";
id = "aristoteMarcheQuantiqueReseau2019";
- type = "Publications";
+ type = "Writings";
}
{
name = "paper";
id = "aristoteDynamicalTriangulationInduced2020";
- type = "Publications";
+ type = "Writings";
}
];
description = "Developed a quantum walker model whose density changes its own environment.";
diff --git a/experience/2020-03_nii.nix b/experience/2020-03_nii.nix
index 68357fa..0324f3d 100644
--- a/experience/2020-03_nii.nix
+++ b/experience/2020-03_nii.nix
@@ -31,7 +31,7 @@
{
name = "internship report";
id = "aristoteFibrationalFrameworkNested2020";
- type = "Publications";
+ type = "Writings";
}
];
description = "Generalized a greatest-fixed-points- and safety-games-based fibrational framework for bisimulations to nested fixed points and parity games.";
diff --git a/experience/2022-03_irif.nix b/experience/2022-03_irif.nix
index 531c0d8..ecffaae 100644
--- a/experience/2022-03_irif.nix
+++ b/experience/2022-03_irif.nix
@@ -27,7 +27,7 @@
{
name = "internship report";
id = "aristoteApplicationsCategoricalFramework2022";
- type = "Publications";
+ type = "Writings";
}
];
description = "Generalized a categorical framework for the minimization and active learning of transition systems and instanciated it to develop new such algorithms.";
diff --git a/experience/2022-09_tweag.nix b/experience/2022-09_tweag.nix
index 0836be3..bc7c000 100644
--- a/experience/2022-09_tweag.nix
+++ b/experience/2022-09_tweag.nix
@@ -27,7 +27,7 @@
{
name = "blog post";
id = "aristoteSmtlibbackendsFasterSMTLIBbased2023";
- type = "Publications";
+ type = "Writings";
}
{
name = "library";
diff --git a/experience/2023-03_irif.nix b/experience/2023-03_irif.nix
index 9e0f0ba..b3aad75 100644
--- a/experience/2023-03_irif.nix
+++ b/experience/2023-03_irif.nix
@@ -25,8 +25,8 @@
];
assets = [
{
- type = "Publications";
- id = "aristoteFunctorialApproachMinimizing2023a";
+ type = "Writings";
+ id = "aristoteActiveLearningDeterministic2024";
name = "paper";
}
];
diff --git a/publications/default.nix b/publications/default.nix
deleted file mode 100644
index d41555c..0000000
--- a/publications/default.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- pkgs,
- lib,
- ...
-}: let
- importPublications = builtins.map (publication:
- with publication;
- publication
- // {
- year = with builtins; toString (head (head issued.date-parts));
- url = URL;
- });
-in {
- selected = importPublications (lib.importJSON ./publications_selected.json);
- all = importPublications (lib.importJSON ./publications.json);
- files = pkgs.callPackage ./export.nix {};
-}
diff --git a/publications/export.nix b/publications/export.nix
deleted file mode 100644
index 6a6c42d..0000000
--- a/publications/export.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- jq,
- pandoc,
- refsJSON ? ./publications.json,
- runCommand,
-}:
-runCommand "publications" {buildInputs = [jq pandoc];} ''
- mkdir -p "$out"/{biblatex,bibtex,csljson}
- cd "$out"
-
- jq --compact-output ".[]" ${refsJSON} | while read ref
- do
- id=$(echo "$ref" | jq --raw-output '.id')
- echo $id
- echo "$ref" > "csljson/$id"
- cat csljson/$id
- pandoc --from=csljson --to=biblatex --output "biblatex/$id" <<< "[ $ref ]"
- pandoc --from=csljson --to=bibtex --output "bibtex/$id" <<< "[ $ref ]"
- done
-''
diff --git a/publications/publications.json b/publications/publications.json
deleted file mode 100644
index a6b171f..0000000
--- a/publications/publications.json
+++ /dev/null
@@ -1,13 +0,0 @@
-[
- {"id":"aristoteActiveLearningDeterministic2024","abstract":"We study monoidal transducers, transition systems arising as deterministic automata whose transitions also produce outputs in an arbitrary monoid, for instance allowing outputs to commute or to cancel out. We use the categorical framework for minimization and learning of Colcombet, Petrişan and Stabile to recover the notion of minimal transducer recognizing a language, and give necessary and sufficient conditions on the output monoid for this minimal transducer to exist and be unique (up to isomorphism). The categorical framework then provides an abstract algorithm for learning it using membership and equivalence queries, and we discuss practical aspects of this algorithm’s implementation.","accessed":{"date-parts":[["2024",2,7]]},"author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteActiveLearningDeterministic2024","collection-title":"Leibniz International Proceedings in Informatics (LIPIcs)","container-title":"32nd EACSL Annual Conference on Computer Science Logic (CSL 2024)","DOI":"10.4230/LIPIcs.CSL.2024.11","event-place":"Dagstuhl, Germany","event-title":"Computer Science Logic (CSL)","ISBN":"978-3-95977-310-2","ISSN":"1868-8969","issued":{"date-parts":[["2024"]]},"language":"en","note":"Helena Rasiowa award for the Best Student Paper","page":"11:1-11:20","publisher":"Schloss-Dagstuhl - Leibniz Zentrum für Informatik","publisher-place":"Dagstuhl, Germany","title":"Active Learning of Deterministic Transducers with Outputs in Arbitrary Monoids","type":"paper-conference","URL":"https://drops.dagstuhl.de/entities/document/10.4230/LIPIcs.CSL.2024.11","volume":"288"},
- {"id":"aristoteActiveLearningUpwardClosed2025","accessed":{"date-parts":[["2025",7,29]]},"author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteActiveLearningUpwardClosed2025","collection-title":"Leibniz International Proceedings in Informatics (LIPIcs)","container-title":"11th Conference on Algebra and Coalgebra in Computer Science (CALCO 2025)","DOI":"10.4230/LIPIcs.CALCO.2025.16","editor":[{"family":"Cîrstea","given":"Corina"},{"family":"Knapp","given":"Alexander"}],"event-place":"Dagstuhl, Germany","event-title":"Conference on Algebra and Coalgebra in Computer Science (CALCO)","ISBN":"978-3-95977-383-6","ISSN":"1868-8969","issued":{"date-parts":[["2025"]]},"language":"en","page":"16:1–16:12","publisher":"Schloss Dagstuhl – Leibniz-Zentrum für Informatik","publisher-place":"Dagstuhl, Germany","source":"Dagstuhl Research Online Publication Server","title":"Active Learning of Upward-Closed Sets of Words","type":"paper-conference","URL":"https://drops.dagstuhl.de/entities/document/10.4230/LIPIcs.CALCO.2025.16","volume":"342"},
- {"id":"aristoteApplicationsCategoricalFramework2022","abstract":"M2 internship report. We extend Petrişan and Colcombet's categorical framework for automata minimization and learning with new categorical algorithms and apply it to various families of automata for which minimization and learning had not been studied previously. We focus on transducers whose output lie in arbitrary monoids, weighted automata on Dedekind domains and automata whose states are quasi-ordered. This last example links automata learning together with the Valk-Jantzen lemma, widely used in the theory of well-structured transition systems.","author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteApplicationsCategoricalFramework2022","issued":{"date-parts":[["2022",8,20]]},"language":"en","license":"All rights reserved","publisher":"École Normale Supérieure, PSL University","title":"Applications of a categorical framework for minimization and active learning of transition systems","type":"report","URL":"https://git.eleves.ens.fr/qaristote/m2-internship-report/uploads/2594114883f26d77c2b4f3731656351a/report.pdf"},
- {"id":"aristoteDynamicalTriangulationInduced2020","abstract":"We present the single-particle sector of a quantum cellular automaton, namely a quantum walk, on a simple dynamical triangulated 2-manifold. The triangulation is changed through Pachner moves, induced by the walker density itself, allowing the surface to transform into any topologically equivalent one. This model extends the quantum walk over triangular grid, introduced in a previous work, by one of the authors, whose space-time limit recovers the Dirac equation in (2+1)-dimensions. Numerical simulations show that the number of triangles and the local curvature grow as exp(a log(t) - bt²), where a and b parametrize the way geometry changes upon the local density of the walker, and that, in the long run, flatness emerges. Finally, we also prove that the global behavior of the walker, remains the same under spacetime random fluctuations.","accessed":{"date-parts":[["2020",8,17]]},"author":[{"family":"Aristote","given":"Quentin"},{"family":"Eon","given":"Nathanaël"},{"family":"Molfetta","given":"Giuseppe","non-dropping-particle":"di"}],"citation-key":"aristoteDynamicalTriangulationInduced2020","container-title":"Symmetry","DOI":"10.3390/sym12010128","ISSN":"2073-8994","issue":"1:128","issued":{"date-parts":[["2020",1]]},"language":"en","license":"http://creativecommons.org/licenses/by/3.0/","number":"1","publisher":"Multidisciplinary Digital Publishing Institute","title":"Dynamical Triangulation Induced by Quantum Walk","type":"article-journal","URL":"https://www.mdpi.com/2073-8994/12/1/128","volume":"12"},
- {"id":"aristoteFibrationalFrameworkNested2020","abstract":"M1 internship report. We extend a previous fibration- and coalgebra-based categorical framework for characterizing greatest fixed-points, e.g. bisimilarity-like notions, as winning positions in safety games. Our new framework thus characterizes nested alternating greatest and smallest fixed-points of a fibration- and coalgebra-based categorical operator as winning positions in parity games. This provides a new kind of parity games for the model checking of coalgebraic modal logic, but unfortunately we did not manage to instantiate more general notions of bisimulations such as fair and delayed bisimulations.","author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteFibrationalFrameworkNested2020","issued":{"date-parts":[["2020",8,28]]},"language":"en","license":"All rights reserved","title":"Fibrational Framework for Nested Alternating Fixed Points and (Bi)Simulation Notions for Büchi Automata","type":"report","URL":"https://git.eleves.ens.fr/qaristote/m1-internship-report/uploads/3431548a277eb5fc297d8e7d93d1e3ce/aristote_quentin_m1_internship_report.pdf"},
- {"id":"aristoteFunctorialApproachMinimizing2023","abstract":"We study monoidal transducers, transition systems arising as deterministic automata whose transitions also produce outputs in an arbitrary monoid, for instance allowing outputs to commute or to cancel out. We use the categorical framework for minimization and learning of Colcombet, Petrişan and Stabile to recover the notion of minimal transducer recognizing a language, and give necessary and sufficient conditions on the output monoid for this minimal transducer to exist and be unique (up to isomorphism). The categorical framework then provides an abstract algorithm for learning it using membership and equivalence queries, and we discuss practical aspects of this algorithm's implementation. We also extend the framework with a categorical algorithm for minimizing transition systems, whose instantiation retrieves the algorithm for minimizing monoidal transducers but also extends the class of output monoids for which this algorithm is valid.","accessed":{"date-parts":[["2023",7,27]]},"author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteFunctorialApproachMinimizing2023","issued":{"date-parts":[["2023",7,27]]},"language":"en","number":"04172251","publisher":"HAL","title":"Functorial approach to minimizing and learning deterministic transducers with outputs in arbitrary monoids","type":"article","URL":"https://hal.science/hal-04172251"},
- {"id":"aristoteLearningWeightedAutomata2025","abstract":"We develop a generic reduction procedure for active learning problems. Our approach is inspired by a recent polynomial-time reduction of the exact learning problem for weighted automata over integers to that for weighted automata over rationals (Buna-Marginean et al. 2024). Our procedure improves the efficiency of a category-theoretic automata learning algorithm, and poses new questions about the complexity of its implementation when instantiated to concrete categories. \n\nAs our second main contribution, we address these complexity aspects in the concrete setting of learning weighted automata over number rings, that is, rings of integers in an algebraic number field. Assuming a full representation of a number ring OK, we obtain an exact learning algorithm of OK-weighted automata that runs in polynomial time in the size of the target automaton, the logarithm of the length of the longest counterexample, the degree of the number field, and the logarithm of its discriminant. Our algorithm produces an automaton that has at most one more state than the minimal one, and we prove that doing better requires solving the principal ideal problem, for which the best currently known algorithm is in quantum polynomial time.","accessed":{"date-parts":[["2025",4,28]]},"author":[{"family":"Aristote","given":"Quentin"},{"family":"Gool","given":"Sam","dropping-particle":"van"},{"family":"Petrişan","given":"Daniela"},{"family":"Shirmohammadi","given":"Mahsa"}],"citation-key":"aristoteLearningWeightedAutomata2025","container-title":"LICS '25: Proceedings of the 40th Annual ACM/IEEE Symposium on Logic in Computer Science","event-place":"New York, NY, USA","event-title":"Logics in Computer Science (LICS)","issued":{"date-parts":[["2025"]]},"language":"en","publisher":"The Association for Computing Machinery","publisher-place":"New York, NY, USA","title":"Learning Weighted Automata over Number Rings, Concretely and Categorically","type":"paper-conference","URL":"https://hal.science/hal-05040143"},
- {"id":"aristoteMarcheQuantiqueReseau2019","abstract":"Rapport de stage de L3. On introduit un automate cellulaire quantique à une particule, un marcheur quantique, sur une variété triangulée de dimension 2. La triangulation change à travers des Pachner moves, induits eux-même par la densité du marcheur, permettant à la surface de se transformer en n'importe quelle autre surface qui lui est topologiquement équivalente. Ce modèle généralise le marcheur quantique sur un réseau triangulaire, introduit dans un article précédent par un des auteurs, et dont la limite en espace-temps retombe sur l'équation de Dirac en 2+1 dimensions.\nDes simulations numériques montrent que le nombre de triangles et que la courbure évoluent en exp(a log(t) - bt²), où a et b paramétrisent la façon dont la géométrie change selon la densité locale du marcheur, et que, sur le long terme, la surface redevient plate. Enfin, on montre aussi numériquement que le comportement global du marcheur reste le même sous l'influence de fluctuations spatio-temporelles aléatoires.","author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteMarcheQuantiqueReseau2019","issued":{"date-parts":[["2019",8,25]]},"language":"en","license":"All rights reserved","title":"Marche quantique sur un réseau triangulaire sujet à des Pachner moves","type":"report","URL":"https://git.eleves.ens.fr/qaristote/rapport-stage-l3/-/raw/b9f9cc78ad3eabe6508be70cc27dc9bf89d34755/rapport.pdf"},
- {"id":"aristoteMonotoneWeakDistributive2024","abstract":"Noticing the similarity between the monotone weak distributive laws combining two layers of nondeterminisms in sets and in compact Hausdorff spaces, we study whether the latter law can be obtained automatically as a weak lifting of the former. This holds partially, but does not generalize to other categories of algebras: we then characterize when exactly monotone weak distributive laws over powerset monads in categories of algebras exist, exhibiting a law combining probabilities and non-determinism in compact Hausdorff spaces and showing on the other hand that such laws do not exist in a lot of other cases.","accessed":{"date-parts":[["2024",11,4]]},"author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteMonotoneWeakDistributive2024","issued":{"date-parts":[["2024",10]]},"language":"en","title":"Monotone weak distributive laws over the lifted powerset monad in categories of algebras","type":"article","URL":"https://hal.science/hal-04712728v5"},
- {"id":"aristoteMonotoneWeakDistributive2025","abstract":"In both the category of sets and the category of compact Hausdorff spaces, there is a monotone weak distributive law that combines two layers of non-determinism. Noticing the similarity between these two laws, we study whether the latter can be obtained automatically as a weak lifting of the former. This holds partially, but does not generalize to other categories of algebras. We then characterize when exactly monotone weak distributive laws over powerset monads in categories of algebras exist, on the one hand exhibiting a law combining probabilities and non-determinism in compact Hausdorff spaces and showing on the other hand that such laws do not exist in a lot of other cases.","accessed":{"date-parts":[["2025",2,25]]},"author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteMonotoneWeakDistributive2025","collection-title":"Leibniz International Proceedings in Informatics (LIPIcs)","container-title":"42nd International Symposium on Theoretical Aspects of Computer Science (STACS 2025)","DOI":"10.4230/LIPIcs.STACS.2025.10","editor":[{"family":"Beyersdorff","given":"Olaf"},{"family":"Pilipczuk","given":"Michał"},{"family":"Pimentel","given":"Elaine"},{"family":"Thắng","given":"Nguyễn Kim"}],"event-place":"Dagstuhl, Germany","event-title":"Symposium on Theoretical Aspects of Computer Science (STACS)","ISBN":"978-3-95977-365-2","ISSN":"1868-8969","issued":{"date-parts":[["2025"]]},"language":"en","page":"10:1–10:20","publisher":"Schloss Dagstuhl – Leibniz-Zentrum für Informatik","publisher-place":"Dagstuhl, Germany","title":"Monotone Weak Distributive Laws over the Lifted Powerset Monad in Categories of Algebras","type":"paper-conference","URL":"https://drops.dagstuhl.de/entities/document/10.4230/LIPIcs.STACS.2025.10","volume":"327"},
- {"id":"aristoteSmtlibbackendsFasterSMTLIBbased2023","abstract":"Announcement of smtlib-backends, a Haskell library providing a generic interface for interacting with SMT solvers using SMT-LIB.","author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteSmtlibbackendsFasterSMTLIBbased2023","container-title":"Tweag Blog","issued":{"date-parts":[["2023",2,14]]},"language":"en","title":"smtlib-backends: faster SMT-LIB-based Haskell interface to SMT solvers","title-short":"smtlib-backends","type":"post-weblog","URL":"https://www.tweag.io/blog/2023-02-14-smtlib-backends"}
-]
diff --git a/publications/publications_selected.json b/research/conferences.json
index 6efb4c5..6efb4c5 100644
--- a/publications/publications_selected.json
+++ b/research/conferences.json
diff --git a/research/default.nix b/research/default.nix
new file mode 100644
index 0000000..8de25f8
--- /dev/null
+++ b/research/default.nix
@@ -0,0 +1,20 @@
+{
+ pkgs,
+ lib,
+ ...
+}: let
+ importPublications = builtins.map (publication:
+ with publication;
+ publication
+ // {
+ year = with builtins; toString (head (head issued.date-parts));
+ url = URL;
+ });
+in {
+ conferences = importPublications (lib.importJSON ./conferences.json);
+ journals = importPublications (lib.importJSON ./journals.json);
+ reports = importPublications (lib.importJSON ./reports.json);
+ misc = importPublications (lib.importJSON ./miscellaneous.json);
+ talks = importPublications (lib.importJSON ./talks.json);
+ files = pkgs.callPackage ./export.nix {refsJSON = lib.concatStringsSep " " [./conferences.json ./journals.json ./reports.json ./miscellaneous.json ./talks.json];};
+}
diff --git a/research/export.nix b/research/export.nix
new file mode 100644
index 0000000..b119054
--- /dev/null
+++ b/research/export.nix
@@ -0,0 +1,23 @@
+{
+ jq,
+ pandoc,
+ refsJSON,
+ runCommand,
+}:
+runCommand "publications" {buildInputs = [jq pandoc];} ''
+ mkdir -p "$out"/{biblatex,bibtex,csljson}
+ cd "$out"
+
+ for refs in ${refsJSON}
+ do
+ jq --compact-output ".[]" $refs | while read -r ref
+ do
+ id=$(echo "$ref" | jq --raw-output '.id')
+ echo $id
+ echo "$ref" > "csljson/$id"
+ cat csljson/$id
+ pandoc --from=csljson --to=biblatex --output "biblatex/$id" <<< "[ $ref ]"
+ pandoc --from=csljson --to=bibtex --output "bibtex/$id" <<< "[ $ref ]"
+ done
+ done
+''
diff --git a/research/journals.json b/research/journals.json
new file mode 100644
index 0000000..f8ddbe7
--- /dev/null
+++ b/research/journals.json
@@ -0,0 +1,3 @@
+[
+ {"id":"aristoteDynamicalTriangulationInduced2020","abstract":"We present the single-particle sector of a quantum cellular automaton, namely a quantum walk, on a simple dynamical triangulated 2-manifold. The triangulation is changed through Pachner moves, induced by the walker density itself, allowing the surface to transform into any topologically equivalent one. This model extends the quantum walk over triangular grid, introduced in a previous work, by one of the authors, whose space-time limit recovers the Dirac equation in (2+1)-dimensions. Numerical simulations show that the number of triangles and the local curvature grow as exp(a log(t) - bt²), where a and b parametrize the way geometry changes upon the local density of the walker, and that, in the long run, flatness emerges. Finally, we also prove that the global behavior of the walker, remains the same under spacetime random fluctuations.","accessed":{"date-parts":[["2020",8,17]]},"author":[{"family":"Aristote","given":"Quentin"},{"family":"Eon","given":"Nathanaël"},{"family":"Molfetta","given":"Giuseppe","non-dropping-particle":"di"}],"citation-key":"aristoteDynamicalTriangulationInduced2020","container-title":"Symmetry","DOI":"10.3390/sym12010128","ISSN":"2073-8994","issue":"1:128","issued":{"date-parts":[["2020",1]]},"language":"en","license":"http://creativecommons.org/licenses/by/3.0/","number":"1","publisher":"Multidisciplinary Digital Publishing Institute","title":"Dynamical Triangulation Induced by Quantum Walk","type":"article-journal","URL":"https://www.mdpi.com/2073-8994/12/1/128","volume":"12"}
+]
diff --git a/research/miscellaneous.json b/research/miscellaneous.json
new file mode 100644
index 0000000..c579095
--- /dev/null
+++ b/research/miscellaneous.json
@@ -0,0 +1,5 @@
+[
+ {"id":"aristoteFunctorialApproachMinimizing2023","abstract":"We study monoidal transducers, transition systems arising as deterministic automata whose transitions also produce outputs in an arbitrary monoid, for instance allowing outputs to commute or to cancel out. We use the categorical framework for minimization and learning of Colcombet, Petrişan and Stabile to recover the notion of minimal transducer recognizing a language, and give necessary and sufficient conditions on the output monoid for this minimal transducer to exist and be unique (up to isomorphism). The categorical framework then provides an abstract algorithm for learning it using membership and equivalence queries, and we discuss practical aspects of this algorithm's implementation. We also extend the framework with a categorical algorithm for minimizing transition systems, whose instantiation retrieves the algorithm for minimizing monoidal transducers but also extends the class of output monoids for which this algorithm is valid.","accessed":{"date-parts":[["2023",7,27]]},"author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteFunctorialApproachMinimizing2023","issued":{"date-parts":[["2023",7,27]]},"language":"en","number":"04172251","publisher":"HAL","title":"Functorial approach to minimizing and learning deterministic transducers with outputs in arbitrary monoids","type":"article","URL":"https://hal.science/hal-04172251"},
+ {"id":"aristoteMonotoneWeakDistributive2024","abstract":"Noticing the similarity between the monotone weak distributive laws combining two layers of nondeterminisms in sets and in compact Hausdorff spaces, we study whether the latter law can be obtained automatically as a weak lifting of the former. This holds partially, but does not generalize to other categories of algebras: we then characterize when exactly monotone weak distributive laws over powerset monads in categories of algebras exist, exhibiting a law combining probabilities and non-determinism in compact Hausdorff spaces and showing on the other hand that such laws do not exist in a lot of other cases.","accessed":{"date-parts":[["2024",11,4]]},"author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteMonotoneWeakDistributive2024","issued":{"date-parts":[["2024",10]]},"language":"en","title":"Monotone weak distributive laws over the lifted powerset monad in categories of algebras","type":"article","URL":"https://hal.science/hal-04712728v5"},
+ {"id":"aristoteSmtlibbackendsFasterSMTLIBbased2023","abstract":"Announcement of smtlib-backends, a Haskell library providing a generic interface for interacting with SMT solvers using SMT-LIB.","author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteSmtlibbackendsFasterSMTLIBbased2023","container-title":"Tweag Blog","issued":{"date-parts":[["2023",2,14]]},"language":"en","title":"smtlib-backends: faster SMT-LIB-based Haskell interface to SMT solvers","title-short":"smtlib-backends","type":"post-weblog","URL":"https://www.tweag.io/blog/2023-02-14-smtlib-backends"}
+]
diff --git a/research/reports.json b/research/reports.json
new file mode 100644
index 0000000..ff69461
--- /dev/null
+++ b/research/reports.json
@@ -0,0 +1,5 @@
+[
+ {"id":"aristoteApplicationsCategoricalFramework2022","abstract":"M2 internship report. We extend Petrişan and Colcombet's categorical framework for automata minimization and learning with new categorical algorithms and apply it to various families of automata for which minimization and learning had not been studied previously. We focus on transducers whose output lie in arbitrary monoids, weighted automata on Dedekind domains and automata whose states are quasi-ordered. This last example links automata learning together with the Valk-Jantzen lemma, widely used in the theory of well-structured transition systems.","author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteApplicationsCategoricalFramework2022","issued":{"date-parts":[["2022",8,20]]},"language":"en","license":"All rights reserved","publisher":"École Normale Supérieure, PSL University","title":"Applications of a categorical framework for minimization and active learning of transition systems","type":"report","URL":"https://git.eleves.ens.fr/qaristote/m2-internship-report/uploads/2594114883f26d77c2b4f3731656351a/report.pdf"},
+ {"id":"aristoteFibrationalFrameworkNested2020","abstract":"M1 internship report. We extend a previous fibration- and coalgebra-based categorical framework for characterizing greatest fixed-points, e.g. bisimilarity-like notions, as winning positions in safety games. Our new framework thus characterizes nested alternating greatest and smallest fixed-points of a fibration- and coalgebra-based categorical operator as winning positions in parity games. This provides a new kind of parity games for the model checking of coalgebraic modal logic, but unfortunately we did not manage to instantiate more general notions of bisimulations such as fair and delayed bisimulations.","author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteFibrationalFrameworkNested2020","issued":{"date-parts":[["2020",8,28]]},"language":"en","license":"All rights reserved","title":"Fibrational Framework for Nested Alternating Fixed Points and (Bi)Simulation Notions for Büchi Automata","type":"report","URL":"https://git.eleves.ens.fr/qaristote/m1-internship-report/uploads/3431548a277eb5fc297d8e7d93d1e3ce/aristote_quentin_m1_internship_report.pdf"},
+ {"id":"aristoteMarcheQuantiqueReseau2019","abstract":"Rapport de stage de L3. On introduit un automate cellulaire quantique à une particule, un marcheur quantique, sur une variété triangulée de dimension 2. La triangulation change à travers des Pachner moves, induits eux-même par la densité du marcheur, permettant à la surface de se transformer en n'importe quelle autre surface qui lui est topologiquement équivalente. Ce modèle généralise le marcheur quantique sur un réseau triangulaire, introduit dans un article précédent par un des auteurs, et dont la limite en espace-temps retombe sur l'équation de Dirac en 2+1 dimensions.\nDes simulations numériques montrent que le nombre de triangles et que la courbure évoluent en exp(a log(t) - bt²), où a et b paramétrisent la façon dont la géométrie change selon la densité locale du marcheur, et que, sur le long terme, la surface redevient plate. Enfin, on montre aussi numériquement que le comportement global du marcheur reste le même sous l'influence de fluctuations spatio-temporelles aléatoires.","author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteMarcheQuantiqueReseau2019","issued":{"date-parts":[["2019",8,25]]},"language":"en","license":"All rights reserved","title":"Marche quantique sur un réseau triangulaire sujet à des Pachner moves","type":"report","URL":"https://git.eleves.ens.fr/qaristote/rapport-stage-l3/-/raw/b9f9cc78ad3eabe6508be70cc27dc9bf89d34755/rapport.pdf"}
+]
diff --git a/research/talks.json b/research/talks.json
new file mode 100644
index 0000000..88d276f
--- /dev/null
+++ b/research/talks.json
@@ -0,0 +1,19 @@
+[
+ {"id":"aristoteActiveLearningDeterministic2024a","abstract":"We study monoidal transducers, transition systems arising as deterministic automata whose transitions also produce outputs in an arbitrary monoid, for instance allowing outputs to commute or to cancel out. We use the categorical framework for minimization and learning of Colcombet, Petrişan and Stabile to recover the notion of minimal transducer recognizing a language, and give necessary and sufficient conditions on the output monoid for this minimal transducer to exist and be unique (up to isomorphism). The categorical framework then provides an abstract algorithm for learning it using membership and equivalence queries, and we discuss practical aspects of this algorithm’s implementation.","author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteActiveLearningDeterministic2024a","event-place":"Naples, Italy","event-title":"32nd EACSL Annual Conference on Computer Science Logic 2024 (CSL 2024)","genre":"conference","issued":{"date-parts":[["2024",2,22]]},"language":"en","note":"slides: https://gitlab.math.univ-paris-diderot.fr/-/project/840/uploads/441b176a634e9ed8b569d75dc18bf98a/monoidal-transducer-learning.pdf","publisher-place":"Naples, Italy","title":"Active learning of deterministic transducers with outputs in arbitrary monoids","type":"speech","URL":"https://www.irif.fr/seminaires/automates/index"},
+ {"id":"aristoteActiveLearningDeterministic2024b","abstract":"We study monoidal transducers, transition systems arising as deterministic automata whose transitions also produce outputs in an arbitrary monoid, for instance allowing outputs to commute or to cancel out. In a first part I'll explain how Vilar's algorithm for the active learning à la Angluin of (normal) transducers generalize to monoidal transducers. In a second part I'll then discuss how this is an instance of the categorical framework for minimization and learning of Colcombet, Petrişan and Stabile: the active learning algorithm was obtained by instantiating monoidal transducers in this framework.","author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteActiveLearningDeterministic2024b","event-place":"Paris, France","event-title":"Séminaire Automates (IRIF)","genre":"seminar","issued":{"date-parts":[["2024",3,22]]},"language":"en","note":"slides: https://gitlab.math.univ-paris-diderot.fr/-/project/840/uploads/46406ee1029eeaa311f952e661cc742c/monoidal-transducer-learning.pdf","publisher-place":"Paris, France","title":"Active learning of deterministic transducers with outputs in arbitrary monoids","type":"speech","URL":"https://www.irif.fr/seminaires/automates/index"},
+ {"id":"aristoteActiveLearningDeterministic2024c","abstract":"We study monoidal transducers, transition systems arising as deterministic automata whose transitions also produce outputs in an arbitrary monoid, for instance allowing outputs to commute or to cancel out. In a first part I'll explain how Vilar's algorithm for the active learning à la Angluin of (normal) transducers generalize to monoidal transducers. In a second part I'll then discuss how this is an instance of the categorical framework for minimization and learning of Colcombet, Petrişan and Stabile: the active learning algorithm was obtained by instantiating monoidal transducers in this framework.","author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteActiveLearningDeterministic2024c","event-place":"Oxford, United Kingdom","event-title":"Verification seminar","genre":"seminar","issued":{"date-parts":[["2024",6,17]]},"language":"en","note":"slides: https://gitlab.math.univ-paris-diderot.fr/-/project/840/uploads/46406ee1029eeaa311f952e661cc742c/monoidal-transducer-learning.pdf","publisher-place":"Oxford, United Kingdom","title":"Active learning of deterministic transducers with outputs in arbitrary monoids","type":"speech","URL":"https://www.cs.ox.ac.uk/research/verification/"},
+ {"id":"aristoteActiveLearningUpwardclosed2025a","abstract":"We give a new proof of a result from well quasi-order theory on the computability of bases for upwards-closed sets of words. This new proof is based on Angluin's L* algorithm, that learns an automaton from a minimally adequate teacher. This relates in particular two results from the 1980s: Angluin's L* algorithm, and a result from Valk and Jantzen on the computability of bases for upwards-closed sets of tuples of integers.\n\nAlong the way, we describe an algorithm for learning quasi-ordered automata from a minimally adequate teacher, and extend a generalization of Valk and Jantzen's result, encompassing both words and integers, to finitely generated monoids.","author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteActiveLearningUpwardclosed2025a","event-place":"Glasgow, Scotland","event-title":"11th Conference on Algebra and Coalgebra in Computer Science (CALCO 2025)","genre":"conference","issued":{"date-parts":[["2025",6,17]]},"language":"en","note":"slides: https://coalg.org/calco-mfps-2025/slides/2-Tuesday/4-Session3/1-QuentinAristote.pdf","publisher-place":"Glasgow, Scotland","title":"Active learning of upward-closed sets of words","type":"speech","URL":"https://coalg.org/calco-mfps-2025/calco/"},
+ {"id":"aristoteAutomataWeightedCommutative2023","author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteAutomataWeightedCommutative2023","event-place":"Paris, France","event-title":"ASV day (IRIF)","genre":"seminar","issued":{"date-parts":[["2023",12,6]]},"language":"en","note":"slides: https://gitlab.math.univ-paris-diderot.fr/-/project/996/uploads/48a134fb160ea880ea4676adbf1dc637/dedekind-weighted-automata.pdf","publisher-place":"Paris, France","title":"Automata weighted over commutative rings: notions of minimality and the case of Dedekind domains","type":"speech","URL":"https://www.irif.fr/poles/asv/journee_pole_2023"},
+ {"id":"aristoteLearningWeightedAutomata2025a","abstract":"We study automata weighted over number rings, that is, rings of integers in an algebraic number field.\n\nWe show that number rings are what we call \"almost strong Fatou\": if an n-state automaton weighted in a number field recognizes an integer-valued series, then it admits an equivalent n+1-state automaton weighted in the corresponding ring of integers.\n\nWe give a polynomial-time algorithm for computing such an n+1-state automaton, and show that removing any more states is at least as hard as solving the principal ideal problem, for which the best currently known algorithm is in quantum polynomial time.\n\nFinally, we will see how this procedure can be used to reduce active learning problems in number rings to active learning problems in fields. If time allows, I will also give a brief explanation of how this generalizes to a generic reduction procedure between active learning problems for automata valued in different categories.","author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteLearningWeightedAutomata2025a","event-place":"Marseille, France","event-title":"MoVe seminar (LiS)","genre":"seminar","issued":{"date-parts":[["2025",3,28]]},"language":"en","note":"slides: https://gitlab.math.univ-paris-diderot.fr/-/project/996/uploads/8b14ed9a7383f9776fc69aa03003890a/dedekind-weighted-automata.pdf","publisher-place":"Marseille, France","title":"Learning weighted automata over number rings, concretely (and categorically)","type":"speech","URL":"https://move.lis-lab.fr/seminars"},
+ {"id":"aristoteLearningWeightedAutomata2025b","abstract":"We develop a generic reduction procedure for active learning problems. Our approach is inspired by a recent polynomial-time reduction of the exact learning problem for weighted automata over integers to that for weighted automata over rationals (Buna-Marginean et al. 2024). Our procedure improves the efficiency of a category-theoretic automata learning algorithm, and poses new questions about the complexity of its implementation when instantiated to concrete categories. \n\nAs our second main contribution, we address these complexity aspects in the concrete setting of learning weighted automata over number rings, that is, rings of integers in an algebraic number field. Assuming a full representation of a number ring OK, we obtain an exact learning algorithm of OK-weighted automata that runs in polynomial time in the size of the target automaton, the logarithm of the length of the longest counterexample, the degree of the number field, and the logarithm of its discriminant. Our algorithm produces an automaton that has at most one more state than the minimal one, and we prove that doing better requires solving the principal ideal problem, for which the best currently known algorithm is in quantum polynomial time.","author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteLearningWeightedAutomata2025b","event-place":"Wadern, Germany","event-title":"Dagstuhl Seminar 25141: Categories for Automata and Language Theory","genre":"conference","issued":{"date-parts":[["2025",3,31]]},"language":"en","note":"slides: https://materials.dagstuhl.de/index.php?semnr=25141&fileId=17258","publisher-place":"Wadern, Germany","title":"Learning weighted automata over number rings, (concretely and) categorically","type":"speech","URL":"https://www.dagstuhl.de/25141"},
+ {"id":"aristoteLearningWeightedAutomata2025c","abstract":"We develop a generic reduction procedure for active learning problems. Our approach is inspired by a recent polynomial-time reduction of the exact learning problem for weighted automata over integers to that for weighted automata over rationals (Buna-Marginean et al. 2024). Our procedure improves the efficiency of a category-theoretic automata learning algorithm, and poses new questions about the complexity of its implementation when instantiated to concrete categories.\n\nAs our second main contribution, we address these complexity aspects in the concrete setting of learning weighted automata over number rings, that is, rings of integers in an algebraic number field. Assuming a full representation of a number ring OK, we obtain an exact learning algorithm of OK-weighted automata that runs in polynomial time in the size of the target automaton, the logarithm of the length of the longest counterexample, the degree of the number field, and the logarithm of its discriminant. Our algorithm produces an automaton that has at most one more state than the minimal one, and we prove that doing better requires solving the principal ideal problem, for which the best currently known algorithm is in quantum polynomial time.","author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteLearningWeightedAutomata2025c","event-place":"Singapore, Singapore","event-title":"Fortieth Annual ACM/IEEE Symposium on Logic in Computer Science (LICS 2025)","genre":"conference","issued":{"date-parts":[["2025",6,24]]},"language":"en","note":"slides: https://gitlab.math.univ-paris-diderot.fr/-/project/996/uploads/13561d884f911e1e27f5df625892bfb1/dedekind-weighted-automata.pdf","publisher-place":"Singapore, Singapore","title":"Learning weighted automata over number rings, concretely and categorically","type":"speech","URL":"https://lics.siglog.org/lics25/"},
+ {"id":"aristoteLearningWeightedAutomata2025d","abstract":"We study automata weighted over number rings, that is, rings of integers in an algebraic number field.\n\nWe show that number rings are what we call “almost strong Fatou”: if an n-state automaton weighted in a number field recognizes an integer-valued series, then it admits an equivalent n+1-state automaton weighted in the corresponding ring of integers.\n\nWe give a polynomial-time algorithm for computing such an n+1-state automaton, and show that removing any more states is at least as hard as solving the principal ideal problem, for which the best currently known algorithm is in quantum polynomial time.\n\nFinally, we will see how this procedure can be used to reduce active learning problems in number rings to active learning problems in fields. If time allows, I will also give a brief teaser of how this generalizes to a generic reduction procedure between active learning problems for automata valued in different categories. These categorical aspects will be further developed on May 15th for a talk at the AutCat seminar.","author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteLearningWeightedAutomata2025d","event-place":"Paris, France","event-title":"Séminaire Automates (IRIF)","genre":"seminar","issued":{"date-parts":[["2025",5,9]]},"language":"en","note":"slides: https://gitlab.math.univ-paris-diderot.fr/-/project/996/uploads/8b14ed9a7383f9776fc69aa03003890a/dedekind-weighted-automata.pdf","publisher-place":"Paris, France","title":"Learning weighted automata over number rings, concretely (and categorically)","type":"speech","URL":"https://www.irif.fr/seminaires/automates/index"},
+ {"id":"aristoteLearningWeightedAutomata2025e","abstract":"We study automata weighted over number rings, that is rings of integers in an algebraic number field. Assuming a full representation of a number ring O_K, we obtain an exact learning algorithm of O_K-weighted automata that runs in polynomial time in the size of the target automaton, the logarithm of the length of the longest counterexample, the degree of the number field, and the logarithm of its discriminant. Our algorithm produces an automaton that has at most one more state than the minimal one, and we prove that doing better requires solving the principal ideal problem, for which the best currently known algorithm is in quantum polynomial time.\n\nMore generally, we develop a generic reduction procedure for active learning problems. Our approach is inspired by a recent polynomial-time reduction of the exact learning problem for weighted automata over integers to that for weighted automata over rationals (Buna-Marginean et al. 2024), and improves the efficiency of a category-theoretic automata learning algorithm.","author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteLearningWeightedAutomata2025e","event-place":"Marne-la-Vallée, France","event-title":"Annual Meeting ot the GT Data, Automata, Algebra & Logic (DAAL)","genre":"conference","issued":{"date-parts":[["2025",5,13]]},"language":"en","note":"slides: https://gitlab.math.univ-paris-diderot.fr/-/project/996/uploads/9417c336e556b40905375981c1baee1b/dedekind-weighted-automata.pdf","publisher-place":"Marne-la-Vallée, France","title":"Learning weighted automata over number rings, concretely and categorically","type":"speech","URL":"https://www-igm.univ-mlv.fr/~marsault/daal2025/"},
+ {"id":"aristoteMonotoneWeakDistributive2024a","abstract":"Noticing the similarity between the monotone weak distributive laws combining two layers of nondeterminisms in sets and in compact Hausdorff spaces, we study whether the latter law can be obtained automatically as a weak lifting of the former. This holds partially, but does not generalize to other categories of algebras: we then characterize when exactly monotone weak distributive laws over powerset monads in categories of algebras exist, exhibiting a law combining probabilities and non-determinism in compact Hausdorff spaces and showing on the other hand that such laws do not exist in a lot of other cases.","author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteMonotoneWeakDistributive2024a","event-place":"Leiden, Netherlands","event-title":"109th Peripatetic Seminar on Sheaves and Logic (PSSL 109)","genre":"conference","issued":{"date-parts":[["2024",11,15]]},"language":"en","note":"slides: https://dutchcats.github.io/PSSL-2024/slides_PSSL24/Aristote-PSSL109.pdf","publisher-place":"Leiden, Netherlands","title":"Monotone weak distributive laws over the lifted powerset monad in categories of algebras","type":"speech","URL":"https://dutchcats.github.io/PSSL-2024/"},
+ {"id":"aristoteMonotoneWeakDistributive2025a","abstract":"In both the category of sets and the category of compact Hausdorff spaces, there is a monotone weak distributive law that combines two layers of non-determinism. Noticing the similarity between these two laws, we study whether the latter can be obtained automatically as a weak lifting of the former. This holds partially, but does not generalize to other categories of algebras. We then characterize when exactly monotone weak distributive laws over powerset monads in categories of algebras exist, on the one hand exhibiting a law combining probabilities and non-determinism in compact Hausdorff spaces and showing on the other hand that such laws do not exist in a lot of other cases.","author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteMonotoneWeakDistributive2025a","event-place":"Jena, Germany","event-title":"42nd International Symposium on Theoretical Aspects of Computer Science (STACS 2025)","genre":"conference","issued":{"date-parts":[["2025",3,5]]},"language":"en","note":"slides: https://stacs2025.gitlab.io/slides/monotone-weak-distributive-laws-over-the-lifted-powerset-monad-in-categories-of-algebras.pdf","publisher-place":"Jena, Germany","title":"Monotone weak distributive laws over the lifted powerset monad in categories of algebras","type":"speech","URL":"https://stacs2025.de/"},
+ {"id":"aristoteMonotoneWeakDistributive2025b","abstract":"Within the study of the semantics of programming languages, computational effects may be modelled with monads, and weak distributive laws between monads are then a tool to combine two such effects.\n\nIn both the category of sets and the category of compact Hausdorff spaces, there is a monotone weak distributive law that combines two layers of non-determinism. Noticing the similarity between these two laws, we study whether the latter can be obtained automatically as some sort of lifting of the former.\n\nMore specifically, we show how a framework for constructing monotone weak distributive laws in regular categories lifts to categories of algebras, giving a full characterization for the existence of monotone weak distributive laws therein. We then exhibit such a law, combining probabilities and non-determinism, in compact Hausdorff spaces; but we also show how such laws do not exist in a lot of other cases.","author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteMonotoneWeakDistributive2025b","event-place":"Marseille, France","event-title":"LSC Seminar (LiS)","genre":"seminar","issued":{"date-parts":[["2025",3,27]]},"language":"en","note":"slides: https://gitlab.math.univ-paris-diderot.fr/-/project/1062/uploads/02cd7ed45cdac419f5cf315fdde2200a/monotone-wdl-algebras.pdf","publisher-place":"Marseille, France","title":"Monotone weak distributive laws over the lifted powerset monad in categories of algebras","type":"speech","URL":"https://lsc.lis-lab.fr/lsc-seminar/"},
+ {"id":"aristoteMonotoneWeakDistributive2025c","abstract":"When studying the semantics of programming languages, monads are a tool to model computational effects. Given two monads modelling two effects, a natural question is whether one can build a composed monad modelling the combination of these two effects. There is a generic way to do this when there exists a monotone weak distributive law between the two monads.\n\nMonotone weak distributive laws are a recently-developed mathematical tool, and the first part of the talk will focus on introducing them and giving several examples. The second part of the talk will then focus on the main result from [1], which gives a full characterization for the existence of monotone weak distributive laws in certain categories of algebras.\n\n[1] https://drops.dagstuhl.de/entities/document/10.4230/LIPIcs.STACS.2025.10","author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteMonotoneWeakDistributive2025c","event-place":"Palaiseau, France","event-title":"Theoretical Cosynus Seminar (LIX)","genre":"seminar","issued":{"date-parts":[["2025",4,8]]},"language":"en","publisher-place":"Palaiseau, France","title":"Monotone weak distributive laws in categories of algebras","type":"speech","URL":"https://www.lix.polytechnique.fr/proofs-algorithms/tcs/"},
+ {"id":"aristoteMulticategoricalFrameworkMinimization2024","abstract":"Joint work with Daniela Petrişan. This paper provides a unifying category-theoretic framework for minimization and learning algorithms for bottom-up tree automata with effects. Our aim is two-fold: encompass existing algorithms for various forms of tree automata – deterministic bottom-up tree automata, residual finite tree automata, tree automata weighted over a field – and instantiate the abstract framework in order to obtain new results – tree automata weighted over principal ideal domains (PIDs).","author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteMulticategoricalFrameworkMinimization2024","event-place":"Bordeaux, France","event-title":"Highlights of Logic, Games and Automata (Highlights 2024)","genre":"conference","issued":{"date-parts":[["2024",9,18]]},"language":"en","note":"slides: https://gitlab.math.univ-paris-diderot.fr/-/project/1003/uploads/c415dcc8a1e22c5d91cb91cfd8d6d55f/minimal-tree-automata.pdf","publisher-place":"Bordeaux, France","title":"Multicategorical framework for minimization and learning of bottom-up tree automata with effects","type":"speech","URL":"https://highlights-conference.org/2024/"},
+ {"id":"aristoteOpenPowerObjectsCategories2025","author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteOpenPowerObjectsCategories2025","event-place":"Brno, Czech Republic","event-title":"International Category Theory Conference (CT 2025)","genre":"conference","issued":{"date-parts":[["2025",7,18]]},"language":"en","note":"slides: https://gitlab.math.univ-paris-diderot.fr/-/project/1062/uploads/620105dfc6c8ec7fef78737368585a25/open-powerobjects-algebras.pdf\nabstract: https://conference.math.muni.cz/ct2025/data/uploads/abstracts/aristote.pdf","publisher-place":"Brno, Czech Republic","title":"Open Power-Objects in Categories of Algebras","type":"speech","URL":"https://conference.math.muni.cz/ct2025/"},
+ {"id":"aristoteWeakDistributiveLaws2024","author":[{"family":"Aristote","given":"Quentin"}],"citation-key":"aristoteWeakDistributiveLaws2024","event-place":"Barcelona, Spain","event-title":"Topology, Algebra, and Categories in Logic (TACL 2024)","genre":"conference","issued":{"date-parts":[["2024",7,4]]},"language":"en","note":"slides: https://gitlab.math.univ-paris-diderot.fr/-/project/1057/uploads/a2a13506a3034d6713fa0786adbc9ebf/wdl-powerspaces-scs.pdf\nabstract: https://iiia.csic.es/tacl2024/abstracts/conference/contributed/TACL_2024_paper_118.pdf","publisher-place":"Barcelona, Spain","title":"Weak distributive laws between powerspaces over stably compact spaces","type":"speech","URL":"https://iiia.csic.es/tacl2024/"}
+]