MBDyn-1.7.3
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups
eigjdqz.cc File Reference
#include "mbconfig.h"
#include "eigjdqz.h"
Include dependency graph for eigjdqz.cc:

Go to the source code of this file.

Macros

#define CNT   (100)
 

Functions

int __FC_DECL__() amul (integer *n, doublecomplex *q, doublecomplex *r)
 
int __FC_DECL__() bmul (integer *n, doublecomplex *q, doublecomplex *r)
 
int __FC_DECL__() precon (integer *n, doublecomplex *q)
 

Variables

MBJDQZ * mbjdqzp
 

Macro Definition Documentation

#define CNT   (100)

Referenced by main().

Function Documentation

int __FC_DECL__() amul ( integer n,
doublecomplex *  q,
doublecomplex *  r 
)

Definition at line 84 of file eigjdqz.cc.

References ASSERT, and mbjdqzp.

85 {
86  ASSERT(mbjdqzp != 0);
87 
88  mbjdqzp->AMul(*n, q, r);
89 
90  return 0;
91 }
#define ASSERT(expression)
Definition: colamd.c:977
MBJDQZ * mbjdqzp
Definition: eigjdqz.cc:81
int __FC_DECL__() bmul ( integer n,
doublecomplex *  q,
doublecomplex *  r 
)

Definition at line 94 of file eigjdqz.cc.

References ASSERT, and mbjdqzp.

95 {
96  ASSERT(mbjdqzp != 0);
97 
98  mbjdqzp->BMul(*n, q, r);
99 
100  return 0;
101 }
#define ASSERT(expression)
Definition: colamd.c:977
MBJDQZ * mbjdqzp
Definition: eigjdqz.cc:81
int __FC_DECL__() precon ( integer n,
doublecomplex *  q 
)

Definition at line 104 of file eigjdqz.cc.

105 {
106  // leave untouched
107  return 0;
108 }

Variable Documentation

MBJDQZ* mbjdqzp

Definition at line 81 of file eigjdqz.cc.

Referenced by amul(), and bmul().