From 01f652e2882db05e6a561887dd59e1d634615144 Mon Sep 17 00:00:00 2001 From: Lisa Date: Tue, 4 Aug 2015 14:56:18 -0500 Subject: [PATCH] Documentation of input parameters for function add_range added. --- include/deal.II/base/index_set.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/deal.II/base/index_set.h b/include/deal.II/base/index_set.h index 8543b5ef00..2ae063f39a 100644 --- a/include/deal.II/base/index_set.h +++ b/include/deal.II/base/index_set.h @@ -138,6 +138,8 @@ public: /** * Add the half-open range $[\text{begin},\text{end})$ to the set of indices * represented by this class. + * @param[in] begin The first element of the range to be added. + * @param[in] end The past-the-end element of the range to be added. */ void add_range (const size_type begin, const size_type end); @@ -145,6 +147,7 @@ public: /** * Add an individual index to the set of indices. */ + void add_index (const size_type index); /** -- 2.39.5