@@ -63,7 +63,7 @@ namespace pfasst
6363 /* *
6464 * Compute quadrature matrix \\( Q \\) between two sets of nodes.
6565 *
66- * Computing the quadrature matrix \\( Q \\) for polynomial-based integration from one set of
66+ * Computing the quadrature matrix \\( Q \\) for polynomial-based integration from one set of
6767 * quadrature nodes (@p from) to another set of quadrature nodes (@p to).
6868 *
6969 * @tparam scalar precision of quadrature (i.e. `double`)
@@ -145,7 +145,7 @@ namespace pfasst
145145 * The \\( S \\) matrix provides a node-to-node quadrature where the \\( i \\)-th row of
146146 * \\( S \\) represents a quadrature from the \\( i-1 \\)-th node to the \\( i \\)-th node.
147147 *
148- * The procedure is simply subtracting the \\( i-1 \\)-th row of \\( Q \\) from the
148+ * The procedure is simply subtracting the \\( i-1 \\)-th row of \\( Q \\) from the
149149 * \\( i \\)-th row of \\( Q \\).
150150 *
151151 * @tparam scalar precision of quadrature (i.e. `double`)
@@ -264,6 +264,7 @@ namespace pfasst
264264 virtual const vector<precision>& get_q_vec () const ;
265265 virtual const vector<precision>& get_nodes () const ;
266266 virtual size_t get_num_nodes () const ;
267+
267268 /* *
268269 * @throws pfasst::NotImplementedYet if not overwritten by implementation;
269270 * required for quadrature of any kind
@@ -276,6 +277,11 @@ namespace pfasst
276277 virtual bool right_is_node () const ;
277278 // ! @}
278279
280+ /* *
281+ * Compute a rough estimate of the numerical error... XXX
282+ */
283+ precision expected_error () const ;
284+
279285 protected:
280286 // ! @{
281287 /* *
0 commit comments