#include <bvp.hpp>
Public Member Functions | |
linear_BVP2 (shared_ptr< const domain > O, shared_ptr< const linear_diff_op2 > L_in, shared_ptr< const bdry_diff_op > B_in, const map< point, double > &f_in, const map< point, double > &g_in) | |
Identical to base class constructor. | |
linear_BVP2 (shared_ptr< const domain > O, shared_ptr< const linear_diff_op2 > L_in, shared_ptr< const bdry_diff_op > B_in, const realfunc &f_in, const realfunc &g_in) | |
Identical to base class constructor. | |
shared_ptr< const linear_diff_op2 > | get_linear_diff_op2 () const |
Give the interior diff_op. |
bvp::linear_BVP2::linear_BVP2 | ( | shared_ptr< const domain > | O, | |
shared_ptr< const linear_diff_op2 > | L_in, | |||
shared_ptr< const bdry_diff_op > | B_in, | |||
const map< point, double > & | f_in, | |||
const map< point, double > & | g_in | |||
) | [inline] |
bvp::linear_BVP2::linear_BVP2 | ( | shared_ptr< const domain > | O, | |
shared_ptr< const linear_diff_op2 > | L_in, | |||
shared_ptr< const bdry_diff_op > | B_in, | |||
const realfunc & | f_in, | |||
const realfunc & | g_in | |||
) | [inline] |
shared_ptr< const linear_diff_op2 > bvp::linear_BVP2::get_linear_diff_op2 | ( | ) | const |
Give the interior diff_op.
00312 { 00313 return boost:: 00314 dynamic_pointer_cast<const linear_diff_op2>(BVP::get_diff_op()); 00315 }