bvp::Laplacian Class Reference

#include <diff_op.hpp>

Inheritance diagram for bvp::Laplacian:

Inheritance graph
[legend]
Collaboration diagram for bvp::Laplacian:

Collaboration graph
[legend]

List of all members.

Public Member Functions

double at (const realfunc &f, const point &p) const


Member Function Documentation

double bvp::Laplacian::at ( const realfunc f,
const point &  p 
) const [virtual]

Implements bvp::diff_op.

00074                                                              {
00075     size_t n = p.size();
00076     double result = 0;
00077     del2 D2;
00078     for (size_t i = 1; i <=n; i++){
00079       result += D2.at(f, p, i, i);
00080     }
00081     return result;
00082   }

Here is the call graph for this function:


The documentation for this class was generated from the following files:

Generated on Fri Jun 6 17:28:27 2008 by  doxygen 1.5.6