From 80210523e6246d3fea027540e7efa2b193585ade Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Mon, 30 Jul 2012 18:31:28 +0200 Subject: [PATCH] Talk a bit about ADTs in firms API --- include/libfirm/firm.h | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/include/libfirm/firm.h b/include/libfirm/firm.h index 8ebc5fd41..bf0c7deda 100644 --- a/include/libfirm/firm.h +++ b/include/libfirm/firm.h @@ -59,13 +59,18 @@ /** @defgroup irana Analyses */ /** @defgroup adt Abstract Data Structures - * This module contains abstract datatypes. The firm API is fully functional - * without these abstract datatypes. They're provided as a convenience. + * This module contains abstract datatypes like lists and hashmaps. + * They're provided as a convenience, the firm API is fully functionaly without + * them so you can just as well use a library like glib and libapr or write + * your own. */ /** @defgroup algorithms Algorithms - * This module contains generic algorithms. The firm API is fully functional - * without them. They're provided as a convenience. + * This module contains generic algorithms like bipartite matching or solvers + * for linear equation systems. + * They're provided as a convenience, the firm API is fully functionaly without + * them so you can just as well use a library like glib and libapr or write + * your own. */ #ifndef FIRM_COMMON_FIRM_H #define FIRM_COMMON_FIRM_H -- 2.20.1