IpLapack.hpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef __IPLAPACK_HPP__
00010 #define __IPLAPACK_HPP__
00011
00012 #include "IpUtils.hpp"
00013 #include "IpException.hpp"
00014
00015 namespace Ipopt
00016 {
00017 DECLARE_STD_EXCEPTION(LAPACK_NOT_INCLUDED);
00018
00022 void IpLapackDpotrs(Index ndim, Index nrhs, const Number *a, Index lda,
00023 Number *b, Index ldb);
00024
00028 void IpLapackDpotrf(Index ndim, Number *a, Index lda, Index& info);
00029
00034 void IpLapackDsyev(bool compute_eigenvectors, Index ndim, Number *a,
00035 Index lda, Number *w, Index& info);
00036
00037 }
00038
00039 #endif