source: Sophya/trunk/SophyaExt/LinAlg/intflapack.h@ 1042

Last change on this file since 1042 was 1042, checked in by ansari, 25 years ago

Modif + correction LapackLinSolve, Reza 8/6/2000

File size: 434 bytes
RevLine 
[775]1#ifndef IntfLapack_H_SEEN
2#define IntfLapack_H_SEEN
3
4#include "machdefs.h"
5#include "tarray.h"
6
[814]7namespace SOPHYA {
[775]8
[814]9template <class T>
10class LapackServer {
11public:
[1042]12 int LinSolve(TArray<T>& a, TArray<T> & b);
[814]13};
14
15template <class T>
[1042]16inline int LapackLinSolve(TArray<T>& a, TArray<T> & b)
[814]17 { LapackServer<T> lps; return( lps.LinSolve(a, b) ); }
18
19
20} // Fin du namespace
21
[775]22void rztest_lapack(TArray<r_4>& a, TArray<r_4>& b);
23
24#endif
Note: See TracBrowser for help on using the repository browser.