From 03b4e39aad5a87e70306127157c65f87ac6498d9 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Wed, 9 Mar 2022 22:43:26 +0100 Subject: [PATCH] afs.c: Improve documentation of score table. The text focussed on implementation details rather than describing the purpose of the table. It was also slightly incorrect because playlists also use the score tables, albeit in a much simpler way and without "Gaussian normal distributions". --- afs.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/afs.c b/afs.c index 6d6e67e8..c0632c24 100644 --- a/afs.c +++ b/afs.c @@ -39,11 +39,10 @@ enum afs_table_num { TBLNUM_AUDIO_FILES, /** The table for the paraslash attributes. See \ref attribute.c. */ TBLNUM_ATTRIBUTES, - /** - * Paraslash's scoring system is based on Gaussian normal - * distributions, and the relevant data is stored in the rbtrees of an - * osl table containing only volatile columns. See \ref score.c for - * details. + /* + * Moods and playlists organize the current set of admissible files in + * an osl table which contains only volatile columns. Each row consists + * of a pointer to an audio file and the score value of this file. */ TBLNUM_SCORES, /** -- 2.39.2