00001 #ifndef INVCELLHESSIAN_H
00002 #define INVCELLHESSIAN_H
00003
00004 #include "SundanceDefs.h"
00005 #include "TSFError.h"
00006
00007
00008 namespace Sundance
00009 {
00010
00011 using namespace TSF;
00012 using std::string;
00013
00014 using std::ostream;
00015
00016
00017
00018
00019
00020 class InvCellHessian
00021 {
00022 public:
00023 inline InvCellHessian();
00024
00025 private:
00026
00027
00028 int dummy_;
00029 };
00030
00031 InvCellHessian::InvCellHessian()
00032 {
00033 TSFError::raise("cell hessians not implemented");
00034 }
00035
00036
00037
00038
00039
00040 }
00041 #endif