2012-01-30 02:23:31 +01:00
|
|
|
/***************************************************************************
|
|
|
|
|
|
|
|
main.h
|
|
|
|
|
|
|
|
gb.gsl component
|
|
|
|
|
|
|
|
(c) 2012 Randall Morgan <rmorgan62@gmail.com>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 1, or (at your option)
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA.
|
|
|
|
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __MAIN_H
|
|
|
|
#define __MAIN_H
|
|
|
|
|
|
|
|
#include "gambas.h"
|
2012-07-08 18:55:35 +02:00
|
|
|
#include "gb_common.h"
|
2012-01-30 02:23:31 +01:00
|
|
|
|
2012-07-08 18:55:35 +02:00
|
|
|
#include <gsl/gsl_math.h>
|
2012-07-09 01:23:24 +02:00
|
|
|
#include <gsl/gsl_blas.h>
|
2012-07-08 18:55:35 +02:00
|
|
|
#include <gsl/gsl_cblas.h>
|
|
|
|
#include <gsl/gsl_complex.h>
|
|
|
|
#include <gsl/gsl_vector.h>
|
|
|
|
#include <gsl/gsl_complex_math.h>
|
2012-01-30 02:23:31 +01:00
|
|
|
|
|
|
|
#ifndef __MAIN_C
|
2012-02-14 23:22:43 +01:00
|
|
|
extern GB_INTERFACE GB;
|
2012-07-09 04:20:57 +02:00
|
|
|
extern GB_CLASS CLASS_Complex;
|
|
|
|
extern GB_CLASS CLASS_Vector;
|
|
|
|
extern GB_CLASS CLASS_FloatVector;
|
|
|
|
extern GB_CLASS CLASS_ComplexVector;
|
2012-01-30 02:23:31 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __MAIN_H */
|