[Lapackpp-devel] Re: Doc for Lapackpp
Status: Beta
Brought to you by:
cstim
From: Christian S. <sti...@tu...> - 2006-05-15 12:58:41
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Arash Noorghorbani schrieb: > It is a long time which i search for a suitable free implementation of > lappack, for some computation on graphs. > I see allot of package but non of them compiled on VS.Net 2005. > > Today I see lapackpp 2.8 which has an exe for setup. I was very glad, but > when I install it,i see that there is no documentation for it! The documentation is in the header files. An online copy of this generated HTML documentation is at http://www.sourceforge.net/projects/lapackpp > Can you send me any doc or ... ,. > Also I make a simple project,(which I properly sure that is has some wrong!) > for checking the lapackpp, but it don't work and I get a lot of errors. Which compiler, which Operating System?!???? Obviously you are using Microsoft Visual Studio C++ (MSVC). The pre-compiled setup.exe file of lapackpp does not work with MSVC, it only works with gcc. For MSVC, you need to compile the library by yourself. Download the tar.gz file and use the provided vcproj file. Christian > //_______________________________________________________ > > #include"C:\Program Files\lapackpp\include\lapackpp\vi.h" > > int main() > { > VectorInt ix(5); > int i=ix.size(); > return 0; > } > > //____________________________ERROR > ------ Build started: Project: lapackppTest, Configuration: Debug Win32 - > Linking... > lapackpp_test.obj : error LNK2019: unresolved external symbol "public: > __thiscall VectorInt::~VectorInt(void)" (??1VectorInt@@QAE@XZ) referenced > in function _main > > lapackpp_test.obj : error LNK2019: unresolved external symbol "public: > __thiscall VectorInt::VectorInt(unsigned int)" (??0VectorInt@@QAE@I@Z) > referenced in function _main > > D:\WORK\lapackppTest\Debug\lapackppTest.exe : fatal error LNK1120: 2 > unresolved externals > > Build log was saved at > "file://d:\WORK\lapackppTest\lapackppTest\Debug\BuildLog.htm" > lapackppTest - 3 error(s), 0 warning(s) > ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ========== > > > > > -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.1 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iQCVAwUBRGh65GXAi+BfhivFAQIFSQP8CCqP7e9yfQCgRAzQ8om4UyLpK+lRjX6W 2vL8/L09+SEIsfmkNv5lrNMP+WmlvsSOde1zqd+R4WUElbUJV1cHzcrbx5hIXbM0 ayEi2kAXKGaIknQPn4SUM7vRQZ3NKDsCA+gd73flCOzZgRs4Z3zNJiCRiZlB0/SV sdeTaIrKKBc= =O/YZ -----END PGP SIGNATURE----- |